mirror of
https://github.com/apache/skywalking-booster-ui.git
synced 2025-05-12 15:52:57 +00:00
78 lines
2.4 KiB
Vue
78 lines
2.4 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>
|
|
<span class="label">{{ t("enableAssociate") }}</span>
|
|
<el-switch v-model="eventAssociate" active-text="Yes" inactive-text="No" @change="updateConfig" />
|
|
</div>
|
|
<div class="footer">
|
|
<el-button size="small" @click="cancelConfig">
|
|
{{ t("cancel") }}
|
|
</el-button>
|
|
<el-button size="small" type="primary" @click="applyConfig">
|
|
{{ t("apply") }}
|
|
</el-button>
|
|
</div>
|
|
</template>
|
|
<script lang="ts" setup>
|
|
import { useI18n } from "vue-i18n";
|
|
import { ref } from "vue";
|
|
import { useDashboardStore } from "@/store/modules/dashboard";
|
|
|
|
const { t } = useI18n();
|
|
const dashboardStore = useDashboardStore();
|
|
const originConfig = dashboardStore.selectedGrid;
|
|
const eventAssociate = ref(dashboardStore.selectedGrid.eventAssociate || false);
|
|
|
|
function updateConfig() {
|
|
dashboardStore.selectedGrid = {
|
|
...dashboardStore.selectedGrid,
|
|
eventAssociate,
|
|
};
|
|
dashboardStore.selectWidget(dashboardStore.selectedGrid);
|
|
}
|
|
|
|
function applyConfig() {
|
|
dashboardStore.setConfigPanel(false);
|
|
dashboardStore.setConfigs(dashboardStore.selectedGrid);
|
|
}
|
|
|
|
function cancelConfig() {
|
|
dashboardStore.selectWidget(originConfig);
|
|
dashboardStore.setConfigPanel(false);
|
|
}
|
|
</script>
|
|
<style lang="scss" scoped>
|
|
.label {
|
|
font-size: 13px;
|
|
font-weight: 500;
|
|
display: block;
|
|
margin-bottom: 5px;
|
|
}
|
|
|
|
.item {
|
|
margin: 10px 0;
|
|
}
|
|
|
|
.footer {
|
|
position: fixed;
|
|
bottom: 0;
|
|
right: 0;
|
|
border-top: 1px solid $border-color-primary;
|
|
padding: 10px;
|
|
text-align: right;
|
|
width: 100%;
|
|
background-color: $theme-background;
|
|
}
|
|
</style>
|