mirror of
https://github.com/dbgate/dbgate
synced 2024-11-07 20:26:23 +00:00
redis: delete key
This commit is contained in:
parent
1aecda6d9f
commit
613ac3f0e5
@ -1,10 +1,13 @@
|
|||||||
<script lang="ts">
|
<script lang="ts">
|
||||||
import { getIconForRedisType } from 'dbgate-tools';
|
import { getIconForRedisType } from 'dbgate-tools';
|
||||||
|
|
||||||
import AppObjectCore from '../appobj/AppObjectCore.svelte';
|
import AppObjectCore from '../appobj/AppObjectCore.svelte';
|
||||||
import { plusExpandIcon } from '../icons/expandIcons';
|
import { plusExpandIcon } from '../icons/expandIcons';
|
||||||
import FontIcon from '../icons/FontIcon.svelte';
|
import FontIcon from '../icons/FontIcon.svelte';
|
||||||
|
import ConfirmModal from '../modals/ConfirmModal.svelte';
|
||||||
|
import { showModal } from '../modals/modalTools';
|
||||||
import { activeDbKeysStore } from '../stores';
|
import { activeDbKeysStore } from '../stores';
|
||||||
|
import { apiCall } from '../utility/api';
|
||||||
import openNewTab from '../utility/openNewTab';
|
import openNewTab from '../utility/openNewTab';
|
||||||
|
|
||||||
import DbKeysSubTree from './DbKeysSubTree.svelte';
|
import DbKeysSubTree from './DbKeysSubTree.svelte';
|
||||||
@ -19,8 +22,27 @@ import { getIconForRedisType } from 'dbgate-tools';
|
|||||||
|
|
||||||
let isExpanded;
|
let isExpanded;
|
||||||
|
|
||||||
|
|
||||||
// $: console.log(item.text, indentLevel);
|
// $: console.log(item.text, indentLevel);
|
||||||
|
function createMenu() {
|
||||||
|
return [
|
||||||
|
item.key != null && {
|
||||||
|
label: 'Delete',
|
||||||
|
onClick: () => {
|
||||||
|
showModal(ConfirmModal, {
|
||||||
|
message: `Really delete key ${item.key}?`,
|
||||||
|
onConfirm: async () => {
|
||||||
|
await apiCall('database-connections/call-method', {
|
||||||
|
conid,
|
||||||
|
database,
|
||||||
|
method: 'del',
|
||||||
|
args: [item.key],
|
||||||
|
});
|
||||||
|
},
|
||||||
|
});
|
||||||
|
},
|
||||||
|
},
|
||||||
|
];
|
||||||
|
}
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
<AppObjectCore
|
<AppObjectCore
|
||||||
@ -53,6 +75,7 @@ import { getIconForRedisType } from 'dbgate-tools';
|
|||||||
}}
|
}}
|
||||||
extInfo={item.count ? `(${item.count})` : null}
|
extInfo={item.count ? `(${item.count})` : null}
|
||||||
{indentLevel}
|
{indentLevel}
|
||||||
|
menu={createMenu}
|
||||||
/>
|
/>
|
||||||
<!-- <div on:click={() => (isExpanded = !isExpanded)}>
|
<!-- <div on:click={() => (isExpanded = !isExpanded)}>
|
||||||
<FontIcon icon={} />
|
<FontIcon icon={} />
|
||||||
|
Loading…
Reference in New Issue
Block a user