mirror of
https://github.com/zadam/trilium.git
synced 2025-11-18 11:10:41 +01:00
57 lines
1.9 KiB
TypeScript
57 lines
1.9 KiB
TypeScript
import { ComponentChild, createContext, render, type JSX, type RefObject } from "preact";
|
|
import Component from "../../components/component";
|
|
|
|
export const ParentComponent = createContext<Component | null>(null);
|
|
|
|
/**
|
|
* Takes in a React ref and returns a corresponding JQuery selector.
|
|
*
|
|
* @param ref the React ref from which to obtain the jQuery selector.
|
|
* @returns the corresponding jQuery selector.
|
|
*/
|
|
export function refToJQuerySelector<T extends HTMLElement>(ref: RefObject<T> | null): JQuery<T> {
|
|
if (ref?.current) {
|
|
return $(ref.current);
|
|
} else {
|
|
return $();
|
|
}
|
|
}
|
|
|
|
/**
|
|
* Renders a React component and returns the corresponding DOM element wrapped in JQuery.
|
|
*
|
|
* @param parentComponent the parent Trilium component for the component to be able to handle events.
|
|
* @param el the JSX element to render.
|
|
* @returns the rendered wrapped DOM element.
|
|
*/
|
|
export function renderReactWidget(parentComponent: Component | null, el: JSX.Element) {
|
|
return renderReactWidgetAtElement(parentComponent, el, new DocumentFragment()).children();
|
|
}
|
|
|
|
export function renderReactWidgetAtElement(parentComponent: Component | null, el: JSX.Element, container: Element | DocumentFragment) {
|
|
render((
|
|
<ParentComponent.Provider value={parentComponent}>
|
|
{el}
|
|
</ParentComponent.Provider>
|
|
), container);
|
|
return $(container) as JQuery<HTMLElement>;
|
|
}
|
|
|
|
export function disposeReactWidget(container: Element) {
|
|
render(null, container);
|
|
}
|
|
|
|
export function joinElements(components: ComponentChild[] | undefined, separator = ", ") {
|
|
if (!components) return <></>;
|
|
|
|
const joinedComponents: ComponentChild[] = [];
|
|
for (let i=0; i<components.length; i++) {
|
|
joinedComponents.push(components[i]);
|
|
if (i + 1 < components.length) {
|
|
joinedComponents.push(separator);
|
|
}
|
|
}
|
|
|
|
return <>{joinedComponents}</>;
|
|
}
|