mirror of
https://github.com/GraphiteEditor/Graphite.git
synced 2026-09-23 10:38:11 +08:00
* Fix gamma correction with HTML-based editable Text tool text * Migrate simple, undecorated classes to types * Remove TupleToVec2 transformation * Remove @Transform from tooltips * Cleanup: replace value.toString() with String(value) everywhere * Convert documentId from string to bigint * Migrate the rest of the easy @Transform/@Type decorations * Migrate FillChoice * Migrate WidgetDiffUpdate * Migrate WidgetInstance * Migrate away from classes that extend WidgetProps * Remove class-transformer and all classes in messages.ts * Migrate UI layout passing * Remove dead code * Remove unnecessary export and readonly prefixes * Remove HSVA type * Break out Color, Gradient, and FillChoice functions into a utility-functions file * Move widget helper functions from messages.ts into a new utility-functions file; restructure type imports * Reduce internal type defs * Rename JsMessage to FrontendMessage * Code review fixes * Fix other usages * Tidying up
149 lines
3.4 KiB
Svelte
149 lines
3.4 KiB
Svelte
<script lang="ts">
|
|
import { createEventDispatcher } from "svelte";
|
|
|
|
import type { RadioEntryData } from "@graphite/messages";
|
|
|
|
import LayoutRow from "@graphite/components/layout/LayoutRow.svelte";
|
|
import IconLabel from "@graphite/components/widgets/labels/IconLabel.svelte";
|
|
import TextLabel from "@graphite/components/widgets/labels/TextLabel.svelte";
|
|
|
|
const dispatch = createEventDispatcher<{ selectedIndex: number }>();
|
|
|
|
// Content
|
|
export let selectedIndex: number | undefined = undefined;
|
|
export let disabled = false;
|
|
// Children
|
|
export let entries: RadioEntryData[];
|
|
// Styling
|
|
export let narrow = false;
|
|
// Sizing
|
|
export let minWidth = 0;
|
|
|
|
$: mixed = selectedIndex === undefined && !disabled;
|
|
|
|
function handleEntryClick(radioEntryData: RadioEntryData) {
|
|
const index = entries.indexOf(radioEntryData);
|
|
dispatch("selectedIndex", index);
|
|
}
|
|
</script>
|
|
|
|
<LayoutRow class="radio-input" classes={{ disabled, narrow, mixed }} styles={{ ...(minWidth > 0 ? { "min-width": `${minWidth}px` } : {}) }}>
|
|
{#each entries as entry, index}
|
|
<button
|
|
class:active={!mixed ? index === selectedIndex : undefined}
|
|
on:click={() => handleEntryClick(entry)}
|
|
data-tooltip-label={entry.tooltipLabel}
|
|
data-tooltip-description={entry.tooltipDescription}
|
|
data-tooltip-shortcut={entry.tooltipShortcut?.shortcut ? JSON.stringify(entry.tooltipShortcut.shortcut) : undefined}
|
|
tabindex={index === selectedIndex ? -1 : 0}
|
|
{disabled}
|
|
>
|
|
{#if entry.icon}
|
|
<IconLabel icon={entry.icon} />
|
|
{/if}
|
|
{#if entry.label}
|
|
<TextLabel>{entry.label}</TextLabel>
|
|
{/if}
|
|
</button>
|
|
{/each}
|
|
</LayoutRow>
|
|
|
|
<style lang="scss" global>
|
|
.radio-input {
|
|
background: var(--color-4-dimgray);
|
|
border-radius: 2px;
|
|
--widget-height: 24px;
|
|
height: var(--widget-height);
|
|
|
|
button {
|
|
background: var(--color-4-dimgray);
|
|
fill: var(--color-e-nearwhite);
|
|
border-radius: 2px;
|
|
height: 20px;
|
|
padding: 0;
|
|
margin: 2px 1px;
|
|
border: none;
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
// `min-width: fit-content` and `flex: 1 1 0` together allow us to occupy space such that we're always at least the content width,
|
|
// but if the container is set wider, we distribute the space evenly (so buttons with short and long labels would have equal widths).
|
|
min-width: fit-content;
|
|
flex: 1 1 0;
|
|
|
|
&:first-of-type {
|
|
margin-left: 2px;
|
|
}
|
|
|
|
&:last-of-type {
|
|
margin-right: 2px;
|
|
}
|
|
|
|
&.active {
|
|
background: var(--color-e-nearwhite);
|
|
color: var(--color-2-mildblack);
|
|
|
|
svg {
|
|
fill: var(--color-2-mildblack);
|
|
}
|
|
}
|
|
|
|
.icon-label {
|
|
margin: 2px;
|
|
|
|
+ .text-label {
|
|
margin-left: 0;
|
|
}
|
|
}
|
|
|
|
.text-label {
|
|
margin: 0 8px;
|
|
overflow: hidden;
|
|
flex: 0 0 auto;
|
|
}
|
|
}
|
|
|
|
&:not(.disabled) button:not(.active):hover {
|
|
background: var(--color-6-lowergray);
|
|
color: var(--color-f-white);
|
|
|
|
svg {
|
|
fill: var(--color-f-white);
|
|
}
|
|
}
|
|
|
|
&.disabled button {
|
|
color: var(--color-8-uppergray);
|
|
|
|
svg {
|
|
fill: var(--color-8-uppergray);
|
|
}
|
|
|
|
&.active {
|
|
background: var(--color-8-uppergray);
|
|
color: var(--color-2-mildblack);
|
|
|
|
svg {
|
|
fill: var(--color-2-mildblack);
|
|
}
|
|
}
|
|
}
|
|
|
|
&.narrow.narrow {
|
|
--widget-height: 20px;
|
|
height: var(--widget-height);
|
|
|
|
button {
|
|
height: 16px;
|
|
}
|
|
}
|
|
|
|
&.mixed {
|
|
button:not(:hover),
|
|
&.disabled button:hover {
|
|
background: var(--color-5-dullgray);
|
|
}
|
|
}
|
|
}
|
|
</style>
|