feat: update config

This commit is contained in:
Qiuxia Fan
2022-01-12 11:44:54 +08:00
parent 7d1abb3421
commit ad1e500c54
11 changed files with 130 additions and 66 deletions

View File

@@ -20,6 +20,7 @@ limitations under the License. -->
v-model="dashboardStore.showConfig"
title="Edit Graph Options"
fullscreen
:destroy-on-close="true"
@closed="dashboardStore.setConfigPanel(false)"
>
<widget-config />

View File

@@ -15,7 +15,7 @@ limitations under the License. -->
<template>
<div class="widget-config flex-v">
<div class="graph">
<div class="header">{{ title }}</div>
<div class="header">{{ states.widget.title }}</div>
<div class="render-chart">
<component
:is="states.chartType"
@@ -66,13 +66,13 @@ limitations under the License. -->
</div>
</el-collapse-item>
<el-collapse-item :title="t('graphStyles')" name="3">
<component
:is="`${states.chartType}Config`"
:config="dashboardStore.selectedGrid.graph"
/>
<component :is="`${states.chartType}Config`" :config="states.graph" />
</el-collapse-item>
<el-collapse-item :title="t('widgetOptions')" name="4">
<WidgetOptions @update="updateWidgetOptions" />
<WidgetOptions
:config="states.widget"
@update="updateWidgetOptions"
/>
</el-collapse-item>
<el-collapse-item :title="t('standardOptions')" name="5">
<StandardOptions />
@@ -90,13 +90,19 @@ limitations under the License. -->
</div>
</template>
<script lang="ts">
import { reactive, defineComponent, toRefs, ref } from "vue";
import { reactive, defineComponent, ref } from "vue";
import { useI18n } from "vue-i18n";
import { useDashboardStore } from "@/store/modules/dashboard";
import { useAppStoreWithOut } from "@/store/modules/app";
import { ElMessage } from "element-plus";
import { ValuesTypes, MetricQueryTypes, ChartTypes } from "../data";
import {
ValuesTypes,
MetricQueryTypes,
ChartTypes,
DefaultGraphConfig,
} from "../data";
import { Option } from "@/types/app";
import { WidgetConfig, GraphConfig } from "@/types/dashboard";
import graphs from "../graphs";
import configs from "./graph-styles";
import WidgetOptions from "./WidgetOptions.vue";
@@ -125,6 +131,8 @@ export default defineComponent({
activeNames: string;
source: any;
index: string;
graph: GraphConfig;
widget: WidgetConfig | any;
}>({
metrics: selectedGrid.metrics || [],
valueTypes: [],
@@ -134,16 +142,11 @@ export default defineComponent({
activeNames: "1",
source: {},
index: selectedGrid.i,
});
const widgetOpt = reactive<
| {
title: string;
tips: string;
}
| any
>({
tips: selectedGrid.widget.tips,
title: selectedGrid.widget.title,
graph: {},
widget: {
tips: selectedGrid.widget.tips,
title: selectedGrid.widget.title,
},
});
if (states.metrics[0]) {
queryMetricType(states.metrics[0]);
@@ -183,6 +186,9 @@ export default defineComponent({
function changeChartType(item: Option) {
states.chartType = String(item.value);
states.graph = {
...DefaultGraphConfig[item.value],
};
}
const metricOpts = [
@@ -200,10 +206,10 @@ export default defineComponent({
const configHeight = document.documentElement.clientHeight - 520;
function updateWidgetOptions(param: { label: string; value: string }) {
if (widgetOpt[param.label] === undefined) {
if (states.widget[param.label] === undefined) {
return;
}
widgetOpt[param.label] = param.value;
states.widget[param.label] = param.value;
}
async function queryMetrics() {
@@ -239,8 +245,8 @@ export default defineComponent({
chart: states.chartType,
widget: {
...dashboardStore.selectedGrid.widget,
title: widgetOpt.title,
tips: widgetOpt.tips,
title: states.widget.title,
tips: states.widget.tips,
},
graph: {
...dashboardStore.selectedGrid.graph,
@@ -254,7 +260,6 @@ export default defineComponent({
}
return {
...toRefs(widgetOpt),
states,
changeChartType,
changeValueType,

View File

@@ -106,7 +106,6 @@ limitations under the License. -->
</div>
</template>
<script lang="ts" setup>
import { ElInput } from "element-plus";
import { reactive } from "vue";
import { useI18n } from "vue-i18n";
import { SortOrder } from "../data";

View File

@@ -35,10 +35,15 @@ limitations under the License. -->
</div>
</template>
<script lang="ts" setup>
import { ElInput } from "element-plus";
import { ref, defineEmits } from "vue";
import { ref, defineEmits, defineProps } from "vue";
import { useI18n } from "vue-i18n";
defineProps({
config: {
type: Object,
default: () => ({ title: "", tooltips: "" }),
},
});
const emits = defineEmits(["update"]);
const { t } = useI18n();
const title = ref<string>("");

View File

@@ -12,7 +12,45 @@ 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>bar config</template>
<template>
<div>
<span class="label">Bar Width</span>
<el-slider
class="bar-width"
v-model="barWidth"
show-input
input-size="small"
/>
</div>
<div>
<span class="label">Show Background</span>
<el-switch v-model="showBackground" active-text="Yes" inactive-text="No" />
</div>
</template>
<script lang="ts" setup>
import { ref } from "vue";
import { defineProps, ref } from "vue";
import type { PropType } from "vue";
import { BarConfig } from "./types";
const props = defineProps({
config: {
type: Object as PropType<BarConfig>,
default: () => ({ showBackground: true, barWidth: 30 }),
},
});
const barWidth = ref(props.config.barWidth);
const showBackground = ref(props.config.showBackground);
</script>
<style lang="scss" scoped>
.bar-width {
width: 500px;
margin-top: -13px;
}
.label {
font-size: 13px;
font-weight: 500;
display: block;
margin-bottom: 5px;
}
</style>

View File

@@ -24,18 +24,13 @@ limitations under the License. -->
</div>
<div>
<span class="label">Show Background</span>
<el-switch
v-model="showBackground"
active-text="Yes"
inactive-text="No"
></el-switch>
<el-switch v-model="showBackground" active-text="Yes" inactive-text="No" />
</div>
</template>
<script lang="ts" setup>
import { defineProps, ref } from "vue";
import type { PropType } from "vue";
import { BarConfig } from "./types";
import { ElSlider, ElSwitch } from "element-plus";
const props = defineProps({
config: {

View File

@@ -24,18 +24,13 @@ limitations under the License. -->
</div>
<div>
<span class="label">Show Background</span>
<el-switch
v-model="showBackground"
active-text="Yes"
inactive-text="No"
></el-switch>
<el-switch v-model="showBackground" active-text="Yes" inactive-text="No" />
</div>
</template>
<script lang="ts" setup>
import { defineProps, ref } from "vue";
import type { PropType } from "vue";
import { BarConfig } from "./types";
import { ElSlider, ElSwitch } from "element-plus";
const props = defineProps({
config: {

View File

@@ -27,6 +27,24 @@ export const ChartTypes = [
{ label: "Instance List", value: "InstanceList" },
// { label: "Image", value: "Image" },
];
export const DefaultGraphConfig: { [key: string]: any } = {
Bar: {
type: "Bar",
showBackground: true,
barWidth: 30,
},
Line: {
type: "Line",
showBackground: true,
barWidth: 30,
},
Area: {
type: "Area",
showBackground: true,
barWidth: 30,
},
};
export enum MetricQueryTypes {
ReadMetricsValue = "readMetricsValue",
ReadMetricsValues = "readMetricsValues",