2021-03-29 21:05:30 +02:00
|
|
|
<script lang="typescript">
|
2021-03-31 03:34:08 +02:00
|
|
|
import { getContext, onMount, createEventDispatcher } from "svelte";
|
2021-03-30 06:14:00 +02:00
|
|
|
import type { Readable } from "svelte/store";
|
|
|
|
import { disabledKey } from "./contextKeys";
|
|
|
|
|
2021-03-30 18:57:50 +02:00
|
|
|
export let id = "";
|
|
|
|
export let className = "";
|
2021-04-08 16:40:42 +02:00
|
|
|
export let tooltip: string;
|
2021-03-30 18:57:50 +02:00
|
|
|
|
2021-04-01 18:55:34 +02:00
|
|
|
export let onClick: (event: MouseEvent) => void;
|
2021-03-29 23:26:08 +02:00
|
|
|
export let active = false;
|
2021-03-30 06:14:00 +02:00
|
|
|
|
2021-03-31 03:34:08 +02:00
|
|
|
let buttonRef: HTMLButtonElement;
|
|
|
|
|
2021-04-01 18:36:03 +02:00
|
|
|
const disabled = getContext(disabledKey);
|
|
|
|
$: _disabled = $disabled;
|
2021-03-31 03:34:08 +02:00
|
|
|
|
|
|
|
const dispatch = createEventDispatcher();
|
|
|
|
onMount(() => dispatch("mount", { button: buttonRef }));
|
2021-03-29 21:05:30 +02:00
|
|
|
</script>
|
|
|
|
|
|
|
|
<style lang="scss">
|
|
|
|
button {
|
|
|
|
display: inline-block;
|
2021-03-30 18:57:50 +02:00
|
|
|
padding: 0;
|
2021-03-29 21:05:30 +02:00
|
|
|
|
2021-03-29 23:26:08 +02:00
|
|
|
background-color: white;
|
2021-03-29 21:05:30 +02:00
|
|
|
|
2021-03-29 23:02:20 +02:00
|
|
|
&:hover {
|
|
|
|
background-color: #eee;
|
|
|
|
}
|
2021-03-29 21:05:30 +02:00
|
|
|
|
2021-03-29 23:43:48 +02:00
|
|
|
&:active,
|
|
|
|
&.active {
|
2021-03-31 16:24:28 +02:00
|
|
|
box-shadow: inset 0 0 calc(var(--toolbar-size) / 2.5)
|
|
|
|
calc(var(--toolbar-size) / 7.5) rgb(0 0 0 / 30%);
|
2021-03-30 04:38:02 +02:00
|
|
|
border-color: #aaa;
|
|
|
|
}
|
|
|
|
|
|
|
|
&.active:active {
|
|
|
|
box-shadow: none;
|
|
|
|
border-color: var(--border);
|
2021-03-29 21:05:30 +02:00
|
|
|
}
|
2021-03-29 23:26:08 +02:00
|
|
|
|
|
|
|
&[disabled] {
|
|
|
|
opacity: 0.4;
|
2021-03-30 06:14:00 +02:00
|
|
|
cursor: not-allowed;
|
2021-03-29 23:26:08 +02:00
|
|
|
|
|
|
|
&:hover {
|
|
|
|
background-color: white;
|
|
|
|
}
|
|
|
|
|
2021-03-29 23:43:48 +02:00
|
|
|
&:active,
|
|
|
|
&.active {
|
2021-03-29 23:26:08 +02:00
|
|
|
box-shadow: none;
|
|
|
|
}
|
|
|
|
}
|
2021-03-29 21:05:30 +02:00
|
|
|
}
|
2021-03-30 18:57:50 +02:00
|
|
|
|
|
|
|
span {
|
|
|
|
display: inline-block;
|
|
|
|
vertical-align: middle;
|
|
|
|
|
|
|
|
/* constrain icon */
|
2021-03-31 16:24:28 +02:00
|
|
|
width: calc(var(--toolbar-size) - 2px);
|
|
|
|
height: calc(var(--toolbar-size) - 2px);
|
2021-03-30 18:57:50 +02:00
|
|
|
|
|
|
|
& > :global(svg),
|
|
|
|
& > :global(img) {
|
|
|
|
fill: currentColor;
|
|
|
|
vertical-align: unset;
|
|
|
|
width: 100%;
|
|
|
|
height: 100%;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/* for DropdownMenu */
|
|
|
|
:global(.dropdown-toggle)::after {
|
|
|
|
margin-right: 0.25rem;
|
|
|
|
}
|
2021-03-29 21:05:30 +02:00
|
|
|
</style>
|
|
|
|
|
2021-03-29 23:26:08 +02:00
|
|
|
<button
|
2021-03-31 03:34:08 +02:00
|
|
|
bind:this={buttonRef}
|
2021-03-30 18:57:50 +02:00
|
|
|
{id}
|
|
|
|
class={className}
|
2021-04-08 16:40:42 +02:00
|
|
|
title={tooltip}
|
2021-03-29 23:26:08 +02:00
|
|
|
class:active
|
2021-03-30 03:05:21 +02:00
|
|
|
tabindex="-1"
|
2021-04-01 18:36:03 +02:00
|
|
|
disabled={_disabled}
|
2021-04-08 18:57:20 +02:00
|
|
|
{...$$restProps}
|
2021-03-29 23:26:08 +02:00
|
|
|
on:click={onClick}
|
2021-03-29 23:43:48 +02:00
|
|
|
on:mousedown|preventDefault>
|
2021-03-30 18:57:50 +02:00
|
|
|
<span class="p-1"><slot /></span>
|
2021-03-29 21:05:30 +02:00
|
|
|
</button>
|