anki/ts/editor/HandleControl.svelte
RumovZ f2173fddb0
Live theme changes (#1497)
* 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>
2021-11-25 07:17:41 +10:00

143 lines
3.3 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 { createEventDispatcher } from "svelte";
import { pageTheme } from "../sveltelib/theme";
export let offsetX = 0;
export let offsetY = 0;
export let active = false;
export let activeSize = 5;
const dispatch = createEventDispatcher();
const onPointerdown =
(north: boolean, west: boolean) =>
(event: PointerEvent): void => {
dispatch("pointerclick", { north, west, originalEvent: event });
};
</script>
<div
class="d-contents"
style="--offsetX: {offsetX}px; --offsetY: {offsetY}px; --activeSize: {activeSize}px;"
>
<div
class:nightMode={$pageTheme.isDark}
class="bordered"
on:mousedown|preventDefault
/>
<div
class:nightMode={$pageTheme.isDark}
class:active
class="control nw"
on:mousedown|preventDefault
on:pointerdown={onPointerdown(true, true)}
on:pointermove
/>
<div
class:nightMode={$pageTheme.isDark}
class:active
class="control ne"
on:mousedown|preventDefault
on:pointerdown={onPointerdown(true, false)}
on:pointermove
/>
<div
class:nightMode={$pageTheme.isDark}
class:active
class="control sw"
on:mousedown|preventDefault
on:pointerdown={onPointerdown(false, true)}
on:pointermove
/>
<div
class:nightMode={$pageTheme.isDark}
class:active
class="control se"
on:mousedown|preventDefault
on:pointerdown={onPointerdown(false, false)}
on:pointermove
/>
</div>
<style lang="scss">
.d-contents {
display: contents;
}
.bordered {
position: absolute;
top: calc(0px - var(--activeSize) + var(--offsetY));
bottom: calc(0px - var(--activeSize) + var(--offsetY));
left: calc(0px - var(--activeSize) + var(--offsetX));
right: calc(0px - var(--activeSize) + var(--offsetX));
pointer-events: none;
border: 2px dashed black;
&.nightMode {
border-color: white;
}
}
.control {
position: absolute;
width: var(--activeSize);
height: var(--activeSize);
&.active {
background-color: black;
}
&.nightMode {
border-color: white;
&.active {
background-color: white;
}
}
&.nw {
top: calc(0px - var(--offsetY));
left: calc(0px - var(--offsetX));
&.active {
cursor: nw-resize;
}
}
&.ne {
top: calc(0px - var(--offsetY));
right: calc(0px - var(--offsetX));
&.active {
cursor: ne-resize;
}
}
&.sw {
bottom: calc(0px - var(--offsetY));
left: calc(0px - var(--offsetX));
&.active {
cursor: sw-resize;
}
}
&.se {
bottom: calc(0px - var(--offsetY));
right: calc(0px - var(--offsetX));
&.active {
cursor: se-resize;
}
}
}
</style>