anki/ts/editor/ColorButtons.svelte

115 lines
4.4 KiB
Svelte
Raw Normal View History

<!--
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";
import ButtonGroup from "components/ButtonGroup.svelte";
import ButtonGroupItem from "components/ButtonGroupItem.svelte";
import IconButton from "components/IconButton.svelte";
2021-05-30 22:58:40 +02:00
import ColorPicker from "components/ColorPicker.svelte";
import WithShortcut from "components/WithShortcut.svelte";
2021-05-30 21:44:05 +02:00
import WithColorHelper from "./WithColorHelper.svelte";
2021-06-18 01:44:15 +02:00
import OnlyEditable from "./OnlyEditable.svelte";
import { bridgeCommand } from "lib/bridgecommand";
2021-05-31 00:17:06 +02:00
import { textColorIcon, highlightColorIcon, arrowIcon } from "./icons";
2021-05-06 02:49:59 +02:00
import { appendInParentheses } from "./helpers";
export let api = {};
export let textColor: string;
export let highlightColor: string;
$: forecolorWrap = wrapWithForecolor(textColor);
$: backcolorWrap = wrapWithBackcolor(highlightColor);
2021-05-30 21:44:05 +02:00
const wrapWithForecolor = (color: string) => () => {
document.execCommand("forecolor", false, color);
2021-05-30 22:58:40 +02:00
};
2021-05-30 21:44:05 +02:00
const wrapWithBackcolor = (color: string) => () => {
document.execCommand("backcolor", false, color);
2021-05-30 22:58:40 +02:00
};
</script>
<ButtonGroup {api}>
<WithColorHelper color={textColor} let:colorHelperIcon let:setColor>
2021-06-18 01:44:15 +02:00
<OnlyEditable let:disabled>
<ButtonGroupItem>
<WithShortcut shortcut={"F7"} let:createShortcut let:shortcutLabel>
<IconButton
tooltip={appendInParentheses(
tr.editingSetTextColor(),
2021-06-18 01:44:15 +02:00
shortcutLabel
)}
{disabled}
on:click={forecolorWrap}
on:mount={(event) => createShortcut(event.detail.button)}
2021-06-18 01:44:15 +02:00
>
{@html textColorIcon}
{@html colorHelperIcon}
</IconButton>
</WithShortcut>
</ButtonGroupItem>
<ButtonGroupItem>
<WithShortcut shortcut={"F8"} let:createShortcut let:shortcutLabel>
<IconButton
tooltip={appendInParentheses(
tr.editingChangeColor(),
shortcutLabel
)}
{disabled}
widthMultiplier={0.5}
>
{@html arrowIcon}
<ColorPicker
on:change={(event) => {
const textColor = setColor(event);
bridgeCommand(`lastTextColor:${textColor}`);
forecolorWrap = wrapWithForecolor(setColor(event));
forecolorWrap();
}}
on:mount={(event) => createShortcut(event.detail.input)}
/>
2021-06-18 01:44:15 +02:00
</IconButton>
</WithShortcut>
</ButtonGroupItem>
</OnlyEditable>
</WithColorHelper>
<WithColorHelper color={highlightColor} let:colorHelperIcon let:setColor>
2021-06-18 01:44:15 +02:00
<OnlyEditable let:disabled>
<ButtonGroupItem>
<IconButton
tooltip={tr.editingSetTextHighlightColor()}
{disabled}
on:click={backcolorWrap}
>
2021-06-18 01:44:15 +02:00
{@html highlightColorIcon}
2021-05-30 21:44:05 +02:00
{@html colorHelperIcon}
</IconButton>
2021-06-18 01:44:15 +02:00
</ButtonGroupItem>
2021-05-30 22:58:40 +02:00
2021-06-18 01:44:15 +02:00
<ButtonGroupItem>
2021-05-30 22:58:40 +02:00
<IconButton
2021-06-18 01:44:15 +02:00
tooltip={tr.editingChangeColor()}
2021-05-31 00:17:06 +02:00
widthMultiplier={0.5}
2021-06-18 01:44:15 +02:00
{disabled}
2021-05-30 22:58:40 +02:00
>
2021-05-31 00:17:06 +02:00
{@html arrowIcon}
<ColorPicker
on:change={(event) => {
const highlightColor = setColor(event);
bridgeCommand(`lastHighlightColor:${highlightColor}`);
backcolorWrap = wrapWithBackcolor(highlightColor);
backcolorWrap();
}}
/>
2021-05-30 22:58:40 +02:00
</IconButton>
2021-06-18 01:44:15 +02:00
</ButtonGroupItem>
</OnlyEditable>
2021-05-30 21:44:05 +02:00
</WithColorHelper>
</ButtonGroup>