mirror of
https://github.com/apache/skywalking-booster-ui.git
synced 2025-05-02 07:04:00 +00:00
90 lines
2.8 KiB
Vue
90 lines
2.8 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>
|
|
<div class="dashboard-tool">
|
|
<el-button size="mini" @click="dashboardStore.addWidget">
|
|
Add Widget
|
|
</el-button>
|
|
<el-button size="mini">Save As</el-button>
|
|
<el-button size="mini">Discard</el-button>
|
|
<el-button size="mini" type="primary">Apply</el-button>
|
|
</div>
|
|
<div class="flex-h ds-main">
|
|
<GridLayout />
|
|
<div class="ds-config">Configurations</div>
|
|
</div>
|
|
</template>
|
|
<script lang="ts" setup>
|
|
import { toRefs, defineComponent, reactive, ref } from "vue";
|
|
import { ElButton } from "element-plus";
|
|
import GridLayout from "./widget/Layout.vue";
|
|
import { GridItemData } from "@/types/dashboard";
|
|
import { useDashboardStore } from "@/store/modules/dashboard";
|
|
|
|
const dashboardStore = useDashboardStore();
|
|
const layouts: GridItemData[] = [
|
|
{ x: 0, y: 0, w: 2, h: 2, i: "0" },
|
|
{ x: 2, y: 0, w: 2, h: 4, i: "1" },
|
|
{ x: 4, y: 0, w: 2, h: 5, i: "2" },
|
|
{ x: 6, y: 0, w: 2, h: 3, i: "3" },
|
|
{ x: 8, y: 0, w: 2, h: 3, i: "4" },
|
|
{ x: 10, y: 0, w: 2, h: 3, i: "5" },
|
|
{ x: 0, y: 5, w: 2, h: 5, i: "6" },
|
|
{ x: 2, y: 5, w: 2, h: 5, i: "7" },
|
|
{ x: 4, y: 5, w: 2, h: 5, i: "8" },
|
|
{ x: 6, y: 3, w: 2, h: 4, i: "9" },
|
|
{ x: 8, y: 4, w: 2, h: 4, i: "10" },
|
|
{ x: 10, y: 4, w: 2, h: 4, i: "11" },
|
|
{ x: 0, y: 10, w: 2, h: 5, i: "12" },
|
|
{ x: 2, y: 10, w: 2, h: 5, i: "13" },
|
|
{ x: 4, y: 8, w: 2, h: 4, i: "14" },
|
|
{ x: 6, y: 8, w: 2, h: 4, i: "15" },
|
|
{ x: 8, y: 10, w: 2, h: 5, i: "16" },
|
|
{ x: 10, y: 4, w: 2, h: 2, i: "17" },
|
|
{ x: 0, y: 9, w: 2, h: 3, i: "18" },
|
|
{ x: 2, y: 6, w: 2, h: 2, i: "19" },
|
|
];
|
|
dashboardStore.setLayouts(layouts);
|
|
</script>
|
|
<style lang="scss" scoped>
|
|
.dashboard-tool {
|
|
text-align: right;
|
|
padding: 5px 10px;
|
|
background: rgb(240, 242, 245);
|
|
border-bottom: 1px solid #dfe4e8;
|
|
}
|
|
|
|
.ds-main {
|
|
height: calc(100% - 40px);
|
|
}
|
|
|
|
.ds-config {
|
|
width: 360px;
|
|
margin: 5px 0;
|
|
background-color: #fff;
|
|
box-shadow: 2px 0 2px 0 #ccc;
|
|
text-align: center;
|
|
border-left: 1px solid #eee;
|
|
}
|
|
|
|
.panel {
|
|
width: 300px;
|
|
height: 300px;
|
|
background-color: #fff;
|
|
margin: 5px;
|
|
text-align: center;
|
|
}
|
|
</style>
|