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

103 lines
3.2 KiB
TypeScript

import { tryGetComponentByElement } from '../componentManagement';
import { ComponentId } from '../dataModels';
import { setClipboard } from '../utils';
import { ComponentBase, ComponentState } from './componentBase';
export type ScrollTargetState = ComponentState & {
_type_: 'ScrollTarget-builtin';
id?: string;
content?: ComponentId | null;
copy_button_content?: ComponentId | null;
copy_button_text?: string | null;
copy_button_spacing?: number;
};
export class ScrollTargetComponent extends ComponentBase {
state: Required<ScrollTargetState>;
childContainerElement: HTMLElement;
buttonContainerElement: HTMLElement;
createElement(): HTMLElement {
let element = document.createElement('a');
element.classList.add('rio-scroll-target');
this.childContainerElement = document.createElement('div');
element.appendChild(this.childContainerElement);
this.buttonContainerElement = document.createElement('div');
this.buttonContainerElement.classList.add(
'rio-scroll-target-url-copy-button'
);
this.buttonContainerElement.addEventListener(
'click',
this._onUrlCopyButtonClick.bind(this)
);
element.appendChild(this.buttonContainerElement);
return element;
}
updateElement(
deltaState: ScrollTargetState,
latentComponents: Set<ComponentBase>
): void {
super.updateElement(deltaState, latentComponents);
this.replaceOnlyChild(
latentComponents,
deltaState.content,
this.childContainerElement
);
if (deltaState.id !== undefined) {
this.element.id = deltaState.id;
}
if (
deltaState.copy_button_content !== undefined &&
deltaState.copy_button_content !== null
) {
this._removeButtonChild(latentComponents);
this.replaceOnlyChild(
latentComponents,
deltaState.copy_button_content,
this.buttonContainerElement
);
} else if (
deltaState.copy_button_text !== undefined &&
deltaState.copy_button_text !== null
) {
this._removeButtonChild(latentComponents);
let textElement = document.createElement('span');
textElement.textContent = deltaState.copy_button_text;
this.buttonContainerElement.appendChild(textElement);
}
}
private _removeButtonChild(latentComponents: Set<ComponentBase>): void {
let buttonChild = this.buttonContainerElement.firstElementChild;
if (buttonChild === null) return;
let childComponent = tryGetComponentByElement(buttonChild);
if (childComponent === null) {
buttonChild.remove();
} else {
this.replaceOnlyChild(
latentComponents,
childComponent.id,
this.buttonContainerElement
);
}
}
private _onUrlCopyButtonClick(): void {
let url = new URL(window.location.href);
url.hash = this.state.id;
setClipboard(url.toString());
}
}