1
0
mirror of https://github.com/lensapp/lens.git synced 2025-05-20 05:10:56 +00:00

Adding sorting charts by version

Signed-off-by: Alex Andreev <alex.andreev.email@gmail.com>
This commit is contained in:
Alex Andreev 2021-02-18 10:25:13 +03:00
parent 3b5d248d08
commit d01fb04964
2 changed files with 20 additions and 19 deletions

View File

@ -31,7 +31,7 @@ export class HelmChartManager {
return cachedYaml["entries"];
} catch(error) {
logger.error(error);
logger.error("HELM-CHART-MANAGER]: failed to list charts", { error });
return {};
}

View File

@ -1,11 +1,10 @@
import semver from "semver";
import { Cluster } from "../cluster";
import logger from "../logger";
import { repoManager } from "./helm-repo-manager";
import { HelmChartManager } from "./helm-chart-manager";
import { releaseManager } from "./helm-release-manager";
import { HelmChart } from "../../renderer/api/endpoints/helm-charts.api";
import type { HelmChartList, RepoHelmChartList } from "../../renderer/api/endpoints/helm-charts.api";
import { HelmChartList, RepoHelmChartList } from "../../renderer/api/endpoints/helm-charts.api";
class HelmService {
public async installChart(cluster: Cluster, data: { chart: string; values: {}; name: string; namespace: string; version: string }) {
@ -21,9 +20,10 @@ class HelmService {
for (const repo of repositories) {
charts[repo.name] = {};
const manager = new HelmChartManager(repo);
const { groups } = new HelmChartGroups(await manager.charts());
const groups = this.excludeDeprecatedChartGroups(await manager.charts());
const sortedGroups = this.sortChartsByVersion(groups);
charts[repo.name] = groups;
charts[repo.name] = sortedGroups;
}
return charts;
@ -93,26 +93,27 @@ class HelmService {
return { message: output };
}
}
class HelmChartGroups {
private items: Map<string, HelmChart[]>;
private excludeDeprecatedChartGroups(chartGroups: RepoHelmChartList) {
const groups = new Map(Object.entries(chartGroups));
constructor(groups: RepoHelmChartList) {
this.items = new Map(Object.entries(groups));
this.excludeDeprecatedGroups();
}
private excludeDeprecatedGroups() {
for (const [chartName, charts] of this.items) {
for (const [chartName, charts] of groups) {
if (charts[0].deprecated) {
this.items.delete(chartName);
groups.delete(chartName);
}
}
return Object.fromEntries(groups);
}
get groups() {
return Object.fromEntries(this.items);
private sortChartsByVersion(chartGroups: RepoHelmChartList) {
for (const key in chartGroups) {
chartGroups[key] = chartGroups[key].sort((first, second) => {
return semver.compare(second.version, first.version);
});
}
return chartGroups;
}
}