Anki/ts/routes/import-page/DetailsTable.svelte
RumovZ 790c52f012
Svg icon (#3135)
* Add sveltekit-svg plugin to fix svg icon styling

Closes #3127.

* Unify svg icon usage

Moves all icons into ts/lib/components/icons.ts and uses a single component to render
them both with eslint and svelte-kit.

* Fix spinning revert icon not being centered

* Use svg earth icon for global label

* Add tooltip to global label icon

* Remove eslint-plugin-simple-import-sort

Imports are already sorted by dprint with conflicting rules.
2024-04-24 02:37:31 +01:00

96 lines
2.8 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 * as tr from "@generated/ftl";
import Icon from "$lib/components/Icon.svelte";
import IconButton from "$lib/components/IconButton.svelte";
import { magnifyIcon } from "$lib/components/icons";
import VirtualTable from "$lib/components/VirtualTable.svelte";
import { getRows, showInBrowser } from "./lib";
import TableCellWithTooltip from "./TableCellWithTooltip.svelte";
import type { SummarizedLogQueues } from "./types";
export let summaries: SummarizedLogQueues[];
export let bottomOffset: number = 0;
$: rows = getRows(summaries);
</script>
<details>
<summary>{tr.importingDetails()}</summary>
<VirtualTable
class="details-table"
itemHeight={50}
itemsCount={rows.length}
bind:bottomOffset
>
<tr slot="headers">
<th>#</th>
<th>{tr.importingStatus()}</th>
<th>{tr.editingFields()}</th>
<th />
</tr>
<svelte:fragment slot="row" let:index>
<tr>
<td class="index-cell">{index + 1}</td>
<TableCellWithTooltip
class="status-cell"
tooltip={rows[index].queue.reason}
>
{rows[index].summary.action}
</TableCellWithTooltip>
<TableCellWithTooltip
class="contents-cell"
tooltip={rows[index].note.fields.join(",")}
>
{rows[index].note.fields.join(",")}
</TableCellWithTooltip>
<td class="search-cell">
<IconButton
class="search-icon"
iconSize={100}
active={false}
disabled={!rows[index].summary.canBrowse}
on:click={() => {
showInBrowser([rows[index].note]);
}}
>
<Icon icon={magnifyIcon} />
</IconButton>
</td>
</tr>
</svelte:fragment>
</VirtualTable>
</details>
<style lang="scss">
:global(.details-table) {
margin: 0 auto;
width: 100%;
:global(.search-icon) {
border: none !important;
background: transparent !important;
}
tr {
height: 50px;
text-align: center;
}
.index-cell {
width: 6em;
}
:global(.status-cell) {
width: 5em;
}
:global(.contents-cell) {
text-align: left;
}
:global(.search-cell) {
width: 4em;
}
}
</style>