mirror of
https://github.com/apache/skywalking-booster-ui.git
synced 2025-05-01 20:55:20 +00:00
81 lines
2.5 KiB
Vue
81 lines
2.5 KiB
Vue
<!-- 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 />
|
|
<div class="ds-main" @click="handleClick">
|
|
<grid-layout />
|
|
<el-dialog
|
|
v-model="dashboardStore.showConfig"
|
|
title="Edit Graph Options"
|
|
fullscreen
|
|
:destroy-on-close="true"
|
|
@closed="dashboardStore.setConfigPanel(false)"
|
|
>
|
|
<widget-config />
|
|
</el-dialog>
|
|
</div>
|
|
</template>
|
|
<script lang="ts" setup>
|
|
import GridLayout from "./panel/Layout.vue";
|
|
// import { LayoutConfig } from "@/types/dashboard";
|
|
import Tool from "./panel/Tool.vue";
|
|
import WidgetConfig from "./configuration/ConfigEdit.vue";
|
|
import { useDashboardStore } from "@/store/modules/dashboard";
|
|
|
|
const dashboardStore = useDashboardStore();
|
|
// fetch layout data from serve side
|
|
// const layout: any[] = [
|
|
// { x: 0, y: 0, w: 4, h: 12, i: "0" },
|
|
// { x: 4, y: 0, w: 4, h: 12, i: "1" },
|
|
// { x: 8, y: 0, w: 4, h: 15, i: "2" },
|
|
// { x: 12, y: 0, w: 4, h: 9, i: "3" },
|
|
// { x: 16, y: 0, w: 4, h: 9, i: "4" },
|
|
// { x: 20, y: 0, w: 4, h: 9, i: "5" },
|
|
// { x: 0, y: 12, w: 4, h: 15, i: "7" },
|
|
// { x: 4, y: 12, w: 4, h: 15, i: "8" },
|
|
// { x: 8, y: 15, w: 4, h: 12, i: "9" },
|
|
// { x: 12, y: 9, w: 4, h: 12, i: "10" },
|
|
// { x: 16, y: 9, w: 4, h: 12, i: "11" },
|
|
// { x: 20, y: 9, w: 4, h: 15, i: "12" },
|
|
// { x: 0, y: 27, w: 4, h: 12, i: "14" },
|
|
// { x: 4, y: 27, w: 4, h: 12, i: "15" },
|
|
// { x: 8, y: 27, w: 4, h: 15, i: "16" },
|
|
// ];
|
|
// dashboardStore.setLayout(layout);
|
|
function handleClick(e: any) {
|
|
e.stopPropagation();
|
|
if (e.target.className === "ds-main") {
|
|
dashboardStore.activeGridItem("");
|
|
}
|
|
}
|
|
</script>
|
|
<style lang="scss" scoped>
|
|
.ds-main {
|
|
height: calc(100% - 45px);
|
|
overflow: auto;
|
|
}
|
|
|
|
.layout {
|
|
height: 100%;
|
|
flex-grow: 2;
|
|
overflow: hidden;
|
|
}
|
|
|
|
.grids {
|
|
height: 100%;
|
|
overflow-y: auto;
|
|
}
|
|
</style>
|