added dahbard file handler

This commit is contained in:
Peter Olu 2022-04-21 17:07:24 +01:00
parent ca49b6b956
commit 44f9b72cdd
2 changed files with 103 additions and 1 deletions

View File

@ -57,7 +57,7 @@ export const routesSelf: Array<RouteRecordRaw> = [
headPath: "/mesh/controlPanel", headPath: "/mesh/controlPanel",
}, },
component: () => component: () =>
import(/* webpackChunkName: "layer" */ "@/views/Fullscroll.vue"), import(/* webpackChunkName: "layer" */ "@/views/FullScroll.vue"),
}, },
], ],
}, },

View File

@ -0,0 +1,102 @@
<!-- Licensed to the Apache Software Foundation (ASF) under one or more
contributor license agreements. See the NOTICE file distributed with
this work for additional information regarding copyright ownership.
The ASF licenses this file to You under the Apache License, Version 2.0
(the "License"); you may not use this file except in compliance with
the License. You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License. -->
<template>
<Tool v-if="dashboardStore.currentDashboard" />
<div
class="ds-main"
v-if="dashboardStore.currentDashboard"
@click="handleClick"
:style="{ height: dashboardStore.editMode ? 'calc(100% - 45px)' : '100%' }"
>
<FullVue :items="dashboardStore.layout"></FullVue>
<el-dialog
v-model="dashboardStore.showConfig"
:title="t('editGraph')"
fullscreen
:destroy-on-close="true"
@closed="dashboardStore.setConfigPanel(false)"
>
<component :is="dashboardStore.selectedGrid.type" />
</el-dialog>
</div>
</template>
<script lang="ts">
import { ref, defineComponent } from "vue";
import { useI18n } from "vue-i18n";
import { useRoute } from "vue-router";
import GridLayout from "./panel/Layout.vue";
import Tool from "./panel/Tool.vue";
import { useDashboardStore } from "@/store/modules/dashboard";
import { useAppStoreWithOut } from "@/store/modules/app";
import Configuration from "./configuration";
import controls from "./controls/index";
import FullVue from "@/components/FullVue.vue";
export default defineComponent({
name: "Dashboard",
components: { FullVue, ...Configuration, GridLayout, Tool, ...controls },
setup() {
const dashboardStore = useDashboardStore();
const appStore = useAppStoreWithOut();
const { t } = useI18n();
const p = useRoute().params;
const layoutKey = ref<string>(`${p.layerId}_${p.entity}_${p.name}`);
setTemplate();
const currentItem = ref("");
async function setTemplate() {
await dashboardStore.setDashboards();
if (!p.entity) {
if (!dashboardStore.currentDashboard) {
return;
}
const { layer, entity, name } = dashboardStore.currentDashboard;
layoutKey.value = `${layer}_${entity}_${name}`;
}
const c: { configuration: string; id: string } = JSON.parse(
sessionStorage.getItem(layoutKey.value) || "{}"
);
const layout: any = c.configuration || {};
dashboardStore.setLayout(layout.children || []);
appStore.setPageTitle(layout.name);
if (p.entity) {
dashboardStore.setCurrentDashboard({
layer: p.layerId,
entity: p.entity,
name: p.name,
id: c.id,
isRoot: layout.isRoot,
});
}
}
return {
t,
dashboardStore,
currentItem,
};
},
});
</script>
<style lang="scss" scoped>
.ds-main {
overflow: auto;
}
.full-view__scroll {
height: 60vh;
width: 100%;
}
</style>