mirror of
https://github.com/lensapp/lens.git
synced 2025-05-20 05:10:56 +00:00
* decentralizing page url-params management -- PoC / tsc 4.1 random fixes Signed-off-by: Roman <ixrock@gmail.com> * fixes, tweak example-extension for demo Signed-off-by: Roman <ixrock@gmail.com> * lint fixes, revert tests Signed-off-by: Roman <ixrock@gmail.com> * removed occasional changes related to typescript 4.1 Signed-off-by: Roman <ixrock@gmail.com> * updated example with 2 menu-items targeting same page with different params Signed-off-by: Roman <ixrock@gmail.com> * fix: merge page url chunks with native URL()-api, simplified default page-params registration Signed-off-by: Roman <ixrock@gmail.com> * fix: make lint happy Signed-off-by: Roman <ixrock@gmail.com> * fix: unit-tests Signed-off-by: Roman <ixrock@gmail.com> * renaming by jim's request: UrlParam => PageParam (type), createUrlParam => createPageParam (helper) Signed-off-by: Roman <ixrock@gmail.com> * fix: reverting NamespaceStore public-api breaking changes Signed-off-by: Roman <ixrock@gmail.com> * lint fix Signed-off-by: Roman <ixrock@gmail.com> * fine-tuning Signed-off-by: Roman <ixrock@gmail.com> * yes, lint always unhappy Signed-off-by: Roman <ixrock@gmail.com> * fix build Signed-off-by: Roman <ixrock@gmail.com> * small fixes Signed-off-by: Roman <ixrock@gmail.com> * fix merge-conflicts Signed-off-by: Roman <ixrock@gmail.com> * removed `isSystem` page-param's init field exposed to extensions-api Signed-off-by: Roman <ixrock@gmail.com>
123 lines
4.0 KiB
TypeScript
123 lines
4.0 KiB
TypeScript
// Extensions-api -> Custom page registration
|
|
|
|
import React from "react";
|
|
import { observer } from "mobx-react";
|
|
import { BaseRegistry } from "./base-registry";
|
|
import { LensExtension, sanitizeExtensionName } from "../lens-extension";
|
|
import { PageParam, PageParamInit } from "../../renderer/navigation/page-param";
|
|
import { createPageParam } from "../../renderer/navigation/helpers";
|
|
|
|
export interface PageRegistration {
|
|
/**
|
|
* Page ID, part of extension's page url, must be unique within same extension
|
|
* When not provided, first registered page without "id" would be used for page-menus without target.pageId for same extension
|
|
*/
|
|
id?: string;
|
|
params?: PageParams<string | ExtensionPageParamInit>;
|
|
components: PageComponents;
|
|
}
|
|
|
|
// exclude "name" field since provided as key in page.params
|
|
export type ExtensionPageParamInit = Omit<PageParamInit, "name" | "isSystem">;
|
|
|
|
export interface PageComponents {
|
|
Page: React.ComponentType<any>;
|
|
}
|
|
|
|
export interface PageTarget<P = PageParams> {
|
|
extensionId?: string;
|
|
pageId?: string;
|
|
params?: P;
|
|
}
|
|
|
|
export interface PageParams<V = any> {
|
|
[paramName: string]: V;
|
|
}
|
|
|
|
export interface PageComponentProps<P extends PageParams = {}> {
|
|
params?: {
|
|
[N in keyof P]: PageParam<P[N]>;
|
|
}
|
|
}
|
|
|
|
export interface RegisteredPage {
|
|
id: string;
|
|
extensionId: string;
|
|
url: string; // registered extension's page URL (without page params)
|
|
params: PageParams<PageParam>; // normalized params
|
|
components: PageComponents; // normalized components
|
|
}
|
|
|
|
export function getExtensionPageUrl(target: PageTarget): string {
|
|
const { extensionId, pageId = "", params: targetParams = {} } = target;
|
|
|
|
const pagePath = ["/extension", sanitizeExtensionName(extensionId), pageId]
|
|
.filter(Boolean)
|
|
.join("/").replace(/\/+/g, "/").replace(/\/$/, ""); // normalize multi-slashes (e.g. coming from page.id)
|
|
|
|
const pageUrl = new URL(pagePath, `http://localhost`);
|
|
|
|
// stringify params to matched target page
|
|
const registeredPage = globalPageRegistry.getByPageTarget(target) || clusterPageRegistry.getByPageTarget(target);
|
|
|
|
if (registeredPage?.params) {
|
|
Object.entries(registeredPage.params).forEach(([name, param]) => {
|
|
const paramValue = param.stringify(targetParams[name]);
|
|
|
|
if (param.init.skipEmpty && param.isEmpty(paramValue)) {
|
|
pageUrl.searchParams.delete(name);
|
|
} else {
|
|
pageUrl.searchParams.set(name, paramValue);
|
|
}
|
|
});
|
|
}
|
|
|
|
return pageUrl.href.replace(pageUrl.origin, "");
|
|
}
|
|
|
|
export class PageRegistry extends BaseRegistry<PageRegistration, RegisteredPage> {
|
|
protected getRegisteredItem(page: PageRegistration, ext: LensExtension): RegisteredPage {
|
|
const { id: pageId } = page;
|
|
const extensionId = ext.name;
|
|
const params = this.normalizeParams(page.params);
|
|
const components = this.normalizeComponents(page.components, params);
|
|
const url = getExtensionPageUrl({ extensionId, pageId });
|
|
|
|
return {
|
|
id: pageId, extensionId, params, components, url,
|
|
};
|
|
}
|
|
|
|
protected normalizeComponents(components: PageComponents, params?: PageParams<PageParam>): PageComponents {
|
|
if (params) {
|
|
const { Page } = components;
|
|
|
|
components.Page = observer((props: object) => React.createElement(Page, { params, ...props }));
|
|
}
|
|
|
|
return components;
|
|
}
|
|
|
|
protected normalizeParams(params?: PageParams<string | ExtensionPageParamInit>): PageParams<PageParam> {
|
|
if (!params) {
|
|
return;
|
|
}
|
|
Object.entries(params).forEach(([name, value]) => {
|
|
const paramInit: PageParamInit = typeof value === "object"
|
|
? { name, ...value }
|
|
: { name, defaultValue: value };
|
|
|
|
params[paramInit.name] = createPageParam(paramInit);
|
|
});
|
|
|
|
return params as PageParams<PageParam>;
|
|
}
|
|
|
|
getByPageTarget(target: PageTarget): RegisteredPage | null {
|
|
return this.getItems().find(page => page.extensionId === target.extensionId && page.id === target.pageId) || null;
|
|
}
|
|
}
|
|
|
|
export const globalPageRegistry = new PageRegistry();
|
|
export const clusterPageRegistry = new PageRegistry();
|