Skip to content

Commit

Permalink
feat(frontend): redis集群容量变更调整 #5659
Browse files Browse the repository at this point in the history
  • Loading branch information
3octaves committed Sep 3, 2024
1 parent e6bff55 commit a8e13d4
Show file tree
Hide file tree
Showing 3 changed files with 39 additions and 26 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -234,8 +234,14 @@
<bk-radio
label={data.spec_id}
modelValue={modelValue.value}
style="display: flex">
<div class="text-overflow" v-overflow-tips>{data.spec_name}</div>
style="display: flex"
onClick={() => handleRowClick(data)}>
<div
class="text-overflow"
v-overflow-tips
onClick={(event: Event) => {event.stopPropagation()}}>
{data.spec_name}
</div>
</bk-radio>
),
},
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -164,10 +164,12 @@
v-model={modelValue.value.spec_id}
label={data.spec_id}
key={index}
class="spec-radio">
class="spec-radio"
onClick={(event: Event) => handleRowClick(event, data)}>
<div
class="text-overflow"
v-overflow-tips>
v-overflow-tips
onClick={(event: Event) => {event.stopPropagation()}}>
{data.spec_name}
</div>
</bk-radio>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -345,27 +345,29 @@
const { t } = useI18n();
const handleBeforeClose = useBeforeClose();

const createDefaultTargetInfo = () => ({
capacity: 0,
spec: {
name: '',
cpu: {} as ClusterSpecModel['cpu'],
id: 0,
mem: {} as ClusterSpecModel['mem'],
qps: {} as ClusterSpecModel['qps'],
storage_spec: [] as ClusterSpecModel['storage_spec']
},
groupNum: 0,
requireMachineGroupNum: 0,
shardNum: 0,
updateMode: ''
})

const capacityNeed = ref();
const radioValue = ref(-1);
const radioChoosedId = ref(''); // 标记,sort重新定位index用
const isTableLoading = ref(false);
const isConfirmLoading = ref(false);
const tableData = ref<ClusterSpecModel[]>([]);
const targetInfo = ref({
capacity: 0,
spec: {
name: '',
cpu: {} as ClusterSpecModel['cpu'],
id: 0,
mem: {} as ClusterSpecModel['mem'],
qps: {} as ClusterSpecModel['qps'],
storage_spec: [] as ClusterSpecModel['storage_spec']
},
groupNum: 0,
requireMachineGroupNum: 0,
shardNum: 0,
updateMode: ''
});
const targetInfo = ref(createDefaultTargetInfo());

const specDisabledMap = shallowRef<Record<number, boolean>>({})

Expand Down Expand Up @@ -418,7 +420,7 @@
label={index}
v-model={radioValue.value}
disabled={specDisabledMap.value[row.spec_id]}>
{row.spec_name}
<span style="font-size: 12px">{row.spec_name}</span>
</bk-radio>
</div>
),
Expand All @@ -442,6 +444,12 @@

let rawTableData: ClusterSpecModel[] = [];

watch(radioValue, () => {
if (radioValue.value !== -1) {
getUpdateInfo(tableData.value[radioValue.value])
}
})

const handleSearchClusterSpec = async () => {
if (capacityNeed.value === undefined) {
return;
Expand All @@ -463,6 +471,7 @@
isTableLoading.value = false;
});
radioValue.value = -1
targetInfo.value = createDefaultTargetInfo()
tableData.value = retArr;
rawTableData = _.cloneDeep(retArr);
specDisabledMap.value = {}
Expand All @@ -485,7 +494,7 @@
emits('clickCancel');
}

const getUpdateInfo = (row: ClusterSpecModel, index: number) => {
const getUpdateInfo = (row: ClusterSpecModel) => {
getRedisClusterCapacityUpdateInfo({
cluster_id: props.clusterId!,
new_storage_version: props.targetVerison!,
Expand Down Expand Up @@ -515,20 +524,16 @@
shardNum: row.cluster_shard_num,
updateMode: updateInfo.capacity_update_type
}
radioValue.value = index;
radioChoosedId.value = row.spec_name;
})
}

const getUpdateInfoDebounce = _.debounce(getUpdateInfo, 200)

const handleRowClick = (event: PointerEvent, row: ClusterSpecModel, index: number) => {
if (index === radioValue.value || specDisabledMap.value[row.spec_id]) {
return
}

// TODO 这里暂时通过防抖,来防止触发两次请求
getUpdateInfoDebounce(row, index)
radioValue.value = index
};

const handleColumnSort = (data: { column: { field: string }, index: number, type: string }) => {
Expand Down

0 comments on commit a8e13d4

Please sign in to comment.