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-25 23:32:23 +01:00
|
|
|
<script lang="typescript">
|
2021-04-15 02:32:58 +02:00
|
|
|
import type { Readable } from "svelte/store";
|
2021-03-30 18:57:50 +02:00
|
|
|
import { onMount, createEventDispatcher, getContext } from "svelte";
|
2021-04-14 16:26:23 +02:00
|
|
|
import { disabledKey, nightModeKey } from "./contextKeys";
|
2021-03-30 18:57:50 +02:00
|
|
|
|
2021-04-09 22:02:34 +02:00
|
|
|
export let id: string;
|
2021-03-30 18:57:50 +02:00
|
|
|
export let className = "";
|
|
|
|
|
2021-03-29 14:54:10 +02:00
|
|
|
export let label: string;
|
2021-04-08 16:40:42 +02:00
|
|
|
export let tooltip: string;
|
2021-04-01 18:55:34 +02:00
|
|
|
export let onClick: (event: MouseEvent) => void;
|
2021-03-31 03:34:08 +02:00
|
|
|
export let disables = true;
|
2021-04-09 22:02:34 +02:00
|
|
|
export let dropdownToggle = false;
|
|
|
|
|
|
|
|
$: extraProps = dropdownToggle
|
|
|
|
? {
|
|
|
|
"data-bs-toggle": "dropdown",
|
|
|
|
"aria-expanded": "false",
|
|
|
|
}
|
|
|
|
: {};
|
2021-03-30 18:57:50 +02:00
|
|
|
|
|
|
|
let buttonRef: HTMLButtonElement;
|
|
|
|
|
|
|
|
function extendClassName(className: string): string {
|
2021-04-14 16:26:23 +02:00
|
|
|
return `btn ${className}`;
|
2021-03-30 18:57:50 +02:00
|
|
|
}
|
|
|
|
|
2021-04-15 02:32:58 +02:00
|
|
|
const disabled = getContext<Readable<boolean>>(disabledKey);
|
2021-04-01 18:36:03 +02:00
|
|
|
$: _disabled = disables && $disabled;
|
2021-04-14 16:26:23 +02:00
|
|
|
|
2021-04-15 02:32:58 +02:00
|
|
|
const nightMode = getContext<boolean>(nightModeKey);
|
2021-04-14 16:26:23 +02:00
|
|
|
|
|
|
|
const dispatch = createEventDispatcher();
|
|
|
|
onMount(() => dispatch("mount", { button: buttonRef }));
|
2021-03-25 23:32:23 +01:00
|
|
|
</script>
|
2021-03-29 14:54:10 +02:00
|
|
|
|
2021-03-25 23:32:23 +01:00
|
|
|
<style lang="scss">
|
2021-04-14 15:45:14 +02:00
|
|
|
@use "ts/sass/button_mixins" as button;
|
|
|
|
|
2021-03-25 23:32:23 +01:00
|
|
|
button {
|
2021-04-14 15:45:14 +02:00
|
|
|
padding: 0 calc(var(--toolbar-size) / 3);
|
2021-03-31 16:24:28 +02:00
|
|
|
font-size: calc(var(--toolbar-size) / 2.3);
|
2021-04-14 15:45:14 +02:00
|
|
|
width: auto;
|
|
|
|
height: var(--toolbar-size);
|
2021-03-25 23:32:23 +01:00
|
|
|
}
|
2021-04-14 20:06:35 +02:00
|
|
|
|
2021-04-15 18:35:46 +02:00
|
|
|
@include button.btn-day;
|
|
|
|
@include button.btn-night;
|
2021-03-25 23:32:23 +01:00
|
|
|
</style>
|
|
|
|
|
2021-03-30 18:57:50 +02:00
|
|
|
<button
|
|
|
|
bind:this={buttonRef}
|
|
|
|
{id}
|
|
|
|
class={extendClassName(className)}
|
2021-04-09 22:02:34 +02:00
|
|
|
class:dropdown-toggle={dropdownToggle}
|
2021-04-15 18:35:46 +02:00
|
|
|
class:btn-day={!nightMode}
|
|
|
|
class:btn-night={nightMode}
|
2021-04-09 22:02:34 +02:00
|
|
|
tabindex="-1"
|
|
|
|
disabled={_disabled}
|
2021-04-08 18:57:20 +02:00
|
|
|
title={tooltip}
|
2021-04-09 22:02:34 +02:00
|
|
|
{...extraProps}
|
2021-03-30 18:57:50 +02:00
|
|
|
on:click={onClick}
|
2021-04-08 18:57:20 +02:00
|
|
|
on:mousedown|preventDefault>
|
2021-03-30 18:57:50 +02:00
|
|
|
{label}
|
|
|
|
</button>
|