xyyd-fatfox/src/layout/adder/AdderPage.tsx

139 lines
3.9 KiB
TypeScript
Raw Normal View History

2024-09-26 11:47:16 +08:00
import {
computed,
defineComponent,
provide,
ref,
Transition,
type InjectionKey,
type Ref
} from 'vue'
2024-09-11 18:00:15 +08:00
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'
2024-09-12 17:59:45 +08:00
import clsx from 'clsx'
2024-09-13 12:19:12 +08:00
import ThemeProvider from '@/utils/ThemeProvider'
2024-09-26 11:47:16 +08:00
import WidgetAdder from './WidgetAdder'
import { Form, Input, Select } from 'ant-design-vue'
2024-09-11 18:00:15 +08:00
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 () => (
<div
onClick={() => {
ctx.emit('click')
}}
class={
'py-2 px-4 mb-2 rounded-lg text-sm cursor-pointer transition-all ' +
(isGame.value
? props.active
? 'bg-[#626471] text-[#f7a94e]'
: 'hover:text-[#f7a94e] text-[#b4b5bb]'
: props.active
? 'bg-white text-black/80 shadow'
: 'hover:text-black/80 hover:bg-white text-black/50')
}
>
<OhVueIcon name={props.name} />
<span class="ml-2">{props.label}</span>
</div>
)
}
})
2024-09-26 11:47:16 +08:00
export const AddToToken = Symbol('addTo') as InjectionKey<Ref<number>>
2024-09-11 18:00:15 +08:00
export default defineComponent(() => {
const layout = useLayoutStore()
const isGame = computed(() => layout.state.current === 0)
const type = ref(1)
2024-09-26 11:47:16 +08:00
const addTo = ref(layout.state.currentPage)
provide(AddToToken, addTo)
2024-09-11 18:00:15 +08:00
return () => (
2024-09-13 12:19:12 +08:00
<div class={clsx('w-full h-full relative flex', isGame.value && 'bg-[#2c2e3e]')}>
<ThemeProvider dark={isGame.value}>
<div
class={
2024-10-17 16:21:25 +08:00
'w-[220px] h-full relative z-10 pt-[100px] ' +
(isGame.value ? 'pl-8 pr-2 rounded-xl' : 'bg-white/60 l backdrop-blur px-4')
2024-09-13 12:19:12 +08:00
}
>
<ItemButton
name="md-keyboardcommandkey"
label="功能组件"
active={type.value === 0}
onClick={() => {
type.value = 0
}}
/>
<ItemButton
name="fa-compass"
label="网站图标"
active={type.value === 1}
onClick={() => {
type.value = 1
}}
/>
<ItemButton
name="fa-pencil-ruler"
label="自定义网址"
active={type.value === 2}
onClick={() => {
type.value = 2
}}
/>
</div>
<div
class={
'w-0 h-full flex-grow relative z-10 flex flex-col ' +
(isGame.value ? '' : 'bg-white/80 backdrop-blur')
}
onContextmenu={(e) => e.stopPropagation()}
>
2024-09-26 11:47:16 +08:00
<Form class="w-full px-4 mt-4" layout="inline">
<Form.Item label="添加到">
<Select
style="width: 140px"
v-model:value={addTo.value}
options={layout.currentMode.pages.map((el, idx) => ({
label: el.label,
value: idx
}))}
/>
</Form.Item>
<Form.Item>
<Input.Search class="w-[200px]" placeholder="搜索组件或网站" />
</Form.Item>
</Form>
2024-09-13 12:19:12 +08:00
<div class="w-full h-0 flex-grow p-6">
<div class="w-full h-full relative">
<Transition>
2024-09-26 11:47:16 +08:00
{type.value === 0 ? <WidgetAdder /> : type.value === 1 ? '' : <CustomAdder />}
2024-09-13 12:19:12 +08:00
</Transition>
</div>
2024-09-11 18:00:15 +08:00
</div>
</div>
2024-09-13 12:19:12 +08:00
</ThemeProvider>
2024-09-11 18:00:15 +08:00
</div>
)
})