f2173fddb0
* Allow theme change at runtime and add hook * Save or restore default palette on theme change * Update aqt widget styles on theme change * styling fixes - drop _light_palette, as default_palette serves the same purpose - save default platform theme, and restore it when switching away from nightmode - update macOS light/dark mode on theme switch - fix unreadable menus on Windows * update night-mode classes on theme change This is the easy part - CSS styling that uses standard_css or our css variables should update automatically. The main remaining issue is JS code that sets colors based on the theme at the time it's run - eg the graph code, and the editor. * switch night mode value on toggle * expose current theme via a store; switch graphs to use it https://github.com/ankitects/anki/issues/1471#issuecomment-972402492 * start using currentTheme in editor/components This fixes basic editing - there are still components that need updating. * add simple xcodeproj for code completion * add helper to get currently-active system theme on macOS * fix setCurrentTheme not being immediately available * live update tag color * style().name() doesn't work on Qt5 * automatic theme switching on Windows/Mac * currentTheme -> pageTheme * Replace `nightModeKey` with `pageTheme` Co-authored-by: Damien Elmes <gpg@ankiweb.net>
110 lines
3.1 KiB
Svelte
110 lines
3.1 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 { onMount, onDestroy, getContext } from "svelte";
|
|
import { modalsKey } from "../components/context-keys";
|
|
import { pageTheme } from "../sveltelib/theme";
|
|
import Modal from "bootstrap/js/dist/modal";
|
|
|
|
export let title: string;
|
|
export let prompt: string;
|
|
export let value = "";
|
|
export let onOk: (text: string) => void;
|
|
|
|
export const modalKey: string = Math.random().toString(36).substring(2);
|
|
|
|
const modals = getContext<Map<string, Modal>>(modalsKey);
|
|
|
|
let modalRef: HTMLDivElement;
|
|
let modal: Modal;
|
|
|
|
let inputRef: HTMLInputElement;
|
|
|
|
function onOkClicked(): void {
|
|
onOk(inputRef.value);
|
|
modal.hide();
|
|
value = "";
|
|
}
|
|
|
|
function onShown(): void {
|
|
inputRef.focus();
|
|
}
|
|
|
|
onMount(() => {
|
|
modalRef.addEventListener("shown.bs.modal", onShown);
|
|
modal = new Modal(modalRef);
|
|
modals.set(modalKey, modal);
|
|
});
|
|
|
|
onDestroy(() => {
|
|
modalRef.removeEventListener("shown.bs.modal", onShown);
|
|
});
|
|
</script>
|
|
|
|
<div
|
|
bind:this={modalRef}
|
|
class="modal fade"
|
|
tabindex="-1"
|
|
aria-labelledby="modalLabel"
|
|
aria-hidden="true"
|
|
>
|
|
<div class="modal-dialog">
|
|
<div class="modal-content" class:default-colors={$pageTheme.isDark}>
|
|
<div class="modal-header">
|
|
<h5 class="modal-title" id="modalLabel">{title}</h5>
|
|
<button
|
|
type="button"
|
|
class="btn-close"
|
|
class:invert={$pageTheme.isDark}
|
|
data-bs-dismiss="modal"
|
|
aria-label="Close"
|
|
/>
|
|
</div>
|
|
<div class="modal-body">
|
|
<form on:submit|preventDefault={onOkClicked}>
|
|
<div class="mb-3">
|
|
<label for="prompt-input" class="col-form-label"
|
|
>{prompt}:</label
|
|
>
|
|
<input
|
|
id="prompt-input"
|
|
bind:this={inputRef}
|
|
type="text"
|
|
class:nightMode={$pageTheme.isDark}
|
|
class="form-control"
|
|
bind:value
|
|
/>
|
|
</div>
|
|
</form>
|
|
</div>
|
|
<div class="modal-footer">
|
|
<button type="button" class="btn btn-secondary" data-bs-dismiss="modal"
|
|
>Cancel</button
|
|
>
|
|
<button type="button" class="btn btn-primary" on:click={onOkClicked}
|
|
>OK</button
|
|
>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
|
|
<style lang="scss">
|
|
@use "sass/night-mode" as nightmode;
|
|
|
|
.nightMode {
|
|
@include nightmode.input;
|
|
}
|
|
|
|
.default-colors {
|
|
background-color: var(--window-bg);
|
|
color: var(--text-fg);
|
|
}
|
|
|
|
.invert {
|
|
filter: invert(1) grayscale(100%) brightness(200%);
|
|
}
|
|
</style>
|