go-view/src/views/chart/index.vue
2022-03-04 20:57:36 +08:00

85 lines
2.2 KiB
Vue

<template>
<!-- 工作台相关 -->
<div class="go-chart">
<n-layout>
<HeaderPro>
<template #left>
<HeaderLeftBtn />
</template>
<template #center>
<HeaderTitle />
</template>
<template #ri-left>
<HeaderRightBtn />
</template>
</HeaderPro>
<n-layout-content content-style="overflow:hidden; display: flex">
<ContentCharts />
<ContentLayers />
<ContentConfigurations />
</n-layout-content>
</n-layout>
</div>
<!-- 右键 -->
<n-dropdown
placement="bottom-start"
trigger="manual"
size="small"
:x="mousePosition.x"
:y="mousePosition.y"
:options="menuOptions"
:show="chartEditStore.getRightMenuShow"
:on-clickoutside="onClickoutside"
@select="handleMenuSelect"
/>
</template>
<script setup lang="ts">
import { loadAsyncComponent } from '@/utils'
import { HeaderPro } from '@/layout/components/HeaderPro'
import { useContextMenu } from './hooks/useContextMenu.hook'
import { useChartEditStore } from '@/store/modules/chartEditStore/chartEditStore'
import { useChartHistoryStoreStore } from '@/store/modules/chartHistoryStore/chartHistoryStore'
const chartHistoryStoreStore = useChartHistoryStoreStore()
const chartEditStore = useChartEditStore()
// 记录初始化
chartHistoryStoreStore.canvasInit(chartEditStore.getEditCanvas)
const HeaderLeftBtn = loadAsyncComponent(() =>
import('./HeaderLeftBtn/index.vue')
)
const HeaderRightBtn = loadAsyncComponent(() =>
import('./HeaderRightBtn/index.vue')
)
const HeaderTitle = loadAsyncComponent(() => import('./HeaderTitle/index.vue'))
const ContentLayers = loadAsyncComponent(() =>
import('./ContentLayers/index.vue')
)
const ContentCharts = loadAsyncComponent(() =>
import('./ContentCharts/index.vue')
)
const ContentConfigurations = loadAsyncComponent(() =>
import('./ContentConfigurations/index.vue')
)
// 右键
const {
menuOptions,
onClickoutside,
mousePosition,
handleContextMenu,
handleMenuSelect
} = useContextMenu()
</script>
<style lang="scss" scoped>
@include go('chart') {
height: 100vh;
width: 100vw;
overflow: hidden;
@include background-image('background-image');
}
</style>