This commit is contained in:
Sun
2023-11-08 21:53:07 +08:00
commit 211c3071dc
245 changed files with 39293 additions and 0 deletions
+380
View File
@@ -0,0 +1,380 @@
<script setup lang="ts">
import { NButton, NButtonGroup, NDropdown, NEllipsis, NGrid, NGridItem, NModal, NSkeleton, NSpin, useMessage } from 'naive-ui'
import { nextTick, onMounted, ref } from 'vue'
import { EditItem, Setting } from './components'
import { Clock } from '@/components/deskModule'
import { ItemIcon, SvgIcon } from '@/components/common'
import { getListByGroupId } from '@/api/panel/itemIcon'
import { getInfo } from '@/api/system/user'
import { usePanelState, useUserStore } from '@/store'
import { PanelStateNetworkModeEnum } from '@/enum'
import { setTitle } from '@/utils/cmn'
const ms = useMessage()
const panelState = usePanelState()
const userStore = useUserStore()
const editItemInfoShow = ref<boolean>(false)
const editItemInfoData = ref<Panel.ItemInfo | null>(null)
const windowShow = ref<boolean>(false)
const windowSrc = ref<string>('')
const windowTitle = ref<string>('')
const windowIframeRef = ref(null)
const windowIframeIsLoad = ref<boolean>(false)
const dropdownMenuX = ref(0)
const dropdownMenuY = ref(0)
const dropdownShow = ref(false)
const currentRightSelectItem = ref<Panel.ItemInfo | null>(null)
const settingModalShow = ref(false)
const dropdownMenuOptions = [
{
label: '新窗口打开',
key: 'newWindows',
},
{
label: '编辑',
key: 'edit',
},
]
const items = ref<Panel.ItemInfo[]>()
function handleAddAppClick() {
editItemInfoData.value = null
editItemInfoShow.value = true
}
function handleItemClick(item: Panel.ItemInfo) {
let jumpUrl = ''
if (item)
jumpUrl = (panelState.networkMode === PanelStateNetworkModeEnum.lan ? item.lanUrl : item.url) as string
if (item.lanUrl === '')
jumpUrl = item.url
switch (item.openMethod) {
case 1:
window.location.href = jumpUrl
break
case 2:
window.open(jumpUrl)
break
case 3:
windowShow.value = true
windowSrc.value = jumpUrl
windowTitle.value = item.title
windowIframeIsLoad.value = true
break
default:
break
}
}
function handWindowIframeIdLoad(payload: Event) {
windowIframeIsLoad.value = false
}
function getList() {
getListByGroupId<Common.ListResponse<Panel.ItemInfo[]>>().then((res) => {
if (res.code === 0)
items.value = res.data.list
})
}
function handleSelect(key: string | number) {
dropdownShow.value = false
// console.log(currentRightSelectItem, key)
let jumpUrl = panelState.networkMode === PanelStateNetworkModeEnum.lan ? currentRightSelectItem.value?.lanUrl : currentRightSelectItem.value?.url
if (currentRightSelectItem.value?.lanUrl === '')
jumpUrl = currentRightSelectItem.value.url
switch (key) {
case 'newWindows':
window.open(jumpUrl)
break
case 'edit':
// 这里有个奇怪的问题,如果不使用{...}的方式 父组件的值会同步修改 标记一下
editItemInfoData.value = { ...currentRightSelectItem.value } as Panel.ItemInfo
editItemInfoShow.value = true
break
case 'del':
break
default:
break
}
}
function handleContextMenu(e: MouseEvent, item: Panel.ItemInfo) {
e.preventDefault()
currentRightSelectItem.value = item
dropdownShow.value = false
nextTick().then(() => {
dropdownShow.value = true
dropdownMenuX.value = e.clientX
dropdownMenuY.value = e.clientY
})
}
function onClickoutside() {
// message.info('clickoutside')
dropdownShow.value = false
}
function handleEditSuccess(item: Panel.ItemInfo) {
getList()
}
function handleChangeNetwork(mode: PanelStateNetworkModeEnum) {
panelState.setNetworkMode(mode)
if (mode === PanelStateNetworkModeEnum.lan)
ms.success('已经切换成局域网模式,此时再点击已填写局域网地址的图标将跳转至局域网地址(此配置仅保存在本地)')
else
ms.success('已经切换成互联网模式(此配置仅保存在本地)')
}
onMounted(() => {
getList()
// 获取用户信息
getInfo<User.Info>().then((res) => {
if (res.code === 0)
userStore.updateUserInfo(res.data)
})
// 更新同步云端配置
panelState.updatePanelConfigByCloud()
// 设置标题
if (panelState.panelConfig.logoText)
setTitle(panelState.panelConfig.logoText)
})
</script>
<template>
<div class="w-full h-full sun-main ">
<div
class="cover"
:style="{
filter: `blur(${panelState.panelConfig.backgroundBlur}px)`,
background: `url(${panelState.panelConfig.backgroundImageSrc}) no-repeat`,
backgroundSize: 'cover',
backgroundPosition: 'center',
}"
/>
<div class="absolute w-full h-full overflow-auto">
<div class="p-2.5 max-w-[1200px] mx-auto mt-[10%]">
<!-- -->
<div class="mx-[auto] w-[80%]">
<div class="flex mx-[auto] items-center justify-center text-white">
<div>
<span class="text-5xl font-bold text-shadow">
{{ panelState.panelConfig.logoText }}
</span>
</div>
<div class="text-2xl mx-[10px]">
|
</div>
<div class="text-shadow">
<Clock :hide-second="!panelState.panelConfig.clockShowSecond" />
</div>
</div>
<!-- <div class="flex mt-[20px] mx-auto w-[80%]">
<SearchBox />
</div> -->
</div>
<!-- 图标 -->
<div class="mt-[50px]">
<!-- 详情图标 -->
<div v-if="panelState.panelConfig.iconStyle === 0">
<NGrid :x-gap="15" :y-gap="15" item-responsive cols="1 200:1 400:2 600:3 800:4 1000:5 1200:6">
<NGridItem v-for="(item, index) in items" :key="index">
<div @contextmenu="(e) => handleContextMenu(e, item)">
<div
class="w-full rounded-2xl cursor-pointer transition-all duration-200 hover:shadow-[0_0_20px_10px_rgba(0,0,0,0.2)] bg-[#2a2a2a6b] flex"
@click="handleItemClick(item)"
>
<div class="w-[70px]">
<ItemIcon :item-icon="item.icon" />
</div>
<div class="text-white m-[8px_8px_0_8px]" :style="{ color: panelState.panelConfig.iconTextColor }">
<div>
<NEllipsis>
{{ item.title }}
</NEllipsis>
</div>
<div>
<NEllipsis :line-clamp="2" class="text-xs">
{{ item.description }}
</NEllipsis>
</div>
</div>
</div>
</div>
</NGridItem>
<NGridItem>
<div>
<div
class="w-full rounded-2xl cursor-pointer transition-all duration-200 hover:shadow-[0_0_20px_10px_rgba(0,0,0,0.2)] bg-[#2a2a2a6b] flex"
@click="handleAddAppClick"
>
<ItemIcon :item-icon="{ itemType: 3, text: 'subway:add', bgColor: '#00000000' }" />
<div class="text-white m-[8px]" :style="{ color: panelState.panelConfig.iconTextColor }">
<div>
<NEllipsis>
添加图标
</NEllipsis>
</div>
<div class="text text-xs">
<NEllipsis>
新增一个新的图标
</NEllipsis>
</div>
</div>
</div>
</div>
</NGridItem>
</NGrid>
</div>
<!-- APP图标宫型盒子 -->
<div v-if="panelState.panelConfig.iconStyle === 1">
<NGrid :x-gap="12" :y-gap="8" item-responsive cols="3 300:4 600:6 900:8">
<NGridItem v-for="(item, index) in items" :key="index">
<div @contextmenu="(e) => handleContextMenu(e, item)">
<div
class="w-[70px] h-[70px] mx-auto rounded-2xl cursor-pointer transition-all duration-200 hover:shadow-[0_0_20px_10px_rgba(0,0,0,0.2)] bg-[#2a2a2a6b]"
@click="handleItemClick(item)"
>
<ItemIcon :item-icon="item.icon" />
</div>
<div class="text-center app-icon-text-shadow cursor-pointer mt-[2px]" :style="{ color: panelState.panelConfig.iconTextColor }" @click="handleItemClick(item)">
<span>{{ item.title }}</span>
</div>
</div>
</NGridItem>
<NGridItem>
<div>
<div class="w-[70px] h-[70px] mx-auto rounded-2xl cursor-pointer transition-all duration-200 hover:shadow-[0_0_20px_10px_rgba(0,0,0,0.2)]" @click="handleAddAppClick">
<ItemIcon :item-icon="{ itemType: 3, text: 'subway:add', bgColor: '#343434' }" />
</div>
<div class="text-center app-icon-text-shadow cursor-pointer mt-[2px]" :style="{ color: panelState.panelConfig.iconTextColor }" @click="handleAddAppClick">
添加图标
</div>
</div>
</NGridItem>
</NGrid>
</div>
</div>
</div>
</div>
<!-- 右键菜单 -->
<NDropdown
placement="bottom-start"
trigger="manual"
:x="dropdownMenuX"
:y="dropdownMenuY"
:options="dropdownMenuOptions"
:show="dropdownShow"
:on-clickoutside="onClickoutside"
@select="handleSelect"
/>
<!-- 悬浮按钮 -->
<div class="fixed-element shadow-[0_0_10px_2px_rgba(0,0,0,0.2)]">
<NButtonGroup vertical>
<NButton v-if="panelState.networkMode === PanelStateNetworkModeEnum.lan" color="#2a2a2a6b" title="当前:局域网模式,点击切换成互联网模式" @click="handleChangeNetwork(PanelStateNetworkModeEnum.wan)">
<template #icon>
<SvgIcon class="text-white font-xl" icon="material-symbols:lan-outline" />
</template>
</NButton>
<NButton v-if="panelState.networkMode === PanelStateNetworkModeEnum.wan" color="#2a2a2a6b" title="当前:互联网模式,点击切换成局域网模式" @click="handleChangeNetwork(PanelStateNetworkModeEnum.lan)">
<template #icon>
<SvgIcon class="text-white font-xl" icon="mdi:wan" />
</template>
</NButton>
<NButton color="#2a2a2a6b" @click="settingModalShow = !settingModalShow">
<template #icon>
<SvgIcon class="text-white font-xl" icon="ep:setting" />
</template>
</NButton>
</NButtonGroup>
<Setting v-model:visible="settingModalShow" />
</div>
<EditItem v-model:visible="editItemInfoShow" :item-info="editItemInfoData" @done="handleEditSuccess" />
<!-- 新窗口 -->
<NModal
v-model:show="windowShow"
:mask-closable="false"
preset="card"
style="max-width: 1000px;height: 600px;border-radius: 1rem;"
:bordered="false"
size="small"
role="dialog"
aria-modal="true"
>
<template #header>
<div class="flex items-center">
<span class="mr-[20px]">
{{ windowTitle }}
</span>
<NSpin v-if="windowIframeIsLoad" size="small" />
</div>
</template>
<div class="w-full h-full rounded-2xl overflow-hidden border">
<NSkeleton v-if="windowIframeIsLoad" height="100%" width="100%" />
<iframe v-show="!windowIframeIsLoad" id="windowIframeId" ref="windowIframeRef" :src="windowSrc" class="w-full h-full" frameborder="0" @load="handWindowIframeIdLoad" />
</div>
</NModal>
</div>
</template>
<style>
body,html{
overflow: hidden;
background-color: rgb(54, 54, 54);
}
</style>
<style scoped>
.sun-main{
user-select: none;
}
.cover{
position:absolute;
width:100%;
height:100%;
overflow: hidden;
/* background: url(@/assets/start_sky.jpg) no-repeat; */
transform: scale(1.05);
}
.text-shadow{
text-shadow: 2px 2px 50px rgb(0, 0, 0);
}
.app-icon-text-shadow{
text-shadow: 2px 2px 5px rgb(0, 0, 0);
}
.fixed-element {
position: fixed; /* 将元素固定在屏幕上 */
right: 30px; /* 距离屏幕顶部的距离 */
bottom: 50px; /* 距离屏幕左侧的距离 */
}
</style>