135de7f9ed
* setup mask editor in note editor - add image on mask button click (only one time) - show hide add button for io on notetype change - hide field in io notetype - icon for toggle and replace image * add update io notes * Tidy up i/o notetype check and fix error - Make it a method on editor - Use .get(), because the setting doesn't exist on older notetypes - Pass the bool value into the ts code, instead of the enum * reset io page after adding * remove adjust function & add target for mask editor * handle browse mode & merged sidetoolbar and toptoolbar to toolbar * fix: shape, button click in browse, dropdown menu * add arrow to add button * store for handling visiblity of maskeditor - remove update button in edit mode, implement autoupdate * update var name * simplify store
49 lines
1.4 KiB
Svelte
49 lines
1.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 ButtonGroup from "components/ButtonGroup.svelte";
|
|
import DynamicallySlottable from "components/DynamicallySlottable.svelte";
|
|
import IconButton from "components/IconButton.svelte";
|
|
import { ioMaskEditorVisible } from "image-occlusion/store";
|
|
|
|
import ButtonGroupItem, {
|
|
createProps,
|
|
setSlotHostContext,
|
|
updatePropsList,
|
|
} from "../../components/ButtonGroupItem.svelte";
|
|
import { mdiViewDashboard } from "./icons";
|
|
|
|
export let api = {};
|
|
</script>
|
|
|
|
<ButtonGroup>
|
|
<DynamicallySlottable
|
|
slotHost={ButtonGroupItem}
|
|
{createProps}
|
|
{updatePropsList}
|
|
{setSlotHostContext}
|
|
{api}
|
|
>
|
|
<ButtonGroupItem>
|
|
<IconButton
|
|
id="io-mask-btn"
|
|
class={$ioMaskEditorVisible ? "active-io-btn" : ""}
|
|
on:click={() => {
|
|
$ioMaskEditorVisible = !$ioMaskEditorVisible;
|
|
}}
|
|
>
|
|
{@html mdiViewDashboard}
|
|
</IconButton>
|
|
</ButtonGroupItem>
|
|
</DynamicallySlottable>
|
|
</ButtonGroup>
|
|
|
|
<style>
|
|
:global(.active-io-btn) {
|
|
background: var(--button-primary-bg) !important;
|
|
color: white !important;
|
|
}
|
|
</style>
|