mirror of
https://github.com/ankitects/anki.git
synced 2025-09-19 06:22:22 -04:00

* 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.
38 lines
966 B
Svelte
38 lines
966 B
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 * as tr from "@tslib/ftl";
|
|
|
|
import IconConstrain from "../components/IconConstrain.svelte";
|
|
import { showInBrowser } from "./lib";
|
|
import type { SummarizedLogQueues } from "./types";
|
|
|
|
export let summary: SummarizedLogQueues;
|
|
|
|
$: notes = summary.queues.map((queue) => queue.notes).flat();
|
|
|
|
function onShow(event: MouseEvent) {
|
|
showInBrowser(notes);
|
|
event.preventDefault();
|
|
}
|
|
</script>
|
|
|
|
{#if notes.length}
|
|
<li>
|
|
<IconConstrain>
|
|
{@html summary.icon}
|
|
</IconConstrain>
|
|
{summary.summaryTemplate({ count: notes.length })}
|
|
{#if summary.canBrowse}
|
|
<button on:click={onShow}>{tr.importingShow()}</button>
|
|
{/if}
|
|
</li>
|
|
{/if}
|
|
|
|
<style lang="scss">
|
|
li {
|
|
list-style-type: none;
|
|
}
|
|
</style>
|