mirror of
https://github.com/ankitects/anki.git
synced 2025-11-11 23:27:12 -05:00
94 lines
2.4 KiB
Svelte
94 lines
2.4 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, onMount } from "svelte";
|
|
|
|
import { registerShortcut } from "../lib/shortcuts";
|
|
import { context as editorFieldContext } from "./EditorField.svelte";
|
|
|
|
const editorField = editorFieldContext.get();
|
|
const keyCombination = "Control+Shift+X";
|
|
const dispatch = createEventDispatcher();
|
|
|
|
export let off = false;
|
|
|
|
function toggle() {
|
|
dispatch("toggle");
|
|
}
|
|
|
|
function shortcut(target: HTMLElement): () => void {
|
|
return registerShortcut(toggle, keyCombination, { target });
|
|
}
|
|
|
|
onMount(() => editorField.element.then(shortcut));
|
|
let width = 0;
|
|
</script>
|
|
|
|
<div
|
|
class="clickable"
|
|
style="--width: {width}px"
|
|
on:click|stopPropagation={toggle}
|
|
bind:clientWidth={width}
|
|
>
|
|
<span class:off class:on={!off} class="plain-text-badge" class:highlighted={!off} />
|
|
</div>
|
|
|
|
<style lang="scss">
|
|
.clickable {
|
|
right: calc(50% - var(--width) / 2);
|
|
position: absolute;
|
|
text-align: center;
|
|
bottom: -16px;
|
|
z-index: 3;
|
|
width: 32px;
|
|
height: 16px;
|
|
cursor: pointer;
|
|
}
|
|
.plain-text-badge {
|
|
left: 12px;
|
|
position: absolute;
|
|
opacity: 0;
|
|
width: 8px;
|
|
height: 8px;
|
|
transform: rotate(-45deg);
|
|
|
|
transition: bottom 0.2s ease-out;
|
|
&.on {
|
|
bottom: 0px;
|
|
background: var(--code-bg);
|
|
border-right: 1px solid var(--border);
|
|
border-top: 1px solid var(--border);
|
|
}
|
|
&.off {
|
|
bottom: 10px;
|
|
background: var(--frame-bg);
|
|
border-left: 1px solid var(--border);
|
|
border-bottom: 1px solid var(--border);
|
|
}
|
|
|
|
&::before,
|
|
&::after {
|
|
width: 10px;
|
|
height: 10px;
|
|
}
|
|
}
|
|
:global(.editor-field) {
|
|
&:hover,
|
|
&:focus-within {
|
|
& .plain-text-badge {
|
|
opacity: 1;
|
|
transition: opacity 0.2s ease-in, bottom 0.2s ease-out;
|
|
&.on,
|
|
&.off {
|
|
bottom: 5px;
|
|
}
|
|
}
|
|
}
|
|
&:focus-within .plain-text-badge.off {
|
|
border-width: 2px;
|
|
border-color: var(--focus-border);
|
|
}
|
|
}
|
|
</style>
|