850043b49b
* Make enum selector generic * Refactor ImportCsvPage to support tooltips * Improve csv import defaults * Unify import pages * Improve import page styling * Fix life cycle issue with import properties * Remove size constraints to fix scrollbar styling * Add help strings and urls to csv import page * Show ErrorPage on ImportPage error * Fix escaping of import path * Unify ImportPage and ImportLogPage * Apply suggestions from code review (dae) * Fix import progress * Fix preview overflowing container * Don't include <br> in FileIoErrors (dae) e.g. 500: Failed to read '/home/dae/foo2.csv':<br>stream did not contain valid UTF-8 I thought about using {@html ...} here, but that's a potential security issue, as the filename is not something we control.
54 lines
1.3 KiB
Svelte
54 lines
1.3 KiB
Svelte
<!--
|
|
Copyright: Ankitects Pty Ltd and contributors
|
|
License: GNU AGPL, version 3 or later; http://www.gnu.org/licenses/agpl.html
|
|
-->
|
|
<script lang="ts">
|
|
import { bridgeCommand } from "@tslib/bridgecommand";
|
|
import * as tr from "@tslib/ftl";
|
|
import { getPlatformString } from "@tslib/shortcuts";
|
|
|
|
import LabelButton from "../components/LabelButton.svelte";
|
|
import Shortcut from "../components/Shortcut.svelte";
|
|
|
|
export let container: HTMLElement;
|
|
const keyCombination = "Control+Enter";
|
|
|
|
function onClose() {
|
|
bridgeCommand("close");
|
|
}
|
|
</script>
|
|
|
|
<div
|
|
class="fixed-header d-flex flex-row-reverse justify-content-between"
|
|
bind:this={container}
|
|
>
|
|
<LabelButton
|
|
primary
|
|
tooltip={getPlatformString(keyCombination)}
|
|
on:click={onClose}
|
|
--border-left-radius="5px"
|
|
--border-right-radius="5px"
|
|
>
|
|
<div class="close">{tr.actionsClose()}</div>
|
|
</LabelButton>
|
|
<Shortcut {keyCombination} on:action={onClose} />
|
|
</div>
|
|
|
|
<style lang="scss">
|
|
.fixed-header {
|
|
position: fixed;
|
|
right: 0;
|
|
bottom: 0;
|
|
z-index: 10;
|
|
|
|
margin: 0;
|
|
padding: 0.5rem;
|
|
|
|
background: var(--canvas);
|
|
|
|
.close {
|
|
margin-inline: 0.75rem;
|
|
}
|
|
}
|
|
</style>
|