mirror of
https://github.com/rio-labs/rio.git
synced 2026-01-06 05:09:43 -06:00
33 lines
1.0 KiB
TypeScript
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);
|
|
}
|
|
}
|
|
}
|