perf: support `Ctrl+C`/`Cmd+C` to copy selected key name

This commit is contained in:
Lykin 2024-05-20 00:30:15 +08:00
parent 50bec33870
commit 78bfaf6e16
1 changed files with 24 additions and 0 deletions

View File

@ -309,6 +309,29 @@ const handleKeyDelete = () => {
} }
} }
const handleKeyCopy = () => {
const selectedKey = get(selectedKeys.value, 0)
if (selectedKey == null) {
return
}
let node = browserStore.getNode(selectedKey)
if (node == null) {
return
}
if (node.type === ConnectionType.RedisValue) {
ClipboardSetText(nativeRedisKey(node.redisKeyCode || node.redisKey))
.then((succ) => {
if (succ) {
$message.success(i18n.t('interface.copy_succ'))
}
})
.catch((e) => {
$message.error(e.message)
})
}
}
const handleSelectContextMenu = (action) => { const handleSelectContextMenu = (action) => {
contextMenuParam.show = false contextMenuParam.show = false
const selectedKey = get(selectedKeys.value, 0) const selectedKey = get(selectedKeys.value, 0)
@ -786,6 +809,7 @@ defineExpose({
@keydown.left="handleKeyLeft" @keydown.left="handleKeyLeft"
@keydown.right="handleKeyRight" @keydown.right="handleKeyRight"
@keydown.delete="handleKeyDelete" @keydown.delete="handleKeyDelete"
@keydown.meta.c="handleKeyCopy"
@update:selected-keys="onUpdateSelectedKeys" @update:selected-keys="onUpdateSelectedKeys"
@update:expanded-keys="onUpdateExpanded" @update:expanded-keys="onUpdateExpanded"
@update:checked-keys="onUpdateCheckedKeys"> @update:checked-keys="onUpdateCheckedKeys">