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>
59 lines
1.6 KiB
TypeScript
59 lines
1.6 KiB
TypeScript
import type { KubeObjectStore } from "../kube-object.store";
|
|
|
|
import { action, observable } from "mobx";
|
|
import { autobind } from "../utils";
|
|
import { KubeApi } from "./kube-api";
|
|
|
|
@autobind()
|
|
export class ApiManager {
|
|
private apis = observable.map<string, KubeApi>();
|
|
private stores = observable.map<KubeApi, KubeObjectStore>();
|
|
|
|
getApi(pathOrCallback: string | ((api: KubeApi) => boolean)) {
|
|
if (typeof pathOrCallback === "string") {
|
|
return this.apis.get(pathOrCallback) || this.apis.get(KubeApi.parseApi(pathOrCallback).apiBase);
|
|
}
|
|
|
|
return Array.from(this.apis.values()).find(pathOrCallback ?? (() => true));
|
|
}
|
|
|
|
getApiByKind(kind: string, apiVersion: string) {
|
|
return Array.from(this.apis.values()).find((api) => api.kind === kind && api.apiVersion === apiVersion);
|
|
}
|
|
|
|
registerApi(apiBase: string, api: KubeApi) {
|
|
if (!this.apis.has(apiBase)) {
|
|
this.apis.set(apiBase, api);
|
|
}
|
|
}
|
|
|
|
protected resolveApi(api: string | KubeApi): KubeApi {
|
|
if (typeof api === "string") return this.getApi(api);
|
|
|
|
return api;
|
|
}
|
|
|
|
unregisterApi(api: string | KubeApi) {
|
|
if (typeof api === "string") this.apis.delete(api);
|
|
else {
|
|
const apis = Array.from(this.apis.entries());
|
|
const entry = apis.find(entry => entry[1] === api);
|
|
|
|
if (entry) this.unregisterApi(entry[0]);
|
|
}
|
|
}
|
|
|
|
@action
|
|
registerStore(store: KubeObjectStore, apis: KubeApi[] = [store.api]) {
|
|
apis.forEach(api => {
|
|
this.stores.set(api, store);
|
|
});
|
|
}
|
|
|
|
getStore<S extends KubeObjectStore>(api: string | KubeApi): S {
|
|
return this.stores.get(this.resolveApi(api)) as S;
|
|
}
|
|
}
|
|
|
|
export const apiManager = new ApiManager();
|