2024-09-25 14:25:44 +08:00
|
|
|
import { defineComponent } from 'vue'
|
|
|
|
import type { Block } from '../layout.types'
|
2024-09-25 18:23:54 +08:00
|
|
|
import { useMenuStore } from '../GlobalMenu'
|
2024-11-08 17:35:33 +08:00
|
|
|
import jump from '@/utils/jump'
|
2024-09-25 14:25:44 +08:00
|
|
|
|
|
|
|
export default defineComponent({
|
|
|
|
props: {
|
|
|
|
block: {
|
|
|
|
type: Object as () => Block,
|
|
|
|
required: true
|
2024-09-25 18:23:54 +08:00
|
|
|
},
|
|
|
|
brief: {
|
|
|
|
type: Boolean,
|
|
|
|
default: false
|
2024-10-10 16:04:00 +08:00
|
|
|
},
|
|
|
|
dock: {
|
|
|
|
type: Boolean,
|
|
|
|
default: false
|
2024-09-25 14:25:44 +08:00
|
|
|
}
|
|
|
|
},
|
|
|
|
setup(props) {
|
2024-09-25 18:23:54 +08:00
|
|
|
const menu = useMenuStore()
|
2024-10-28 18:51:44 +08:00
|
|
|
if (props.block.w === 1 && props.block.h === 1) {
|
|
|
|
return () => (
|
|
|
|
<div
|
|
|
|
class="w-full h-full flex justify-center items-center font-bold bg-cover bg-center bg-no-repeat"
|
2024-11-11 11:53:26 +08:00
|
|
|
onContextmenu={() => {
|
2024-10-28 18:51:44 +08:00
|
|
|
menu.open(props.block)
|
|
|
|
}}
|
|
|
|
onClick={() => {
|
2024-11-08 17:35:33 +08:00
|
|
|
jump(props.block.link)
|
2024-10-28 18:51:44 +08:00
|
|
|
}}
|
|
|
|
style={{
|
|
|
|
backgroundColor: props.block.background || 'white',
|
|
|
|
color: props.block.color || 'black',
|
|
|
|
backgroundImage: props.block.icon ? `url('${props.block.icon}')` : '',
|
|
|
|
fontSize: props.dock ? '16px' : props.brief ? '12px' : 'calc(var(--block-size) / 5)'
|
|
|
|
}}
|
|
|
|
>
|
|
|
|
<div>{props.brief ? props.block.text[0] : props.block.text}</div>
|
|
|
|
</div>
|
|
|
|
)
|
|
|
|
} else {
|
|
|
|
return () => (
|
|
|
|
<div
|
|
|
|
class="w-full h-full flex justify-between px-3 items-center font-bold bg-cover bg-center bg-no-repeat"
|
2024-11-11 11:53:26 +08:00
|
|
|
onContextmenu={() => {
|
2024-10-28 18:51:44 +08:00
|
|
|
menu.open(props.block)
|
|
|
|
}}
|
|
|
|
onClick={() => {
|
|
|
|
window.open(props.block.link, '_blank')
|
|
|
|
}}
|
|
|
|
style={{
|
2024-10-29 18:47:37 +08:00
|
|
|
backgroundImage: `url('/tab/bg/game.webp')`
|
2024-10-28 18:51:44 +08:00
|
|
|
}}
|
|
|
|
>
|
|
|
|
<img src={props.block.icon} class={'w-[50px] h-[50px] rounded-lg'} alt="game icon" />
|
|
|
|
<div class={'flex-1 text-white flex justify-center'}>
|
|
|
|
<span class={'w-[70px] text-ellipsis overflow-hidden whitespace-nowrap'}>
|
|
|
|
{props.block.label}
|
|
|
|
</span>
|
|
|
|
</div>
|
2024-11-08 17:35:33 +08:00
|
|
|
<img
|
|
|
|
src="/tab/icons/gameicon.webp"
|
|
|
|
alt="game_icon"
|
|
|
|
class={'absolute right-0 bottom-0 w-[36px]'}
|
|
|
|
/>
|
2024-10-28 18:51:44 +08:00
|
|
|
</div>
|
|
|
|
)
|
|
|
|
}
|
2024-09-25 14:25:44 +08:00
|
|
|
}
|
|
|
|
})
|