/** * Copyright (c) 2021 OpenLens Authors * * Permission is hereby granted, free of charge, to any person obtaining a copy of * this software and associated documentation files (the "Software"), to deal in * the Software without restriction, including without limitation the rights to * use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of * the Software, and to permit persons to whom the Software is furnished to do so, * subject to the following conditions: * * The above copyright notice and this permission notice shall be included in all * copies or substantial portions of the Software. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS * FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR * COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER * IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. */ import "./install-chart.scss"; import React, { Component } from "react"; import { observable, makeObservable } from "mobx"; import { observer } from "mobx-react"; import { dockStore, DockTab } from "./dock.store"; import { InfoPanel } from "./info-panel"; import { Badge } from "../badge"; import { NamespaceSelect } from "../+namespaces/namespace-select"; import { boundMethod, prevDefault } from "../../utils"; import { IChartInstallData, installChartStore } from "./install-chart.store"; import { Spinner } from "../spinner"; import { Icon } from "../icon"; import { Button } from "../button"; import { releaseStore } from "../+apps-releases/release.store"; import { LogsDialog } from "../dialog/logs-dialog"; import { Select, SelectOption } from "../select"; import { Input } from "../input"; import { EditorPanel } from "./editor-panel"; import { navigate } from "../../navigation"; import { releaseURL } from "../../../common/routes"; interface Props { tab: DockTab; } @observer export class InstallChart extends Component { @observable error = ""; @observable showNotes = false; constructor(props: Props) { super(props); makeObservable(this); } get values() { return this.chartData.values; } get chartData() { return installChartStore.getData(this.tabId); } get tabId() { return this.props.tab.id; } get versions() { return installChartStore.versions.getData(this.tabId); } get releaseDetails() { return installChartStore.details.getData(this.tabId); } @boundMethod viewRelease() { const { release } = this.releaseDetails; navigate(releaseURL({ params: { name: release.name, namespace: release.namespace } })); dockStore.closeTab(this.tabId); } @boundMethod save(data: Partial) { const chart = { ...this.chartData, ...data }; installChartStore.setData(this.tabId, chart); } @boundMethod onVersionChange(option: SelectOption) { const version = option.value; this.save({ version, values: "" }); installChartStore.loadValues(this.tabId); } @boundMethod onValuesChange(values: string, error?: string) { this.error = error; this.save({ values }); } @boundMethod onNamespaceChange(opt: SelectOption) { this.save({ namespace: opt.value }); } @boundMethod onReleaseNameChange(name: string) { this.save({ releaseName: name }); } install = async () => { const { repo, name, version, namespace, values, releaseName } = this.chartData; const details = await releaseStore.create({ name: releaseName || undefined, chart: name, repo, namespace, version, values, }); installChartStore.details.setData(this.tabId, details); return (

Chart Release {details.release.name} successfully created.

); }; render() { const { tabId, chartData, values, versions, install } = this; if (chartData?.values === undefined || !versions) { return ; } if (this.releaseDetails) { return (

Installation complete!

this.showNotes = false} logs={this.releaseDetails.log} />
); } const { repo, name, version, namespace, releaseName } = chartData; const panelControls = (
Chart Version
); return (
); } }