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-28 13:09:25 +02:00
|
|
|
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
|
|
|
|
2021-04-09 22:02:34 +02:00
|
|
|
export let id: string;
|
2021-04-27 22:35:25 +02:00
|
|
|
let className = "";
|
|
|
|
export { className as class };
|
2021-04-20 03:24:08 +02:00
|
|
|
|
2021-04-27 22:35:25 +02:00
|
|
|
export let tooltip: string | undefined;
|
2021-04-28 13:09:25 +02:00
|
|
|
export let active = false;
|
2021-04-20 03:24:08 +02:00
|
|
|
export let disables = true;
|
2021-04-28 13:09:25 +02:00
|
|
|
|
|
|
|
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() ?? {};
|
|
|
|
|
2021-04-28 13:09:25 +02:00
|
|
|
const dispatch = createEventDispatcher();
|
|
|
|
onMount(() => dispatch("mount", { button: buttonRef }));
|
2021-03-29 14:54:10 +02:00
|
|
|
</script>
|
|
|
|
|
2021-04-28 13:09:25 +02:00
|
|
|
<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}
|
2021-04-28 13:09:25 +02:00
|
|
|
on:click
|
|
|
|
on:mousedown|preventDefault>
|
|
|
|
<span class="p-1"><slot /></span>
|
|
|
|
</button>
|