This commit is contained in:
Jan Prochazka
2022-06-23 09:57:50 +02:00
4 changed files with 58 additions and 9 deletions

View File

@@ -0,0 +1,33 @@
<script context="module">
function getCommandTitle(command) {
let res = command.text;
if (command.keyText || command.keyTextFromGroup) {
res += ` (${formatKeyText(command.keyText || command.keyTextFromGroup)})`;
}
return res;
}
</script>
<script lang="ts">
import { commandsCustomized } from '../stores';
import { formatKeyText } from '../utility/common';
import FormStyledButton from './FormStyledButton.svelte';
export let command;
export let component = FormStyledButton;
export let hideDisabled = false;
$: cmd = Object.values($commandsCustomized).find((x: any) => x.id == command) as any;
</script>
{#if cmd && (!hideDisabled || cmd.enabled)}
<svelte:component
this={component}
title={getCommandTitle(cmd)}
icon={cmd.icon}
on:click={cmd.onClick}
disabled={!cmd.enabled}
value={cmd.toolbarName || cmd.name}
{...$$restProps}
/>
{/if}

View File

@@ -344,7 +344,8 @@
export let collapsedLeftColumnStore;
export let multipleGridsOnTab = false;
export let tabControlHiddenTab = false;
export let onCustomGridRefresh;
export let onCustomGridRefresh = null;
export let onOpenQuery = null;
export let useEvalFilters = false;
export let jslid;
// export let generalAllowSave = false;
@@ -1485,7 +1486,14 @@
{#if !display || (!isDynamicStructure && (!columns || columns.length == 0))}
<LoadingInfo wrapper message="Waiting for structure" />
{:else if errorMessage}
<ErrorInfo message={errorMessage} alignTop />
<div>
<ErrorInfo message={errorMessage} alignTop />
<FormStyledButton value="Reset filter" on:click={() => display.clearFilters()} />
<FormStyledButton value="Reset view" on:click={() => display.resetConfig()} />
{#if onOpenQuery}
<FormStyledButton value="Open Query" on:click={onOpenQuery} />
{/if}
</div>
{:else if isDynamicStructure && isLoadedAll && grider?.rowCount == 0}
<div>
<ErrorInfo

View File

@@ -224,4 +224,5 @@
frameSelection={!!macroPreview}
{grider}
{display}
onOpenQuery={openQuery}
/>