Files
Graphite/frontend/src/components/widgets/inputs/SpectrumInput.svelte
Keavon Chambers 2baf9a8192 New nodes: 'Gradient Reverse', 'Gradient Shift', and 'Gradient Stretch' nodes for rearranging a ramp's stops (#4424)
* New nodes: 'Gradient Reverse', 'Gradient Shift', and 'Gradient Stretch' nodes for rearranging a ramp's stops

* Clip a lone out-of-range stop into the bake, and correct the docs that still promised edge-held stops
2026-09-14 12:58:51 +02:00

606 lines
21 KiB
Svelte

<script lang="ts">
import { createEventDispatcher, onMount, onDestroy } from "svelte";
import { preventEscapeClosingParentFloatingMenu } from "/src/components/layout/FloatingMenu.svelte";
import LayoutCol from "/src/components/layout/LayoutCol.svelte";
import LayoutRow from "/src/components/layout/LayoutRow.svelte";
import type { GradientInterpolation, SpectrumInputUpdate, SpectrumMarker, SpectrumSample } from "/wrapper/pkg/graphite_wasm_wrapper";
const BUTTON_LEFT = 0;
const BUTTON_RIGHT = 2;
const dispatch = createEventDispatcher<{ update: SpectrumInputUpdate; dragging: boolean }>();
// Document-unique `id` for this instance's SVG gradient, referenced by its `url(#...)`
const gradientId = `spectrum-input-gradient-${String(Math.random()).substring(2)}`;
export let trackSamples: SpectrumSample[];
export let trackStartCSS: string;
export let trackEndCSS: string;
export let trackCyclic = false;
export let trackInterpolation: GradientInterpolation = "Linear";
export let markers: SpectrumMarker[];
export let activeMarkerIndex: number | undefined = 0;
export let activeMarkerIsMidpoint = false;
export let showMidpoints = true;
export let allowInsert = true;
export let allowDelete = true;
export let allowReorder = true;
export let narrow = false;
export let disabled = false;
// Reference to the marker track DOM element so we can convert pointer coordinates to a 0..1 position along the track.
let markerTrackElement: LayoutRow | undefined = undefined;
// Drag state — only TS-local; Rust owns authoritative marker data.
// Position the dragged marker (or midpoint) had at drag start, restored if the drag is cancelled.
let dragRestorePosition: number | undefined = undefined;
// True if this drag began with an insertion (so cancel must delete the inserted marker).
let dragInsertedMarker = false;
// Active marker selection at drag start, restored if the drag is cancelled.
let activeMarkerIndexRestore: number | undefined = undefined;
let activeMarkerIsMidpointRestore = false;
// Tracks whether a midpoint drag has actually moved by at least one frame, to distinguish click-to-select from drag.
let midpointDragged = false;
// Mirrors whether Alt is currently held during the drag (the desired state).
let duplicateRequested = false;
// Mirrors whether a frozen copy currently exists in the gradient (the materialized state).
let duplicateActive = false;
// Set when a key-triggered reconcile inserts/removes the frozen copy, so the next pointer move skips emitting a `MoveMarker`
// that would otherwise race the structural change before Rust has reported the dragged marker's new index.
let skipNextMove = false;
function emit(intent: SpectrumInputUpdate) {
dispatch("update", intent);
}
function setActive(index: number | undefined, isMidpoint: boolean) {
activeMarkerIndex = index;
activeMarkerIsMidpoint = isMidpoint;
emit({ ActiveMarker: { activeMarkerIndex: index, activeMarkerIsMidpoint: isMidpoint } });
}
function pointerPosition(e: MouseEvent, clamp = true): number | undefined {
const rect = markerTrackElement?.div()?.getBoundingClientRect();
if (!rect) return undefined;
const ratio = (e.clientX - rect.left) / rect.width;
return clamp ? Math.max(0, Math.min(1, ratio)) : ratio;
}
function clampToNeighbors(index: number, position: number): number {
const lower = markers[index - 1]?.position ?? 0;
const upper = markers[index + 1]?.position ?? 1;
return Math.max(lower, Math.min(upper, position));
}
function markerPointerDown(e: PointerEvent, index: number) {
if (disabled) return;
if (e.button === BUTTON_LEFT) {
activeMarkerIndexRestore = activeMarkerIndex;
activeMarkerIsMidpointRestore = activeMarkerIsMidpoint;
dragRestorePosition = markers[index].position;
dragInsertedMarker = false;
// Only offer duplication where new stops are allowed. Don't materialize yet: wait for the first move so an Alt-click without a drag leaves no stray copy.
duplicateRequested = allowInsert && e.altKey;
duplicateActive = false;
setActive(index, false);
addEvents();
return;
}
if (e.button === BUTTON_RIGHT && allowDelete) {
emit({ DeleteMarker: { index } });
}
}
function midpointPointerDown(e: PointerEvent, index: number) {
if (disabled) return;
if (e.button !== BUTTON_LEFT) return;
midpointDragged = false;
activeMarkerIndexRestore = activeMarkerIndex;
activeMarkerIsMidpointRestore = activeMarkerIsMidpoint;
dragRestorePosition = markers[index].midpoint;
setActive(index, true);
addEvents();
}
function midpointDoubleClick(index: number) {
if (disabled || midpointDragged) return;
emit({ ResetMidpoint: { index } });
}
function markerDoubleClick(index: number) {
if (disabled) return;
emit({ ResetMarker: { index } });
}
function trackPointerDown(e: PointerEvent) {
if (disabled) return;
if (e.button !== BUTTON_LEFT) return;
if (!allowInsert) return;
const position = pointerPosition(e);
if (position === undefined) return;
// Compute the index this marker will land at after Rust inserts it (matches Rust's `insert_stop` logic).
let insertIndex = markers.findIndex((m) => m.position > position);
if (insertIndex === -1) insertIndex = markers.length;
emit({ InsertMarker: { position } });
activeMarkerIndexRestore = activeMarkerIndex;
activeMarkerIsMidpointRestore = activeMarkerIsMidpoint;
dragRestorePosition = position;
dragInsertedMarker = true;
// A stop being created by this drag can't be duplicated; duplication is only for dragging an existing stop.
duplicateRequested = false;
duplicateActive = false;
// Don't dispatch an `ActiveMarker` here. The Rust handler already updates the active marker in response to `InsertMarker` and a duplicate `ActiveMarker` would race the layout update.
activeMarkerIndex = insertIndex;
activeMarkerIsMidpoint = false;
addEvents();
}
function deleteShortcut(e: KeyboardEvent) {
if (disabled) return;
if (e.key !== "Delete" && e.key !== "Backspace") return;
if (activeMarkerIndex === undefined) return;
stopDrag();
if (activeMarkerIsMidpoint) emit({ ResetMidpoint: { index: activeMarkerIndex } });
else if (allowDelete) emit({ DeleteMarker: { index: activeMarkerIndex } });
}
// Locate the frozen copy left by a duplicate: the non-dragged marker sitting (within epsilon) at the drag's start position.
// Returns undefined if no marker is close enough, so a stale `markers` prop can never delete an unrelated stop.
function findDuplicateAnchorIndex(): number | undefined {
// The frozen copy is inserted at exactly the drag's start position and round-trips through Rust losslessly, so it matches within this tolerance
const DUPLICATE_POSITION_EPSILON = 1e-6;
if (dragRestorePosition === undefined) return undefined;
const startPosition = dragRestorePosition;
let best: number | undefined = undefined;
let bestDistance = DUPLICATE_POSITION_EPSILON;
markers.forEach((marker, index) => {
if (index === activeMarkerIndex) return;
const distance = Math.abs(marker.position - startPosition);
if (distance < bestDistance) {
bestDistance = distance;
best = index;
}
});
return best;
}
// Bring the materialized duplicate state in line with whether Alt is currently held, inserting or removing the frozen copy.
// Returns whether a structural change was emitted, so callers can skip the next move that would race it.
function reconcileDuplicate(): boolean {
if (!allowInsert || activeMarkerIndex === undefined || activeMarkerIsMidpoint) return false;
if (duplicateRequested && !duplicateActive) {
// Drop a frozen copy at the drag's start position. The dragged marker stays active and becomes the duplicate being moved.
if (dragRestorePosition === undefined) return false;
emit({ InsertDuplicate: { index: activeMarkerIndex, position: dragRestorePosition } });
duplicateActive = true;
return true;
} else if (!duplicateRequested && duplicateActive) {
// Remove the frozen copy so only the dragged marker remains, as if it had been dragged all along.
const anchor = findDuplicateAnchorIndex();
if (anchor === undefined) return false;
emit({ RemoveDuplicate: { index: anchor } });
duplicateActive = false;
return true;
}
return false;
}
function moveActiveMarker(e: PointerEvent) {
if (disabled || activeMarkerIndex === undefined) return;
if (e.buttons === 0) {
endDrag();
return;
}
// Materialize/remove the frozen copy if Alt's state changed without a key event reconciling it first (e.g. Alt held at drag start).
// Skip this frame's move. The next move runs once Rust has reported the dragged marker's new index.
if (duplicateRequested !== duplicateActive) {
reconcileDuplicate();
return;
}
// A key event (Alt press/release) already reconciled. Skip the one move that would race that structural change.
if (skipNextMove) {
skipNextMove = false;
return;
}
let position = pointerPosition(e);
if (position === undefined) return;
if (!allowReorder) position = clampToNeighbors(activeMarkerIndex, position);
if (!dragInsertedMarker) dispatch("dragging", true);
emit({ MoveMarker: { index: activeMarkerIndex, position } });
}
function moveActiveMidpoint(e: PointerEvent) {
if (disabled || activeMarkerIndex === undefined) return;
if (e.buttons === 0) {
endDrag();
return;
}
// The wrapped interval's diamond (cyclic only) belongs to the last marker and spans through the 1|0 boundary to the first.
// Its pointer ratio stays unclamped so overdragging past the strip's right or left edge keeps tracking after the 1|0 wrap.
const isWrappedInterval = trackCyclic && activeMarkerIndex === markers.length - 1;
const absolute = pointerPosition(e, !isWrappedInterval);
if (absolute === undefined) return;
const left = markers[activeMarkerIndex]?.position;
const right = isWrappedInterval ? markers[0].position + 1 : markers[activeMarkerIndex + 1]?.position;
if (left === undefined || right === undefined) return;
const range = right - left;
if (range <= 0) return;
// The dead zone between the first and last stops splits so each half saturates against the wrapped interval's nearer end,
// except when an outermost stop leaves no room on its side of the boundary, where the one-sided interval skips the split
// and saturates like any other
let deadZoneSplit = Number.NEGATIVE_INFINITY;
if (isWrappedInterval) {
const first = markers[0].position;
if (left >= 1) deadZoneSplit = Number.POSITIVE_INFINITY;
else if (first > 0) deadZoneSplit = (first + left) / 2;
}
const local = absolute < deadZoneSplit ? absolute + 1 - left : absolute - left;
midpointDragged = true;
dispatch("dragging", true);
emit({ MoveMidpoint: { index: activeMarkerIndex, position: local / range } });
}
function abortDrag() {
if (disabled || activeMarkerIndex === undefined) return;
const dragged = activeMarkerIndex;
const anchor = duplicateActive ? findDuplicateAnchorIndex() : undefined;
if (dragInsertedMarker) {
// The dragged marker was created by this drag, so delete it.
emit({ DeleteMarker: { index: dragged } });
} else if (anchor !== undefined) {
// A duplicated pre-existing marker: the frozen copy already sits at the start position, so deleting the dragged copy restores the original.
emit({ DeleteMarker: { index: dragged } });
} else if (dragRestorePosition !== undefined) {
// Plain drag: return the marker (or midpoint) to where it began.
if (activeMarkerIsMidpoint) emit({ MoveMidpoint: { index: dragged, position: dragRestorePosition } });
else emit({ MoveMarker: { index: dragged, position: dragRestorePosition } });
}
setActive(activeMarkerIndexRestore, activeMarkerIsMidpointRestore);
stopDrag();
}
function endDrag() {
if (!duplicateRequested && duplicateActive) reconcileDuplicate();
stopDrag();
}
function stopDrag() {
removeEvents();
dragRestorePosition = undefined;
dragInsertedMarker = false;
activeMarkerIndexRestore = undefined;
activeMarkerIsMidpointRestore = false;
midpointDragged = false;
duplicateRequested = false;
duplicateActive = false;
skipNextMove = false;
dispatch("dragging", false);
}
function onPointerMove(e: PointerEvent) {
if (activeMarkerIsMidpoint) moveActiveMidpoint(e);
else moveActiveMarker(e);
}
function onPointerUp() {
endDrag();
}
function onMouseDown(e: MouseEvent) {
const BUTTONS_RIGHT = 0b0000_0010;
if (e.buttons & BUTTONS_RIGHT) abortDrag();
}
function onKeyDown(e: KeyboardEvent) {
if (e.key === "Escape") {
const element = markerTrackElement?.div();
if (element) preventEscapeClosingParentFloatingMenu(element);
abortDrag();
return;
}
// Pressing Alt mid-drag duplicates the marker, leaving a frozen copy where the drag began. Reconcile immediately for instant
// feedback, and arm a skip so the next pointer move doesn't race the just-emitted structural change. Only when dragging an
// existing stop (not one being created by this drag).
if (e.key === "Alt" && allowInsert && !activeMarkerIsMidpoint && !dragInsertedMarker && !duplicateRequested) {
duplicateRequested = true;
if (reconcileDuplicate()) skipNextMove = true;
}
}
function onKeyUp(e: KeyboardEvent) {
// Releasing Alt mid-drag removes the frozen copy immediately, as if the marker had been dragged all along (likewise armed to skip the next move).
if (e.key === "Alt" && duplicateRequested) {
duplicateRequested = false;
if (reconcileDuplicate()) skipNextMove = true;
}
}
function addEvents() {
document.addEventListener("pointermove", onPointerMove);
document.addEventListener("pointerup", onPointerUp);
document.addEventListener("mousedown", onMouseDown);
document.addEventListener("keydown", onKeyDown);
document.addEventListener("keyup", onKeyUp);
}
function removeEvents() {
document.removeEventListener("pointermove", onPointerMove);
document.removeEventListener("pointerup", onPointerUp);
document.removeEventListener("mousedown", onMouseDown);
document.removeEventListener("keydown", onKeyDown);
document.removeEventListener("keyup", onKeyUp);
}
// Map midpoint pairs to absolute track positions for rendering the diamond markers.
// A rendered diamond's index is the index of the interval's left marker, which for the cyclic wrapped interval's diamond is the last marker.
function diamondPositions(markers: SpectrumMarker[], showMidpoints: boolean, trackCyclic: boolean, trackInterpolation: GradientInterpolation): number[] {
// A stepped ramp jumps at its stops, so no midpoint has anything to bias
if (!showMidpoints || trackInterpolation === "Stepped" || markers.length < 2) return [];
const positions = markers.slice(0, -1).map((marker, i) => marker.position + marker.midpoint * (markers[i + 1].position - marker.position));
// The wrapped interval's diamond may land on either side of the 1|0 boundary
if (trackCyclic) {
const first = markers[0];
const last = markers[markers.length - 1];
const wrapLength = first.position + 1 - last.position;
if (wrapLength > 1e-9) positions.push((last.position + last.midpoint * wrapLength) % 1);
}
return positions;
}
$: midpointPositions = diamondPositions(markers, showMidpoints, trackCyclic, trackInterpolation);
onMount(() => {
document.addEventListener("keydown", deleteShortcut);
});
onDestroy(() => {
removeEvents();
document.removeEventListener("keydown", deleteShortcut);
});
</script>
<LayoutCol
class="spectrum-input"
classes={{ narrow, disabled }}
styles={{
"--gradient-start": trackStartCSS,
"--gradient-end": trackEndCSS,
}}
>
<LayoutRow class="gradient-strip" on:pointerdown={trackPointerDown}>
<!-- An SVG gradient interpolates its stops with straight alpha, matching the renderers, where a CSS gradient would premultiply -->
<svg class="strip-gradient" xmlns="http://www.w3.org/2000/svg">
<linearGradient id={gradientId} x1="0" y1="0" x2="1" y2="0">
{#each trackSamples as sample}
<stop offset={sample.position} stop-color={sample.color} stop-opacity={sample.alpha} />
{/each}
</linearGradient>
<rect width="100%" height="100%" fill={`url(#${gradientId})`} />
</svg>
</LayoutRow>
<LayoutRow class="midpoint-track">
{#each midpointPositions as midpoint, index}
{#if midpoint >= 0 && midpoint <= 1}
<svg
class="midpoint"
class:active={index === activeMarkerIndex && activeMarkerIsMidpoint}
style:--midpoint-position={midpoint}
on:pointerdown={(e) => midpointPointerDown(e, index)}
on:dblclick={() => midpointDoubleClick(index)}
data-gradient-midpoint
xmlns="http://www.w3.org/2000/svg"
viewBox="0 0 8 8"
>
<polygon points="0,4 4,0 8,4 4,8" />
</svg>
{/if}
{/each}
</LayoutRow>
<LayoutRow class="marker-track" bind:this={markerTrackElement}>
{#each markers as marker, index}
{#if marker.position >= 0 && marker.position <= 1}
<svg
class="marker"
class:active={index === activeMarkerIndex && !activeMarkerIsMidpoint}
style:--marker-position={marker.position}
style:--marker-color={marker.handleColorCSS}
on:pointerdown={(e) => markerPointerDown(e, index)}
on:dblclick={() => markerDoubleClick(index)}
data-gradient-marker
xmlns="http://www.w3.org/2000/svg"
viewBox="0 0 12 12"
>
<path class="inner-fill" d="M10,11.5H2c-0.8,0-1.5-0.7-1.5-1.5V6.8c0-0.4,0.2-0.8,0.4-1.1L6,0.7l5.1,5.1c0.3,0.3,0.4,0.7,0.4,1.1V10C11.5,10.8,10.8,11.5,10,11.5z" />
{#if disabled}
<path class="disabled-fill" d="M10,11.5H2c-0.8,0-1.5-0.7-1.5-1.5V6.8c0-0.4,0.2-0.8,0.4-1.1L6,0.7l5.1,5.1c0.3,0.3,0.4,0.7,0.4,1.1V10C11.5,10.8,10.8,11.5,10,11.5z" />
{/if}
<path
class="outer-border"
d="M6,1.4L1.3,6.1C1.1,6.3,1,6.6,1,6.8V10c0,0.6,0.4,1,1,1h8c0.6,0,1-0.4,1-1V6.8c0-0.3-0.1-0.5-0.3-0.7L6,1.4M6,0l5.4,5.4C11.8,5.8,12,6.3,12,6.8V10c0,1.1-0.9,2-2,2H2c-1.1,0-2-0.9-2-2V6.8c0-0.5,0.2-1,0.6-1.4L6,0z"
/>
</svg>
{/if}
{/each}
</LayoutRow>
</LayoutCol>
<style lang="scss">
.spectrum-input {
position: relative;
--marker-half-width: 6px;
.gradient-strip {
flex: 0 0 auto;
position: relative;
height: 16px;
background-image:
// Solid start/end colors on either side so the gradient begins at the center of a marker
linear-gradient(var(--gradient-start), var(--gradient-start)), linear-gradient(var(--gradient-end), var(--gradient-end)), var(--color-transparent-checkered-background);
background-size:
// TODO: Find a solution that avoids visual artifacts where these end colors meet the gradient that appear when viewing with a non-integer zoom or display scaling factor
var(--marker-half-width) 100%,
var(--marker-half-width) 100%,
var(--color-transparent-checkered-background-size);
background-position:
left 0,
right 0,
var(--color-transparent-checkered-background-position);
background-repeat: no-repeat, no-repeat, var(--color-transparent-checkered-background-repeat);
border-radius: 2px;
.strip-gradient {
position: absolute;
top: 0;
left: var(--marker-half-width);
width: calc(100% - 2 * var(--marker-half-width));
height: 100%;
}
}
&.narrow .gradient-strip {
margin-top: 8px;
height: 8px;
}
&.disabled .gradient-strip {
transition: opacity 0.1s;
&:hover {
opacity: 0.5;
}
}
.midpoint-track {
position: absolute;
top: 0;
left: var(--marker-half-width);
right: var(--marker-half-width);
.midpoint {
position: absolute;
margin-left: -4px;
width: 8px;
height: 8px;
bottom: 0;
left: calc(var(--midpoint-position) * 100%);
polygon {
stroke: var(--color-e-nearwhite);
fill: var(--color-2-mildblack);
}
&.active {
z-index: 1;
polygon {
fill: var(--color-e-nearwhite);
}
}
}
}
&.disabled .midpoint-track .midpoint polygon {
stroke: var(--color-4-dimgray);
}
.marker-track {
margin-top: calc(24px - 16px - 12px);
margin-left: var(--marker-half-width);
width: calc(100% - 2 * var(--marker-half-width));
position: relative;
pointer-events: none;
.marker {
position: absolute;
transform: translateX(-50%);
left: calc(var(--marker-position) * 100%);
width: 12px;
height: 12px;
pointer-events: auto;
overflow: visible;
padding-top: 12px;
margin-top: -12px;
.inner-fill {
fill: var(--marker-color);
}
.outer-border {
fill: var(--color-5-dullgray);
}
}
}
&.disabled .marker-track .marker {
.disabled-fill {
opacity: 0.5;
}
.outer-border {
fill: var(--color-4-dimgray);
}
}
&:not(.disabled) .marker-track .marker {
&:not(.active) {
.inner-fill:hover + .outer-border,
.outer-border:hover {
fill: var(--color-6-lowergray);
}
}
&.active {
z-index: 1;
.inner-fill {
filter: drop-shadow(0 0 1px var(--color-2-mildblack)) drop-shadow(0 0 1px var(--color-2-mildblack));
}
// Outer border when active
.outer-border {
fill: var(--color-e-nearwhite);
}
.inner-fill:hover + .outer-border,
.outer-border:hover {
fill: var(--color-f-white);
}
}
}
}
</style>