mirror of
https://github.com/lensapp/lens.git
synced 2025-05-20 05:10:56 +00:00
Co-authored-by: Mikko Aspiala <mikko.aspiala@gmail.com> Co-authored-by: Sebastian Malton <sebastian@malton.name> Co-authored-by: Janne Savolainen <janne.savolainen@live.fi>
88 lines
2.4 KiB
TypeScript
88 lines
2.4 KiB
TypeScript
/**
|
|
* Copyright (c) OpenLens Authors. All rights reserved.
|
|
* Licensed under MIT License. See LICENSE in root directory for more information.
|
|
*/
|
|
|
|
import { action, makeObservable, when } from "mobx";
|
|
import type { TabId } from "../dock/store";
|
|
import { DockTabStorageState, DockTabStore } from "../dock-tab-store/dock-tab.store";
|
|
import { getChartDetails, getChartValues } from "../../../../common/k8s-api/endpoints/helm-charts.api";
|
|
import type { IReleaseUpdateDetails } from "../../../../common/k8s-api/endpoints/helm-releases.api";
|
|
import type { StorageHelper } from "../../../utils";
|
|
|
|
export interface IChartInstallData {
|
|
name: string;
|
|
repo: string;
|
|
version: string;
|
|
values?: string;
|
|
releaseName?: string;
|
|
description?: string;
|
|
namespace?: string;
|
|
lastVersion?: boolean;
|
|
}
|
|
|
|
interface Dependencies {
|
|
createStorage: <T>(storageKey: string, options: DockTabStorageState<T>) => StorageHelper<DockTabStorageState<T>>;
|
|
versionsStore: DockTabStore<string[]>;
|
|
detailsStore: DockTabStore<IReleaseUpdateDetails>;
|
|
}
|
|
|
|
export class InstallChartTabStore extends DockTabStore<IChartInstallData> {
|
|
constructor(protected dependencies: Dependencies) {
|
|
super(
|
|
dependencies,
|
|
{ storageKey: "install_charts" },
|
|
);
|
|
makeObservable(this);
|
|
}
|
|
|
|
get versions() {
|
|
return this.dependencies.versionsStore;
|
|
}
|
|
|
|
get details() {
|
|
return this.dependencies.detailsStore;
|
|
}
|
|
|
|
@action
|
|
async loadData(tabId: string) {
|
|
const promises = [];
|
|
|
|
await when(() => this.isReady(tabId));
|
|
|
|
if (!this.getData(tabId).values) {
|
|
promises.push(this.loadValues(tabId));
|
|
}
|
|
|
|
if (!this.versions.getData(tabId)) {
|
|
promises.push(this.loadVersions(tabId));
|
|
}
|
|
|
|
await Promise.all(promises);
|
|
}
|
|
|
|
@action
|
|
async loadVersions(tabId: TabId) {
|
|
const { repo, name, version } = this.getData(tabId);
|
|
|
|
this.versions.clearData(tabId); // reset
|
|
const charts = await getChartDetails(repo, name, { version });
|
|
const versions = charts.versions.map(chartVersion => chartVersion.version);
|
|
|
|
this.versions.setData(tabId, versions);
|
|
}
|
|
|
|
@action
|
|
async loadValues(tabId: TabId, attempt = 0): Promise<void> {
|
|
const data = this.getData(tabId);
|
|
const { repo, name, version } = data;
|
|
const values = await getChartValues(repo, name, version);
|
|
|
|
if (values) {
|
|
this.setData(tabId, { ...data, values });
|
|
} else if (attempt < 4) {
|
|
return this.loadValues(tabId, attempt + 1);
|
|
}
|
|
}
|
|
}
|