2021-04-28 02:27:38 +02:00
|
|
|
<!--
|
|
|
|
Copyright: Ankitects Pty Ltd and contributors
|
|
|
|
License: GNU AGPL, version 3 or later; http://www.gnu.org/licenses/agpl.html
|
|
|
|
-->
|
|
|
|
<script lang="typescript">
|
|
|
|
import * as tr from "lib/i18n";
|
|
|
|
|
2021-05-06 01:58:14 +02:00
|
|
|
import ButtonGroup from "components/ButtonGroup.svelte";
|
|
|
|
import ButtonGroupItem from "components/ButtonGroupItem.svelte";
|
2021-04-28 02:27:38 +02:00
|
|
|
import IconButton from "components/IconButton.svelte";
|
|
|
|
import ColorPicker from "components/ColorPicker.svelte";
|
|
|
|
import WithShortcut from "components/WithShortcut.svelte";
|
|
|
|
|
|
|
|
import { squareFillIcon } from "./icons";
|
|
|
|
|
|
|
|
import "./color.css";
|
|
|
|
|
|
|
|
const foregroundColorKeyword = "--foreground-color";
|
2021-04-28 22:32:12 +02:00
|
|
|
let color = "black";
|
2021-04-28 02:27:38 +02:00
|
|
|
|
2021-04-28 22:32:12 +02:00
|
|
|
$: {
|
2021-04-28 02:27:38 +02:00
|
|
|
document.documentElement.style.setProperty(foregroundColorKeyword, color);
|
|
|
|
}
|
|
|
|
|
2021-04-28 22:32:12 +02:00
|
|
|
function wrapWithForecolor(): void {
|
2021-04-28 02:27:38 +02:00
|
|
|
document.execCommand("forecolor", false, color);
|
|
|
|
}
|
|
|
|
|
|
|
|
function setWithCurrentColor({ currentTarget }: Event): void {
|
2021-04-28 22:32:12 +02:00
|
|
|
color = (currentTarget as HTMLInputElement).value;
|
2021-04-28 02:27:38 +02:00
|
|
|
}
|
|
|
|
</script>
|
|
|
|
|
|
|
|
<ButtonGroup id="color">
|
2021-05-06 01:58:14 +02:00
|
|
|
<ButtonGroupItem>
|
|
|
|
<WithShortcut shortcut="F7" let:createShortcut let:shortcutLabel>
|
|
|
|
<IconButton
|
|
|
|
class="forecolor"
|
|
|
|
tooltip={`${tr.editingSetForegroundColor} (${shortcutLabel})`}
|
|
|
|
on:click={wrapWithForecolor}
|
|
|
|
on:mount={createShortcut}>
|
|
|
|
{@html squareFillIcon}
|
|
|
|
</IconButton>
|
|
|
|
</WithShortcut>
|
|
|
|
</ButtonGroupItem>
|
|
|
|
|
|
|
|
<ButtonGroupItem>
|
|
|
|
<WithShortcut shortcut="F8" let:createShortcut let:shortcutLabel>
|
|
|
|
<ColorPicker
|
|
|
|
tooltip={`${tr.editingChangeColor()} (${shortcutLabel})`}
|
|
|
|
on:change={setWithCurrentColor}
|
|
|
|
on:mount={createShortcut} />
|
|
|
|
</WithShortcut>
|
|
|
|
</ButtonGroupItem>
|
2021-04-28 02:27:38 +02:00
|
|
|
</ButtonGroup>
|