Files
rio/frontend/code/components/icon.ts
2024-06-18 21:33:29 +02:00

49 lines
1.4 KiB
TypeScript

import {
Color,
ColorSet,
ImageFill,
LinearGradientFill,
SolidFill,
} from '../dataModels';
import { ComponentBase, ComponentState } from './componentBase';
import { applyFillToSVG, applyIcon } from '../designApplication';
import { pixelsPerRem } from '../app';
export type IconState = ComponentState & {
_type_: 'Icon-builtin';
icon: string;
fill: SolidFill | LinearGradientFill | ImageFill | Color | ColorSet | 'dim';
};
export class IconComponent extends ComponentBase {
state: Required<IconState>;
private svgElement: SVGSVGElement;
createElement(): HTMLElement {
let element = document.createElement('div');
element.classList.add('rio-icon');
return element;
}
updateElement(
deltaState: IconState,
latentComponents: Set<ComponentBase>
): void {
if (deltaState.icon !== undefined) {
// Loading the icon may take a while and applying the fill actually
// alters the icon's SVG source, so if the icon has changed, we
// have to wait until the SVG source is loaded and then re-apply the
// fill.
let fill = deltaState.fill ?? this.state.fill;
applyIcon(this.element, deltaState.icon, fill);
return;
}
if (deltaState.fill !== undefined) {
applyFillToSVG(this.svgElement, deltaState.fill);
}
}
}