| <script lang="ts"> |
| import { type Component } from "svelte"; |
| import type { ColorInput } from "tinycolor2"; |
|
|
| let { |
| Icon, |
| label = "", |
| show_label = false, |
| pending = false, |
| size = "small", |
| padded = true, |
| highlight = false, |
| disabled = false, |
| hasPopup = false, |
| color = "var(--block-label-text-color)", |
| transparent = false, |
| background = "var(--background-fill-primary)", |
| offset = 0, |
| label_position = "left", |
| roundedness = "quite", |
| onclick = undefined |
| }: { |
| Icon: Component<any>; |
| label?: string; |
| show_label?: boolean; |
| pending?: boolean; |
| size?: "small" | "large" | "medium"; |
| padded?: boolean; |
| highlight?: boolean; |
| disabled?: boolean; |
| hasPopup?: boolean; |
| color?: string | ColorInput; |
| transparent?: boolean; |
| background?: string; |
| offset?: number; |
| label_position?: "left" | "right"; |
| roundedness?: "quite" | "very"; |
| onclick?: (event: MouseEvent) => void; |
| } = $props(); |
|
|
| let _color = $derived(highlight ? "var(--color-accent)" : color.toString()); |
| </script> |
|
|
| <button |
| {disabled} |
| {onclick} |
| aria-label={label} |
| aria-haspopup={hasPopup} |
| title={label} |
| class:pending |
| class:padded |
| class:highlight |
| class:transparent |
| style:color={!disabled && _color ? _color : "var(--block-label-text-color)"} |
| style:--bg-color={!disabled ? background : "auto"} |
| style:margin-left={offset + "px"} |
| class="{roundedness}-round" |
| > |
| {#if show_label && label_position === "left"} |
| <span style="margin-left: 4px;">{label}</span> |
| {/if} |
| <div |
| class:small={size === "small"} |
| class:large={size === "large"} |
| class:medium={size === "medium"} |
| > |
| <Icon /> |
| </div> |
| {#if show_label && label_position === "right"} |
| <span style="margin-right: 4px;">{label}</span> |
| {/if} |
| </button> |
|
|
| <style> |
| button { |
| display: flex; |
| justify-content: center; |
| align-items: center; |
| gap: 1px; |
| z-index: var(--layer-2); |
| |
| |
| color: var(--block-label-text-color); |
| border: 1px solid transparent; |
| } |
|
|
| .quite-round { |
| border-radius: var(--radius-sm); |
| } |
|
|
| .very-round { |
| border-radius: var(--radius-md); |
| } |
|
|
| button[disabled] { |
| opacity: 0.5; |
| box-shadow: none; |
| } |
|
|
| button[disabled]:hover { |
| cursor: not-allowed; |
| |
| |
| } |
|
|
| .padded { |
| padding: 2px; |
| background: var(--bg-color); |
| box-shadow: var(--shadow-drop); |
| border: 1px solid var(--button-secondary-border-color); |
| } |
|
|
| button:hover, |
| button.highlight { |
| cursor: pointer; |
| color: var(--color-accent); |
| } |
|
|
| .padded:hover { |
| border: 2px solid var(--button-secondary-border-color-hover); |
| padding: 1px; |
| color: var(--block-label-text-color); |
| } |
|
|
| span { |
| padding: 0px 1px; |
| font-size: 10px; |
| } |
|
|
| div { |
| padding: 2px; |
| display: flex; |
| align-items: flex-end; |
| } |
|
|
| .small { |
| width: 14px; |
| height: 14px; |
| } |
|
|
| .medium { |
| width: 20px; |
| height: 20px; |
| } |
|
|
| .large { |
| width: 22px; |
| height: 22px; |
| } |
|
|
| .pending { |
| animation: flash 0.5s infinite; |
| } |
|
|
| @keyframes flash { |
| 0% { |
| opacity: 0.5; |
| } |
| 50% { |
| opacity: 1; |
| } |
| 100% { |
| opacity: 0.5; |
| } |
| } |
|
|
| .transparent { |
| background: transparent; |
| border: none; |
| box-shadow: none; |
| } |
| </style> |
|
|