2023-06-27 15:53:29 +08:00
|
|
|
<script setup>
|
2023-08-02 17:57:39 +08:00
|
|
|
import { validType } from '@/consts/support_redis_type.js'
|
|
|
|
import useDialog from 'stores/dialog.js'
|
|
|
|
import Delete from '@/components/icons/Delete.vue'
|
|
|
|
import Edit from '@/components/icons/Edit.vue'
|
|
|
|
import Refresh from '@/components/icons/Refresh.vue'
|
|
|
|
import Timer from '@/components/icons/Timer.vue'
|
|
|
|
import RedisTypeTag from '@/components/common/RedisTypeTag.vue'
|
2023-06-27 15:53:29 +08:00
|
|
|
import { useI18n } from 'vue-i18n'
|
2023-08-02 17:57:39 +08:00
|
|
|
import IconButton from '@/components/common/IconButton.vue'
|
|
|
|
import useConnectionStore from 'stores/connections.js'
|
|
|
|
import Copy from '@/components/icons/Copy.vue'
|
|
|
|
import { ClipboardSetText } from 'wailsjs/runtime/runtime.js'
|
2023-10-11 01:15:23 +08:00
|
|
|
import { computed } from 'vue'
|
2023-10-15 21:37:36 +08:00
|
|
|
import { isEmpty, padStart } from 'lodash'
|
2023-06-27 15:53:29 +08:00
|
|
|
|
|
|
|
const props = defineProps({
|
|
|
|
server: String,
|
|
|
|
db: Number,
|
|
|
|
keyType: {
|
|
|
|
type: String,
|
|
|
|
validator(value) {
|
|
|
|
return validType(value)
|
|
|
|
},
|
|
|
|
default: 'STRING',
|
|
|
|
},
|
|
|
|
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,
|
|
|
|
},
|
|
|
|
})
|
|
|
|
|
|
|
|
const dialogStore = useDialog()
|
|
|
|
const connectionStore = useConnectionStore()
|
|
|
|
const i18n = useI18n()
|
|
|
|
|
2023-10-11 01:15:23 +08:00
|
|
|
const binaryKey = computed(() => {
|
|
|
|
return !!props.keyCode
|
|
|
|
})
|
|
|
|
|
|
|
|
/**
|
|
|
|
*
|
|
|
|
* @type {ComputedRef<string|number[]>}
|
|
|
|
*/
|
|
|
|
const keyName = computed(() => {
|
|
|
|
return !isEmpty(props.keyCode) ? props.keyCode : props.keyPath
|
|
|
|
})
|
|
|
|
|
2023-10-15 21:37:36 +08:00
|
|
|
const ttlString = computed(() => {
|
|
|
|
let s = ''
|
|
|
|
if (props.ttl > 0) {
|
|
|
|
const hours = Math.floor(props.ttl / 3600)
|
|
|
|
s += padStart(hours + ':', 3, '0')
|
|
|
|
const minutes = Math.floor((props.ttl % 3600) / 60)
|
|
|
|
s += padStart(minutes + ':', 3, '0')
|
|
|
|
const seconds = Math.floor(props.ttl % 60)
|
|
|
|
s += padStart(seconds + '', 2, '0')
|
|
|
|
} else if (props.ttl < 0) {
|
|
|
|
s = i18n.t('interface.forever')
|
|
|
|
} else {
|
|
|
|
s = '00:00:00'
|
|
|
|
}
|
|
|
|
return s
|
|
|
|
})
|
|
|
|
|
2023-06-27 15:53:29 +08:00
|
|
|
const onReloadKey = () => {
|
2023-10-11 01:15:23 +08:00
|
|
|
connectionStore.loadKeyValue(props.server, props.db, keyName.value)
|
2023-06-27 15:53:29 +08:00
|
|
|
}
|
|
|
|
|
2023-07-25 19:12:50 +08:00
|
|
|
const onCopyKey = () => {
|
|
|
|
ClipboardSetText(props.keyPath)
|
|
|
|
.then((succ) => {
|
|
|
|
if (succ) {
|
2023-09-07 18:38:34 +08:00
|
|
|
$message.success(i18n.t('dialogue.copy_succ'))
|
2023-07-25 19:12:50 +08:00
|
|
|
}
|
|
|
|
})
|
|
|
|
.catch((e) => {
|
2023-08-24 00:44:19 +08:00
|
|
|
$message.error(e.message)
|
2023-07-25 19:12:50 +08:00
|
|
|
})
|
|
|
|
}
|
|
|
|
|
2023-10-11 01:15:23 +08:00
|
|
|
const onRenameKey = () => {
|
|
|
|
if (binaryKey.value) {
|
|
|
|
$message.error(i18n.t('dialogue.rename_binary_key_fail'))
|
|
|
|
} else {
|
|
|
|
dialogStore.openRenameKeyDialog(props.server, props.db, props.keyPath)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2023-07-04 00:42:17 +08:00
|
|
|
const onDeleteKey = () => {
|
2023-09-07 18:38:34 +08:00
|
|
|
$dialog.warning(i18n.t('dialogue.remove_tip', { name: props.keyPath }), () => {
|
2023-10-11 01:15:23 +08:00
|
|
|
connectionStore.deleteKey(props.server, props.db, keyName.value).then((success) => {
|
2023-07-04 00:42:17 +08:00
|
|
|
if (success) {
|
2023-09-07 18:38:34 +08:00
|
|
|
$message.success(i18n.t('dialogue.delete_key_succ', { key: props.keyPath }))
|
2023-07-04 00:42:17 +08:00
|
|
|
}
|
|
|
|
})
|
|
|
|
})
|
2023-06-27 15:53:29 +08:00
|
|
|
}
|
|
|
|
</script>
|
|
|
|
|
|
|
|
<template>
|
|
|
|
<div class="content-toolbar flex-box-h">
|
|
|
|
<n-input-group>
|
2023-10-11 01:15:23 +08:00
|
|
|
<redis-type-tag :type="props.keyType" :binary-key="binaryKey" size="large" />
|
2023-06-27 15:53:29 +08:00
|
|
|
<n-input v-model:value="props.keyPath">
|
|
|
|
<template #suffix>
|
2023-09-07 18:38:34 +08:00
|
|
|
<icon-button :icon="Refresh" size="18" t-tooltip="interface.reload" @click="onReloadKey" />
|
2023-06-27 15:53:29 +08:00
|
|
|
</template>
|
|
|
|
</n-input>
|
2023-09-07 18:38:34 +08:00
|
|
|
<icon-button :icon="Copy" border size="18" t-tooltip="interface.copy_key" @click="onCopyKey" />
|
2023-06-27 15:53:29 +08:00
|
|
|
</n-input-group>
|
|
|
|
<n-button-group>
|
|
|
|
<n-tooltip>
|
|
|
|
<template #trigger>
|
2023-09-06 16:07:20 +08:00
|
|
|
<n-button :focusable="false" @click="dialogStore.openTTLDialog(props.ttl)">
|
2023-06-27 15:53:29 +08:00
|
|
|
<template #icon>
|
|
|
|
<n-icon :component="Timer" size="18" />
|
|
|
|
</template>
|
2023-10-15 21:37:36 +08:00
|
|
|
{{ ttlString }}
|
2023-06-27 15:53:29 +08:00
|
|
|
</n-button>
|
|
|
|
</template>
|
2023-10-15 21:37:36 +08:00
|
|
|
TTL{{ `${ttl > 0 ? ': ' + ttl + $t('common.second') : ''}` }}
|
2023-06-27 15:53:29 +08:00
|
|
|
</n-tooltip>
|
2023-10-11 01:15:23 +08:00
|
|
|
<icon-button :icon="Edit" border size="18" t-tooltip="interface.rename_key" @click="onRenameKey" />
|
2023-06-27 15:53:29 +08:00
|
|
|
</n-button-group>
|
|
|
|
<n-tooltip>
|
|
|
|
<template #trigger>
|
2023-10-11 01:15:23 +08:00
|
|
|
<n-button :focusable="false" @click="onDeleteKey">
|
2023-07-04 00:42:17 +08:00
|
|
|
<template #icon>
|
2023-10-11 01:15:23 +08:00
|
|
|
<n-icon :component="Delete" size="18" />
|
2023-06-27 15:53:29 +08:00
|
|
|
</template>
|
2023-07-04 00:42:17 +08:00
|
|
|
</n-button>
|
2023-06-27 15:53:29 +08:00
|
|
|
</template>
|
2023-09-07 18:38:34 +08:00
|
|
|
{{ $t('interface.delete_key') }}
|
2023-06-27 15:53:29 +08:00
|
|
|
</n-tooltip>
|
|
|
|
</div>
|
|
|
|
</template>
|
|
|
|
|
|
|
|
<style lang="scss" scoped>
|
|
|
|
.content-toolbar {
|
|
|
|
align-items: center;
|
|
|
|
gap: 5px;
|
|
|
|
}
|
|
|
|
</style>
|