import { computed, defineComponent, provide, ref, Transition, type InjectionKey, type Ref } from 'vue' import AdderPageBack from './AdderPageBack' import useLayoutStore from '../useLayoutStore' import { OhVueIcon, addIcons } from 'oh-vue-icons' import { MdKeyboardcommandkey, FaCompass, FaPencilRuler } from 'oh-vue-icons/icons' import CustomAdder from './CustomAdder' import clsx from 'clsx' import ThemeProvider from '@/utils/ThemeProvider' import WidgetAdder from './WidgetAdder' import { Form, Input, Select } from 'ant-design-vue' addIcons(MdKeyboardcommandkey, FaCompass, FaPencilRuler) const ItemButton = defineComponent({ props: { name: { type: String, default: '' }, label: { type: String, default: '' }, active: { type: Boolean, default: false } }, emits: ['click'], setup(props, ctx) { const layout = useLayoutStore() const isGame = computed(() => layout.state.current === 0) return () => (
{ ctx.emit('click') }} class={ 'py-4 px-4 mb-2 rounded text-sm cursor-pointer transition-all relative ' + (isGame.value ? props.active ? 'bg-[#626471] text-[#f7a94e]' : 'hover:text-[#f7a94e] hover:bg-white/20 text-[#b4b5bb]' : props.active ? 'bg-white text-black/80 shadow' : 'hover:text-black/80 hover:bg-white text-black/50') } > {props.active && ( )} {props.label}
) } }) export const AddToToken = Symbol('addTo') as InjectionKey> export default defineComponent(() => { const layout = useLayoutStore() const isGame = computed(() => layout.state.current === 0) const type = ref(1) const addTo = ref(layout.state.currentPage) provide(AddToToken, addTo) return () => (
{ type.value = 0 }} /> { type.value = 1 }} /> { type.value = 2 }} />
e.stopPropagation()} >