Files
rio/frontend/code/components/themeContextSwitcher.ts
2025-03-11 19:14:15 +01:00

33 lines
1.0 KiB
TypeScript

import { applySwitcheroo } from "../designApplication";
import { ColorSet, ComponentId } from "../dataModels";
import { ComponentBase, ComponentState, DeltaState } from "./componentBase";
export type ThemeContextSwitcherState = ComponentState & {
_type_: "ThemeContextSwitcher-builtin";
content: ComponentId;
color: ColorSet;
};
export class ThemeContextSwitcherComponent extends ComponentBase<ThemeContextSwitcherState> {
createElement(): HTMLElement {
let element = document.createElement("div");
element.classList.add("rio-single-container");
return element;
}
updateElement(
deltaState: DeltaState<ThemeContextSwitcherState>,
latentComponents: Set<ComponentBase>
): void {
super.updateElement(deltaState, latentComponents);
// Update the child
this.replaceOnlyChild(latentComponents, deltaState.content);
// Colorize
if (deltaState.color !== undefined) {
applySwitcheroo(this.element, deltaState.color);
}
}
}