Files
mayfly-go/mayfly_go_web/src/views/ops/redis/KeyValueHash.vue

186 lines
6.0 KiB
Vue
Raw Normal View History

<template>
<div>
<el-button @click="showEditDialog(null)" icon="plus" size="small" plain type="primary" class="mb10">添加新行</el-button>
<el-table size="small" border :data="hashValues" height="500" min-height="300" stripe>
<el-table-column type="index" :label="'ID (Total: ' + total + ')'" sortable width="100"> </el-table-column>
<el-table-column resizable sortable prop="field" label="field" show-overflow-tooltip min-width="100"> </el-table-column>
<el-table-column resizable sortable prop="value" label="value" show-overflow-tooltip min-width="200"> </el-table-column>
<el-table-column label="操作">
<template #header>
<el-input
class="key-detail-filter-value"
v-model="state.filterValue"
@keyup.enter="hscan(true, true)"
placeholder="关键词回车搜索"
clearable
size="small"
/>
</template>
<template #default="scope">
<el-link @click="showEditDialog(scope.row)" :underline="false" type="primary" icon="edit" plain></el-link>
<el-popconfirm title="确定删除?" @confirm="hdel(scope.row.field, scope.$index)">
<template #reference>
<el-link v-auth="'redis:data:del'" :underline="false" type="danger" icon="delete" size="small" plain class="ml5"></el-link>
</template>
</el-popconfirm>
</template>
</el-table-column>
</el-table>
<!-- load more content -->
<div class="content-more-container">
<el-button size="small" @click="hscan()" :disabled="loadMoreDisable" class="content-more-btn"> 加载更多 </el-button>
</div>
<el-dialog title="添加新行" v-model="editDialog.visible" width="600px" :destroy-on-close="true" :close-on-click-modal="false">
<el-form>
<el-form-item>
<el-input v-model="editDialog.field" placeholder="field" />
</el-form-item>
<el-form-item>
<format-viewer class="w100" ref="formatViewerRef" :content="editDialog.value"></format-viewer>
</el-form-item>
</el-form>
<template #footer>
<div class="dialog-footer">
<el-button @click="editDialog.visible = false"> </el-button>
<el-button v-auth="'redis:data:save'" type="primary" @click="confirmEditData"> </el-button>
</div>
</template>
</el-dialog>
</div>
</template>
<script lang="ts" setup>
import { ref, onMounted, reactive, toRefs } from 'vue';
import { ElMessage } from 'element-plus';
import { notBlank } from '@/common/assert';
import FormatViewer from './FormatViewer.vue';
2024-03-02 19:08:19 +08:00
import { RedisInst } from './redis';
const props = defineProps({
2024-03-02 19:08:19 +08:00
redis: {
type: RedisInst,
required: true,
},
keyInfo: {
type: [Object],
},
});
const formatViewerRef = ref(null) as any;
const state = reactive({
key: '',
scanParam: {
cursor: 0,
count: 50,
},
filterValue: '',
hashValues: [] as any,
total: 0,
loadMoreDisable: false,
editDialog: {
visible: false,
field: '',
value: '',
dataRow: null as any,
},
});
const { hashValues, total, loadMoreDisable, editDialog } = toRefs(state);
onMounted(() => {
state.key = props.keyInfo?.key;
initData();
});
const initData = () => {
state.filterValue = '';
hscan(true, true);
};
const getScanMatch = () => {
return state.filterValue ? `*${state.filterValue}*` : '*';
};
const hscan = async (resetTableData = false, resetCursor = false) => {
if (resetCursor) {
state.scanParam.cursor = 0;
}
2024-03-02 19:08:19 +08:00
props.redis.runCmd(['HLEN', state.key]).then((res) => (state.total = res));
// HSCAN key cursor [MATCH pattern] [COUNT count]
// 返回值 [coursor, keys:[]]
let scanRes = await props.redis.runCmd(['HSCAN', state.key, state.scanParam.cursor, 'MATCH', getScanMatch(), 'COUNT', state.scanParam.count]);
state.scanParam.cursor = scanRes[0];
state.loadMoreDisable = state.scanParam.cursor == 0;
const keys = scanRes[1];
const hashValue = [];
const fieldCount = keys.length / 2;
let nextFieldIndex = 0;
for (let i = 0; i < fieldCount; i++) {
hashValue.push({ field: keys[nextFieldIndex++], value: keys[nextFieldIndex++] });
}
if (resetTableData) {
state.hashValues = hashValue;
} else {
state.hashValues.push(...hashValue);
}
};
const hdel = async (field: any, index: any) => {
2024-03-02 19:08:19 +08:00
await props.redis.runCmd(['HDEL', state.key, field]);
ElMessage.success('删除成功');
state.hashValues.splice(index, 1);
state.total--;
};
const showEditDialog = (row: any) => {
state.editDialog.dataRow = row;
state.editDialog.field = row ? row.field : '';
state.editDialog.value = row ? row.value : '';
state.editDialog.visible = true;
};
const confirmEditData = async () => {
const field = state.editDialog.field;
notBlank(field, 'field不能为空');
// 获取hash value内容并新增
const value = formatViewerRef.value.getContent();
2024-03-02 19:08:19 +08:00
const res = await props.redis.runCmd(['HSET', state.key, field, value]);
ElMessage.success('保存成功');
2024-03-02 19:08:19 +08:00
// 响应0则为被覆盖则重新scan
if (res == 0) {
hscan(true, true);
} else {
2024-03-02 19:08:19 +08:00
state.hashValues.unshift({ value, field });
state.total++;
}
state.editDialog.visible = false;
state.editDialog.dataRow = null;
};
defineExpose({ initData });
</script>
<style lang="scss">
#string-value-text {
flex-grow: 1;
display: flex;
position: relative;
.text-type-select {
position: absolute;
z-index: 2;
right: 10px;
top: 10px;
max-width: 70px;
}
}
</style>