2023-06-27 15:53:29 +08:00
|
|
|
<script setup>
|
|
|
|
import { computed, h, reactive, ref } from 'vue'
|
|
|
|
import { useI18n } from 'vue-i18n'
|
2023-07-03 23:48:41 +08:00
|
|
|
import ContentToolbar from './ContentToolbar.vue'
|
2023-08-02 17:57:39 +08:00
|
|
|
import AddLink from '@/components/icons/AddLink.vue'
|
2023-10-30 00:54:45 +08:00
|
|
|
import { NButton, NCode, NIcon, NInput, useThemeVars } from 'naive-ui'
|
2023-10-11 01:15:23 +08:00
|
|
|
import { isEmpty, size } from 'lodash'
|
2023-08-02 17:57:39 +08:00
|
|
|
import { types, types as redisTypes } from '@/consts/support_redis_type.js'
|
|
|
|
import EditableTableColumn from '@/components/common/EditableTableColumn.vue'
|
|
|
|
import useDialogStore from 'stores/dialog.js'
|
|
|
|
import useConnectionStore from 'stores/connections.js'
|
2023-10-30 00:54:45 +08:00
|
|
|
import bytes from 'bytes'
|
2023-10-31 17:29:56 +08:00
|
|
|
import { decodeTypes, formatTypes } from '@/consts/value_view_type.js'
|
2023-06-27 15:53:29 +08:00
|
|
|
|
|
|
|
const i18n = useI18n()
|
2023-10-30 00:54:45 +08:00
|
|
|
const themeVars = useThemeVars()
|
|
|
|
|
2023-06-27 15:53:29 +08:00
|
|
|
const props = defineProps({
|
|
|
|
name: String,
|
|
|
|
db: Number,
|
|
|
|
keyPath: String,
|
2023-10-11 01:15:23 +08:00
|
|
|
keyCode: {
|
|
|
|
type: Array,
|
|
|
|
default: null,
|
|
|
|
},
|
2023-06-27 15:53:29 +08:00
|
|
|
ttl: {
|
|
|
|
type: Number,
|
|
|
|
default: -1,
|
|
|
|
},
|
|
|
|
value: Object,
|
2023-09-28 16:01:58 +08:00
|
|
|
size: Number,
|
2023-10-30 00:54:45 +08:00
|
|
|
length: Number,
|
2023-10-31 17:29:56 +08:00
|
|
|
viewAs: {
|
|
|
|
type: String,
|
|
|
|
default: formatTypes.PLAIN_TEXT,
|
|
|
|
},
|
|
|
|
decode: {
|
|
|
|
type: String,
|
|
|
|
default: decodeTypes.NONE,
|
|
|
|
},
|
2023-06-27 15:53:29 +08:00
|
|
|
})
|
|
|
|
|
2023-10-11 01:15:23 +08:00
|
|
|
/**
|
|
|
|
*
|
|
|
|
* @type {ComputedRef<string|number[]>}
|
|
|
|
*/
|
|
|
|
const keyName = computed(() => {
|
|
|
|
return !isEmpty(props.keyCode) ? props.keyCode : props.keyPath
|
|
|
|
})
|
|
|
|
|
2023-06-27 15:53:29 +08:00
|
|
|
const connectionStore = useConnectionStore()
|
|
|
|
const dialogStore = useDialogStore()
|
|
|
|
const keyType = redisTypes.LIST
|
|
|
|
const currentEditRow = ref({
|
|
|
|
no: 0,
|
|
|
|
value: null,
|
|
|
|
})
|
|
|
|
const valueColumn = reactive({
|
|
|
|
key: 'value',
|
2023-09-07 18:38:34 +08:00
|
|
|
title: i18n.t('common.value'),
|
2023-06-27 15:53:29 +08:00
|
|
|
align: 'center',
|
|
|
|
titleAlign: 'center',
|
|
|
|
filterOptionValue: null,
|
|
|
|
filter(value, row) {
|
|
|
|
return !!~row.value.indexOf(value.toString())
|
|
|
|
},
|
|
|
|
render: (row) => {
|
|
|
|
const isEdit = currentEditRow.value.no === row.no
|
|
|
|
if (isEdit) {
|
|
|
|
return h(NInput, {
|
|
|
|
value: currentEditRow.value.value,
|
|
|
|
type: 'textarea',
|
|
|
|
autosize: { minRow: 2, maxRows: 5 },
|
|
|
|
style: 'text-align: left;',
|
|
|
|
'onUpdate:value': (val) => {
|
|
|
|
currentEditRow.value.value = val
|
|
|
|
},
|
|
|
|
})
|
|
|
|
} else {
|
|
|
|
return h(NCode, { language: 'plaintext', wordWrap: true }, { default: () => row.value })
|
|
|
|
}
|
|
|
|
},
|
|
|
|
})
|
2023-10-11 01:15:23 +08:00
|
|
|
|
2023-06-27 15:53:29 +08:00
|
|
|
const actionColumn = {
|
|
|
|
key: 'action',
|
2023-09-07 18:38:34 +08:00
|
|
|
title: i18n.t('interface.action'),
|
2023-06-27 15:53:29 +08:00
|
|
|
width: 100,
|
|
|
|
align: 'center',
|
|
|
|
titleAlign: 'center',
|
|
|
|
fixed: 'right',
|
|
|
|
render: (row) => {
|
|
|
|
return h(EditableTableColumn, {
|
|
|
|
editing: currentEditRow.value.no === row.no,
|
|
|
|
bindKey: '#' + row.no,
|
|
|
|
onEdit: () => {
|
|
|
|
currentEditRow.value.no = row.no
|
|
|
|
currentEditRow.value.value = row.value
|
|
|
|
},
|
|
|
|
onDelete: async () => {
|
|
|
|
try {
|
|
|
|
const { success, msg } = await connectionStore.removeListItem(
|
|
|
|
props.name,
|
|
|
|
props.db,
|
2023-10-11 01:15:23 +08:00
|
|
|
keyName.value,
|
2023-08-02 17:57:39 +08:00
|
|
|
row.no - 1,
|
2023-06-27 15:53:29 +08:00
|
|
|
)
|
|
|
|
if (success) {
|
2023-10-11 01:15:23 +08:00
|
|
|
connectionStore.loadKeyValue(props.name, props.db, keyName.value).then((r) => {})
|
2023-09-07 18:38:34 +08:00
|
|
|
$message.success(i18n.t('dialogue.delete_key_succ', { key: '#' + row.no }))
|
2023-06-27 15:53:29 +08:00
|
|
|
// update display value
|
|
|
|
// if (!isEmpty(removed)) {
|
|
|
|
// props.value.splice(removed[0], 1)
|
|
|
|
// }
|
|
|
|
} else {
|
2023-08-24 00:44:19 +08:00
|
|
|
$message.error(msg)
|
2023-06-27 15:53:29 +08:00
|
|
|
}
|
|
|
|
} catch (e) {
|
2023-08-24 00:44:19 +08:00
|
|
|
$message.error(e.message)
|
2023-06-27 15:53:29 +08:00
|
|
|
}
|
|
|
|
},
|
|
|
|
onSave: async () => {
|
|
|
|
try {
|
|
|
|
const { success, msg } = await connectionStore.updateListItem(
|
|
|
|
props.name,
|
|
|
|
props.db,
|
2023-10-11 01:15:23 +08:00
|
|
|
keyName.value,
|
2023-06-27 15:53:29 +08:00
|
|
|
currentEditRow.value.no - 1,
|
2023-08-02 17:57:39 +08:00
|
|
|
currentEditRow.value.value,
|
2023-06-27 15:53:29 +08:00
|
|
|
)
|
|
|
|
if (success) {
|
2023-10-11 01:15:23 +08:00
|
|
|
connectionStore.loadKeyValue(props.name, props.db, keyName.value).then((r) => {})
|
2023-09-07 18:38:34 +08:00
|
|
|
$message.success(i18n.t('dialogue.save_value_succ'))
|
2023-06-27 15:53:29 +08:00
|
|
|
// update display value
|
|
|
|
// if (!isEmpty(updated)) {
|
|
|
|
// for (const key in updated) {
|
|
|
|
// props.value[key] = updated[key]
|
|
|
|
// }
|
|
|
|
// }
|
|
|
|
} else {
|
2023-08-24 00:44:19 +08:00
|
|
|
$message.error(msg)
|
2023-06-27 15:53:29 +08:00
|
|
|
}
|
|
|
|
} catch (e) {
|
2023-08-24 00:44:19 +08:00
|
|
|
$message.error(e.message)
|
2023-06-27 15:53:29 +08:00
|
|
|
} finally {
|
|
|
|
currentEditRow.value.no = 0
|
|
|
|
}
|
|
|
|
},
|
|
|
|
onCancel: () => {
|
|
|
|
currentEditRow.value.no = 0
|
|
|
|
},
|
|
|
|
})
|
|
|
|
},
|
|
|
|
}
|
|
|
|
const columns = computed(() => {
|
|
|
|
return [
|
|
|
|
{
|
|
|
|
key: 'no',
|
|
|
|
title: '#',
|
|
|
|
width: 80,
|
|
|
|
align: 'center',
|
|
|
|
titleAlign: 'center',
|
|
|
|
},
|
|
|
|
valueColumn,
|
|
|
|
actionColumn,
|
|
|
|
]
|
|
|
|
})
|
|
|
|
|
|
|
|
const tableData = computed(() => {
|
|
|
|
const data = []
|
|
|
|
const len = size(props.value)
|
|
|
|
for (let i = 0; i < len; i++) {
|
|
|
|
data.push({
|
|
|
|
no: i + 1,
|
|
|
|
value: props.value[i],
|
|
|
|
})
|
|
|
|
}
|
|
|
|
return data
|
|
|
|
})
|
2023-08-20 14:42:36 +08:00
|
|
|
|
2023-06-27 15:53:29 +08:00
|
|
|
const onAddValue = (value) => {
|
2023-10-11 01:15:23 +08:00
|
|
|
dialogStore.openAddFieldsDialog(props.name, props.db, props.keyPath, props.keyCode, types.LIST)
|
2023-06-27 15:53:29 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
const filterValue = ref('')
|
|
|
|
const onFilterInput = (val) => {
|
|
|
|
valueColumn.filterOptionValue = val
|
|
|
|
}
|
|
|
|
|
|
|
|
const clearFilter = () => {
|
|
|
|
valueColumn.filterOptionValue = null
|
|
|
|
}
|
|
|
|
|
|
|
|
const onUpdateFilter = (filters, sourceColumn) => {
|
|
|
|
valueColumn.filterOptionValue = filters[sourceColumn.key]
|
|
|
|
}
|
|
|
|
</script>
|
|
|
|
|
|
|
|
<template>
|
|
|
|
<div class="content-wrapper flex-box-v">
|
2023-10-11 01:15:23 +08:00
|
|
|
<content-toolbar
|
|
|
|
:db="props.db"
|
2023-10-31 17:29:56 +08:00
|
|
|
:decode="props.decode"
|
2023-10-11 01:15:23 +08:00
|
|
|
:key-code="props.keyCode"
|
2023-10-20 18:34:19 +08:00
|
|
|
:key-path="props.keyPath"
|
2023-10-11 01:15:23 +08:00
|
|
|
:key-type="keyType"
|
|
|
|
:server="props.name"
|
2023-10-30 00:54:45 +08:00
|
|
|
:ttl="ttl"
|
2023-10-31 17:29:56 +08:00
|
|
|
:view-as="props.viewAs"
|
2023-10-30 00:54:45 +08:00
|
|
|
class="value-item-part" />
|
|
|
|
<div class="tb2 value-item-part flex-box-h">
|
2023-06-27 15:53:29 +08:00
|
|
|
<div class="flex-box-h">
|
|
|
|
<n-input
|
|
|
|
v-model:value="filterValue"
|
2023-09-07 18:38:34 +08:00
|
|
|
:placeholder="$t('interface.search')"
|
2023-06-27 15:53:29 +08:00
|
|
|
clearable
|
|
|
|
@clear="clearFilter"
|
2023-08-24 15:23:25 +08:00
|
|
|
@update:value="onFilterInput" />
|
2023-06-27 15:53:29 +08:00
|
|
|
</div>
|
2023-10-30 00:54:45 +08:00
|
|
|
<div class="flex-item-expand"></div>
|
2023-10-20 18:34:19 +08:00
|
|
|
<n-button :focusable="false" plain @click="onAddValue">
|
2023-06-27 15:53:29 +08:00
|
|
|
<template #icon>
|
|
|
|
<n-icon :component="AddLink" size="18" />
|
|
|
|
</template>
|
2023-09-07 18:38:34 +08:00
|
|
|
{{ $t('interface.add_row') }}
|
2023-06-27 15:53:29 +08:00
|
|
|
</n-button>
|
|
|
|
</div>
|
2023-10-30 00:54:45 +08:00
|
|
|
<div class="value-wrapper value-item-part fill-height flex-box-h">
|
2023-06-27 15:53:29 +08:00
|
|
|
<n-data-table
|
|
|
|
:key="(row) => row.no"
|
2023-10-20 18:34:19 +08:00
|
|
|
:bordered="false"
|
|
|
|
:bottom-bordered="false"
|
2023-06-27 15:53:29 +08:00
|
|
|
:columns="columns"
|
|
|
|
:data="tableData"
|
|
|
|
:single-column="true"
|
|
|
|
:single-line="false"
|
|
|
|
flex-height
|
|
|
|
max-height="100%"
|
|
|
|
size="small"
|
|
|
|
striped
|
|
|
|
virtual-scroll
|
2023-08-24 15:23:25 +08:00
|
|
|
@update:filters="onUpdateFilter" />
|
2023-06-27 15:53:29 +08:00
|
|
|
</div>
|
2023-10-30 00:54:45 +08:00
|
|
|
<div class="value-footer flex-box-h">
|
|
|
|
<n-text v-if="!isNaN(props.length)">{{ $t('interface.entries') }}: {{ props.length }}</n-text>
|
|
|
|
<n-divider v-if="!isNaN(props.length)" vertical />
|
|
|
|
<n-text v-if="!isNaN(props.size)">{{ $t('interface.memory_usage') }}: {{ bytes(props.size) }}</n-text>
|
|
|
|
<div class="flex-item-expand"></div>
|
|
|
|
</div>
|
2023-06-27 15:53:29 +08:00
|
|
|
</div>
|
|
|
|
</template>
|
|
|
|
|
2023-10-30 00:54:45 +08:00
|
|
|
<style lang="scss" scoped>
|
|
|
|
.value-footer {
|
|
|
|
border-top: v-bind('themeVars.borderColor') 1px solid;
|
|
|
|
background-color: v-bind('themeVars.tableHeaderColor');
|
|
|
|
}
|
|
|
|
</style>
|