mirror of
https://github.com/ankitects/anki.git
synced 2025-11-06 12:47:11 -05: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.
52 lines
1.5 KiB
Svelte
52 lines
1.5 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 type { ImportResponse } from "@tslib/anki/import_export_pb";
|
|
import * as tr from "@tslib/ftl";
|
|
|
|
import Container from "../components/Container.svelte";
|
|
import CloseButton from "./CloseButton.svelte";
|
|
import DetailsTable from "./DetailsTable.svelte";
|
|
import { getSummaries } from "./lib";
|
|
import QueueSummary from "./QueueSummary.svelte";
|
|
|
|
export let response: ImportResponse;
|
|
const result = response;
|
|
$: summaries = result ? getSummaries(result.log!) : [];
|
|
$: foundNotes = result?.log?.foundNotes ?? 0;
|
|
let closeButton: HTMLElement;
|
|
</script>
|
|
|
|
<Container class="import-log-page">
|
|
{#if result}
|
|
<p class="note-count">
|
|
{tr.importingNotesFoundInFile2({
|
|
notes: foundNotes,
|
|
})}
|
|
</p>
|
|
<ul class="summary-list">
|
|
{#each summaries as summary}
|
|
<QueueSummary {summary} />
|
|
{/each}
|
|
</ul>
|
|
{#if closeButton}
|
|
<DetailsTable {summaries} bind:bottomOffset={closeButton.clientHeight} />
|
|
{/if}
|
|
<CloseButton bind:container={closeButton} />
|
|
{/if}
|
|
</Container>
|
|
|
|
<style lang="scss">
|
|
:global(.import-log-page) {
|
|
font-size: 16px;
|
|
margin: 8px auto;
|
|
}
|
|
.note-count {
|
|
margin-bottom: 4px;
|
|
}
|
|
.summary-list {
|
|
padding-inline-start: 8px;
|
|
}
|
|
</style>
|