mirror of
https://github.com/lensapp/lens.git
synced 2025-05-20 05:10:56 +00:00
65 lines
1.8 KiB
TypeScript
65 lines
1.8 KiB
TypeScript
import { observable } from "mobx";
|
|
import { autobind } from "../../utils";
|
|
import { HelmChart, helmChartsApi } from "../../api/endpoints/helm-charts.api";
|
|
import { ItemStore } from "../../item.store";
|
|
import flatten from "lodash/flatten"
|
|
import compareVersions from 'compare-versions';
|
|
|
|
export interface IChartVersion {
|
|
repo: string;
|
|
version: string;
|
|
}
|
|
|
|
@autobind()
|
|
export class HelmChartStore extends ItemStore<HelmChart> {
|
|
@observable versions = observable.map<string, IChartVersion[]>();
|
|
|
|
loadAll() {
|
|
return this.loadItems(() => helmChartsApi.list());
|
|
}
|
|
|
|
getByName(name: string, repo: string) {
|
|
return this.items.find(chart => chart.getName() === name && chart.getRepository() === repo);
|
|
}
|
|
|
|
protected sortVersions = (versions: IChartVersion[]) => {
|
|
return versions.sort((first, second) => {
|
|
return compareVersions(second.version, first.version)
|
|
});
|
|
};
|
|
|
|
async getVersions(chartName: string, force?: boolean): Promise<IChartVersion[]> {
|
|
let versions = this.versions.get(chartName);
|
|
if (versions && !force) {
|
|
return versions;
|
|
}
|
|
const loadVersions = (repo: string) => {
|
|
return helmChartsApi.get(repo, chartName).then(({ versions }) => {
|
|
return versions.map(chart => ({
|
|
repo: repo,
|
|
version: chart.getVersion()
|
|
}))
|
|
})
|
|
};
|
|
if (!this.isLoaded) {
|
|
await this.loadAll();
|
|
}
|
|
const repos = this.items
|
|
.filter(chart => chart.getName() === chartName)
|
|
.map(chart => chart.getRepository());
|
|
versions = await Promise.all(repos.map(loadVersions))
|
|
.then(flatten)
|
|
.then(this.sortVersions);
|
|
|
|
this.versions.set(chartName, versions);
|
|
return versions;
|
|
}
|
|
|
|
reset() {
|
|
super.reset();
|
|
this.versions.clear();
|
|
}
|
|
}
|
|
|
|
export const helmChartStore = new HelmChartStore();
|