import { defineComponent, ref, toRaw } from 'vue' import type { Block } from '../layout.types' import { dragging, resetDragging } from './useSortable' import { v4 as uuid } from 'uuid' import useLayoutStore from '../useLayoutStore' import LinkBlock from './LinkBlock' import DirBlock from './DirBlock' import WidgetBlock from './WidgetBlock' import useSettingsStore from '@/settings/useSettingsStore' import { useMenuStore } from '../GlobalMenu' import { block } from '@milkdown/kit/plugin/block' import clsx from 'clsx' export default defineComponent({ props: { block: { type: Object as () => Block, required: true }, idx: { type: Number, required: true } }, setup(props) { const settings = useSettingsStore() const layout = useLayoutStore() const menu = useMenuStore() let it: any = 0 const hover = ref(false) return () => (
{ e.preventDefault() clearTimeout(it) hover.value = true it = setTimeout(() => { hover.value = false }, 300) }} onDrop={() => { // 处理移入 if (!dragging.id) return if (dragging.type === 'dock') { const oldIdx = layout.state.dock.findIndex((el) => el?.id === dragging.id) if (oldIdx < 0) return const block = layout.state.dock[oldIdx] if (!block) return layout.currentPage.list.splice(props.idx, 0, block) layout.state.dock[oldIdx] = null return } if (dragging.type === 'page' && dragging.id !== props.block.id) { // 合并为文件夹 const link = props.block.link // 小组件无法合并 if (!link) return //游戏不能合并 if (props.block.w !== 1) return const oldIdx = layout.currentPage.list.findIndex((el) => el.id === dragging.id) if (oldIdx < 0) return const oldBlock = layout.currentPage.list[oldIdx] //游戏不能合并 if (oldBlock.w !== 1) return // 文件夹不能移入文件夹 if (!oldBlock || oldBlock.link.startsWith('id:')) return if (link.startsWith('id:')) { // 本身就是文件夹 const id = link.slice(3) const dir = layout.state.dir[id] if (!dir) return dir.list.push(toRaw(oldBlock)) layout.currentPage.list.splice(oldIdx, 1) resetDragging() } else { // 本身不是文件夹 const id = props.block.id layout.state.dir[id] = { label: props.block.label, list: [toRaw(props.block), toRaw(oldBlock)] } layout.currentPage.list.splice(props.idx, 1) layout.currentPage.list.splice(props.idx, 0, { id: uuid(), link: `id:${id}`, name: '', label: '新建文件夹', icon: '', text: '', background: '', color: '', w: 1, h: 1 }) layout.currentPage.list.splice(oldIdx, 1) resetDragging() } } if (dragging.type && dragging.type !== 'dock' && dragging.type !== 'page') { const list = layout.state.dir[dragging.type]?.list if (!list) return const idx = list.findIndex((el) => el.id === dragging.id) if (idx < 0) return const block = list[idx] layout.currentPage.list.splice(props.idx, 0, toRaw(block)) list.splice(idx, 1) layout.checkDir(dragging.type) resetDragging() } }} > {menu.isEditPage && (
{ menu.isEditPage = false }} onClick={(e) => { e.stopPropagation() const idx = layout.state.content[layout.state.current].pages[ layout.state.currentPage ].list.findIndex((val) => val.id === props.block.id) if (idx < 0) return layout.state.content[layout.state.current].pages[ layout.state.currentPage ].list.splice(idx, 1) }} class={ 'rounded-full cursor-pointer backdrop-blur-md absolute w-[20px] h-[20px] top-[8px] right-[12px] z-10 ' } style={{ backgroundImage: `url('/tab/bg/del_icon_img.png')`, backgroundSize: 'cover' }} >
)}
{ e.stopPropagation() e.preventDefault() }} > {props.block.link ? ( props.block.link.startsWith('id:') ? ( // 文件夹 ) : ( // 链接 ) ) : ( // 小组件 )}
{settings.state.showBlockLabel && (
{layout.getLabel(props.block)}
)}
) } })