fix: new key to a non-current database incorrectly refresh the tree view (#259)

This commit is contained in:
Lykin 2024-05-21 15:55:02 +08:00
parent f536b0f23b
commit a2b0fc183f
2 changed files with 17 additions and 9 deletions

View File

@ -154,7 +154,11 @@ const onAdd = async () => {
value = defaultValue[type]
}
// await browserStore.reloadKey({server, db, key: trim(key)})
const { success, msg, nodeKey } = await browserStore.setKey({
const {
success,
msg,
nodeKey = '',
} = await browserStore.setKey({
server,
db,
key: trim(key),
@ -165,8 +169,11 @@ const onAdd = async () => {
if (success) {
// select current key
await nextTick()
const selectedDB = browserStore.getSelectedDB(server)
if (selectedDB === db) {
tabStore.setSelectedKeys(server, nodeKey)
browserStore.reloadKey({ server, db, key })
}
} else if (!isEmpty(msg)) {
$message.error(msg)
}

View File

@ -832,7 +832,7 @@ const useBrowserStore = defineStore('browser', {
if (success) {
/** @type RedisServerState **/
const serverInst = this.servers[server]
if (serverInst != null) {
if (serverInst != null && serverInst.db === db) {
// const { value } = data
// update tree view data
const { newKey = 0 } = serverInst.addKeyNodes([key], true)
@ -840,12 +840,13 @@ const useBrowserStore = defineStore('browser', {
serverInst.tidyNode(key)
serverInst.updateDBKeyCount(db, newKey)
}
}
const { value: updatedValue } = data
if (updatedValue != null) {
const tab = useTabStore()
tab.updateValue({ server, db, key, value: updatedValue })
}
}
// this.loadKeySummary({ server, db, key })
return {
success,