anki/ts/components/IconButton.svelte

80 lines
2.0 KiB
Svelte
Raw Normal View History

2021-04-15 15:59:52 +02:00
<!--
Copyright: Ankitects Pty Ltd and contributors
License: GNU AGPL, version 3 or later; http://www.gnu.org/licenses/agpl.html
-->
2021-03-29 14:54:10 +02:00
<script lang="typescript">
import type { Readable } from "svelte/store";
2021-04-30 20:01:40 +02:00
import { getContext, onMount, createEventDispatcher } from "svelte";
2021-04-28 22:15:24 +02:00
import { disabledKey, nightModeKey, dropdownKey } from "./contextKeys";
2021-03-29 14:54:10 +02:00
export let id: string;
let className = "";
export { className as class };
export let tooltip: string | undefined;
export let active = false;
export let disables = true;
let buttonRef: HTMLButtonElement;
const disabled = getContext<Readable<boolean>>(disabledKey);
$: _disabled = disables && $disabled;
const nightMode = getContext<boolean>(nightModeKey);
2021-04-28 22:15:24 +02:00
const dropdown = getContext(dropdownKey);
const dropdownProps = dropdown?.getDropdownTriggerProps() ?? {};
const dispatch = createEventDispatcher();
onMount(() => dispatch("mount", { button: buttonRef }));
2021-03-29 14:54:10 +02:00
</script>
<style lang="scss">
@use "ts/sass/button_mixins" as button;
button {
padding: 0;
}
@include button.btn-day;
@include button.btn-night;
span {
display: inline-block;
vertical-align: middle;
/* constrain icon */
width: calc(var(--toolbar-size) - 2px);
height: calc(var(--toolbar-size) - 2px);
& > :global(svg),
& > :global(img) {
fill: currentColor;
vertical-align: unset;
width: 100%;
height: 100%;
}
}
.dropdown-toggle::after {
margin-right: 0.25rem;
}
</style>
<button
bind:this={buttonRef}
{id}
class={`btn ${className}`}
class:active
class:btn-day={!nightMode}
class:btn-night={nightMode}
tabindex="-1"
title={tooltip}
disabled={_disabled}
2021-04-28 22:15:24 +02:00
class:dropdown-toggle={Boolean(dropdown)}
{...dropdownProps}
on:click
on:mousedown|preventDefault>
<span class="p-1"><slot /></span>
</button>