mirror of
https://github.com/ankitects/anki.git
synced 2025-09-24 08:46:37 -04:00
137 lines
3.6 KiB
Svelte
137 lines
3.6 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 Modal from "$lib/components/Modal.svelte";
|
|
import { pageTheme } from "$lib/sveltelib/theme";
|
|
import type { HistoryEntry } from "./types";
|
|
import { searchInBrowser } from "@generated/backend";
|
|
|
|
export let history: HistoryEntry[] = [];
|
|
export let modal: Modal;
|
|
|
|
function onEntryClick(entry: HistoryEntry): void {
|
|
searchInBrowser({
|
|
filter: {
|
|
case: "nids",
|
|
value: { ids: [entry.noteId] },
|
|
},
|
|
});
|
|
modal.hide();
|
|
}
|
|
</script>
|
|
|
|
<Modal bind:this={modal}>
|
|
<div slot="header" class="modal-header">
|
|
<h5 class="modal-title" id="modalLabel">{tr.addingHistory()}</h5>
|
|
<button
|
|
type="button"
|
|
class="btn-close"
|
|
data-bs-dismiss="modal"
|
|
aria-label="Close"
|
|
></button>
|
|
</div>
|
|
<div slot="body" class="modal-body" class:nightMode={$pageTheme.isDark}>
|
|
<ul class="history-list">
|
|
{#each history as entry}
|
|
<li>
|
|
<button
|
|
type="button"
|
|
class="history-entry"
|
|
on:click={() => onEntryClick(entry)}
|
|
>
|
|
{entry.text}
|
|
</button>
|
|
</li>
|
|
{/each}
|
|
</ul>
|
|
</div>
|
|
<div slot="footer" class="modal-footer">
|
|
<button type="button" class="btn btn-secondary" on:click={modal.cancelHandler}>
|
|
Cancel
|
|
</button>
|
|
</div>
|
|
</Modal>
|
|
|
|
<style lang="scss">
|
|
.history-list {
|
|
list-style: none;
|
|
padding: 0;
|
|
margin: 0;
|
|
max-height: 400px;
|
|
overflow-y: auto;
|
|
}
|
|
|
|
.history-list li {
|
|
margin-bottom: 8px;
|
|
}
|
|
|
|
.history-list li:last-child {
|
|
margin-bottom: 0;
|
|
}
|
|
|
|
.history-entry {
|
|
display: block;
|
|
width: 100%;
|
|
padding: 12px 16px;
|
|
background-color: var(--canvas-elevated);
|
|
border: 1px solid var(--border);
|
|
border-radius: 6px;
|
|
transition: all 0.2s ease;
|
|
font-size: 14px;
|
|
line-height: 1.4;
|
|
word-break: break-word;
|
|
text-align: left;
|
|
color: var(--fg);
|
|
text-decoration: none;
|
|
cursor: pointer;
|
|
position: relative;
|
|
}
|
|
|
|
.history-entry::after {
|
|
content: "";
|
|
position: absolute;
|
|
bottom: 8px;
|
|
left: 16px;
|
|
right: 16px;
|
|
height: 1px;
|
|
background-color: var(--link-color);
|
|
opacity: 0;
|
|
transition: opacity 0.2s ease;
|
|
}
|
|
|
|
.history-entry:hover {
|
|
background-color: var(--canvas-elevated-hover);
|
|
border-color: var(--border-strong);
|
|
transform: translateY(-1px);
|
|
box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
|
|
color: var(--link-color);
|
|
}
|
|
|
|
.history-entry:hover::after {
|
|
opacity: 0.6;
|
|
}
|
|
|
|
.history-entry:active {
|
|
transform: translateY(0px);
|
|
box-shadow: 0 1px 4px rgba(0, 0, 0, 0.1);
|
|
}
|
|
|
|
.history-entry:focus {
|
|
outline: 2px solid var(--link-color);
|
|
outline-offset: 2px;
|
|
}
|
|
|
|
.nightMode .history-entry {
|
|
background-color: var(--canvas-elevated);
|
|
border-color: var(--border, rgba(255, 255, 255, 0.15));
|
|
color: var(--fg);
|
|
}
|
|
|
|
.nightMode .history-entry:hover {
|
|
border-color: var(--border-strong, rgba(255, 255, 255, 0.25));
|
|
color: var(--link-color);
|
|
}
|
|
</style>
|