SYNC: disabled messages in new object modal

This commit is contained in:
SPRINX0\prochazka
2025-07-16 12:50:14 +02:00
committed by Diflow
parent d19851fc0c
commit dcba319071
2 changed files with 27 additions and 1 deletions

View File

@@ -1,16 +1,30 @@
<script lang="ts">
import FontIcon from '../icons/FontIcon.svelte';
import { isProApp } from '../utility/proTools';
export let icon;
export let title;
export let description;
export let enabled;
export let colorClass;
export let disabledMessage = undefined;
export let isProFeature;
$: disabled = !enabled;
</script>
<div class="new-object-button" on:click class:enabled class:disabled data-testid={$$props['data-testid']}>
<div
class="new-object-button"
on:click
class:enabled
class:disabled
data-testid={$$props['data-testid']}
title={disabled
? isProFeature && !isProApp()
? 'This feature is available only in DbGate Premium'
: disabledMessage
: undefined}
>
<div class="icon">
<FontIcon {icon} colorClass={enabled ? colorClass : null} />
</div>

View File

@@ -3,6 +3,7 @@
import runCommand from '../commands/runCommand';
import newQuery from '../query/newQuery';
import { commandsCustomized, selectedWidget } from '../stores';
import { isProApp } from '../utility/proTools';
import ModalBase from './ModalBase.svelte';
import { closeCurrentModal } from './modalTools';
@@ -27,6 +28,7 @@
command: 'new.connection',
changeWidget: 'database',
testid: 'NewObjectModal_connection',
disabledMessage: 'You are not allowed to create new connections',
},
{
icon: 'icon cloud-connection',
@@ -36,6 +38,7 @@
command: 'new.connectionOnCloud',
changeWidget: 'cloud-private',
testid: 'NewObjectModal_connectionOnCloud',
disabledMessage: 'For creating connections on DbGate Cloud, you need to be logged in',
},
{
icon: 'icon query-design',
@@ -44,6 +47,8 @@
description: 'Design SQL queries visually',
command: 'new.queryDesign',
testid: 'NewObjectModal_queryDesign',
disabledMessage: 'Query Designer is not available for current database',
isProFeature: true,
},
{
icon: 'icon diagram',
@@ -52,6 +57,7 @@
description: 'Visualize database structure',
command: 'new.diagram',
testid: 'NewObjectModal_diagram',
disabledMessage: 'ER Diagram is not available for current database',
},
{
icon: 'icon perspective',
@@ -68,6 +74,7 @@
description: 'Create table in the current database',
command: 'new.table',
testid: 'NewObjectModal_table',
disabledMessage: 'Table creation is not available for current database',
},
{
icon: 'icon sql-generator',
@@ -76,6 +83,7 @@
description: 'Generate SQL scripts for database objects',
command: 'sql.generator',
testid: 'NewObjectModal_sqlGenerator',
disabledMessage: 'SQL Generator is not available for current database',
},
{
icon: 'icon export',
@@ -84,6 +92,7 @@
description: 'Export to file like CSV, JSON, Excel, or other DB',
command: 'database.export',
testid: 'NewObjectModal_databaseExport',
disabledMessage: 'Export is not available for current database',
},
{
icon: 'icon compare',
@@ -92,6 +101,7 @@
description: 'Compare database schemas',
command: 'database.compare',
testid: 'NewObjectModal_databaseCompare',
disabledMessage: 'Database comparison is not available for current database',
},
];
</script>
@@ -108,6 +118,8 @@
{enabled}
colorClass={item.colorClass}
data-testid={item.testid}
disabledMessage={item.disabledMessage}
isProFeature={item.isProFeature}
on:click={() => {
if (!enabled) return;
closeCurrentModal();