anki/ts/components/IconButton.svelte

97 lines
2.6 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">
2021-04-30 20:01:40 +02:00
import { getContext, onMount, createEventDispatcher } from "svelte";
import { nightModeKey, dropdownKey } from "./context-keys";
2021-05-06 03:37:21 +02:00
import type { DropdownProps } from "./dropdown";
2021-03-29 14:54:10 +02:00
export let id: string | undefined = undefined;
let className = "";
export { className as class };
export let tooltip: string | undefined = undefined;
export let active = false;
2021-06-18 00:27:07 +02:00
export let disabled = false;
export let tabbable = false;
export let iconSize: number = 75;
2021-05-31 00:17:06 +02:00
export let widthMultiplier: number = 1;
2021-07-21 16:48:02 +02:00
export let flipX: boolean = false;
2021-05-31 00:17:06 +02:00
let buttonRef: HTMLButtonElement;
const nightMode = getContext<boolean>(nightModeKey);
2021-05-06 03:37:21 +02:00
const dropdownProps = getContext<DropdownProps>(dropdownKey) ?? { dropdown: false };
2021-04-28 22:15:24 +02:00
const dispatch = createEventDispatcher();
onMount(() => dispatch("mount", { button: buttonRef }));
2021-03-29 14:54:10 +02:00
</script>
<button
bind:this={buttonRef}
{id}
class={`btn ${className}`}
class:active
class:dropdown-toggle={dropdownProps.dropdown}
class:btn-day={!nightMode}
class:btn-night={nightMode}
style={`--icon-size: ${iconSize}%`}
title={tooltip}
{...dropdownProps}
2021-06-18 00:27:07 +02:00
{disabled}
tabindex={tabbable ? 0 : -1}
on:click
on:mousedown|preventDefault
>
2021-07-21 16:48:02 +02:00
<span class:flip-x={flipX} style={`--width-multiplier: ${widthMultiplier};`}>
<slot />
</span>
</button>
<style lang="scss">
2021-08-17 22:07:28 +02:00
@use "button-mixins" as button;
button {
padding: 0;
2021-05-06 20:29:55 +02:00
@include button.btn-border-radius;
}
@include button.btn-day;
@include button.btn-night;
span {
display: inline-block;
position: relative;
vertical-align: middle;
/* constrain icon */
2021-05-31 00:17:06 +02:00
width: calc((var(--buttons-size) - 2px) * var(--width-multiplier));
height: calc(var(--buttons-size) - 2px);
& > :global(svg),
& > :global(img) {
position: absolute;
width: var(--icon-size);
height: var(--icon-size);
top: calc((100% - var(--icon-size)) / 2);
bottom: calc((100% - var(--icon-size)) / 2);
left: calc((100% - var(--icon-size)) / 2);
right: calc((100% - var(--icon-size)) / 2);
fill: currentColor;
vertical-align: unset;
}
2021-07-21 16:48:02 +02:00
&.flip-x > :global(svg),
&.flip-x > :global(img) {
transform: scaleX(-1);
}
}
.dropdown-toggle::after {
margin-right: 0.25rem;
}
</style>