fix: config

This commit is contained in:
Fine 2024-01-16 17:55:24 +08:00
parent 5061b19cf7
commit dd4e106c1c
2 changed files with 19 additions and 11 deletions

View File

@ -315,19 +315,19 @@ limitations under the License. -->
} }
loading.value = true; loading.value = true;
for (const item of arr) { for (const item of arr) {
const { layer, name, entity, isRoot, children, isDefault } = item.configuration; const { layer, name, entity, isRoot, children, isDefault, expressions, expressionsConfig } = item.configuration;
const index = dashboardStore.dashboards.findIndex((d: DashboardItem) => d.id === item.id); const index = dashboardStore.dashboards.findIndex((d: DashboardItem) => d.id === item.id);
const p: DashboardItem = { const p: DashboardItem = {
name: name.split(" ").join("-"), name: name.split(" ").join("-"),
layer: layer, layer: layer,
entity: entity, entity: entity,
isRoot: false, isRoot: isRoot || false,
isDefault: false, isDefault: isDefault || false,
expressions: expressions,
expressionsConfig: expressionsConfig,
}; };
if (index > -1) { if (index > -1) {
p.id = item.id; p.id = item.id;
p.isRoot = isRoot;
p.isDefault = isDefault;
} }
dashboardStore.setCurrentDashboard(p); dashboardStore.setCurrentDashboard(p);
dashboardStore.setLayout(children); dashboardStore.setLayout(children);

View File

@ -110,11 +110,6 @@ limitations under the License. -->
return m.length ? m : [{ label: "", value: "" }]; return m.length ? m : [{ label: "", value: "" }];
}); });
const currentMetric = ref<string>(metricList.value[0].value); const currentMetric = ref<string>(metricList.value[0].value);
const currentConfig = ref<{ unit: string; calculation: string; label: string }>({
unit: "",
calculation: "",
label: "",
});
const currentIndex = ref<number>(0); const currentIndex = ref<number>(0);
const getMetricConfig = computed(() => { const getMetricConfig = computed(() => {
if (props.type === "hierarchyServicesConfig") { if (props.type === "hierarchyServicesConfig") {
@ -125,7 +120,12 @@ limitations under the License. -->
}, },
ConfigFieldTypes.ISDEFAULT, ConfigFieldTypes.ISDEFAULT,
); );
return (dashboard && dashboard.expressionsConfig) || []; if (!dashboard) {
return [];
}
const config = dashboard.expressionsConfig || [];
return config || [];
} }
let config = []; let config = [];
@ -143,6 +143,14 @@ limitations under the License. -->
return config || []; return config || [];
}); });
const currentConfig = ref<{ unit: string; calculation: string; label: string }>(
getMetricConfig.value[0] || {
unit: "",
calculation: "",
label: "",
},
);
function changeConfigs(param: { [key: string]: string }) { function changeConfigs(param: { [key: string]: string }) {
const metricConfig = getMetricConfig.value || []; const metricConfig = getMetricConfig.value || [];
metricConfig[currentIndex.value] = { metricConfig[currentIndex.value] = {