/** * 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 "./create-resource.scss"; import React from "react"; import path from "path"; import fs from "fs-extra"; import {Select, GroupSelectOption, SelectOption} from "../select"; import jsYaml from "js-yaml"; import { observable, makeObservable } from "mobx"; import { observer } from "mobx-react"; import { cssNames } from "../../utils"; import { createResourceStore } from "./create-resource.store"; import type { IDockTab } from "./dock.store"; import { EditorPanel } from "./editor-panel"; import { InfoPanel } from "./info-panel"; import { resourceApplierApi } from "../../api/endpoints/resource-applier.api"; import type { JsonApiErrorParsed } from "../../api/json-api"; import { Notifications } from "../notifications"; interface Props { className?: string; tab: IDockTab; } @observer export class CreateResource extends React.Component { @observable currentTemplates:Map = new Map(); @observable error = ""; @observable templates:GroupSelectOption[] = []; constructor(props: Props) { super(props); makeObservable(this); } componentDidMount() { createResourceStore.getMergedTemplates().then(v => this.updateGroupSelectOptions(v)); createResourceStore.watchUserTemplates(() => createResourceStore.getMergedTemplates().then(v => this.updateGroupSelectOptions(v))); } updateGroupSelectOptions(templates :Record) { this.templates = Object.entries(templates) .map(([name, grouping]) => this.convertToGroup(name, grouping)); } convertToGroup(group:string, items:string[]):GroupSelectOption { const options = items.map(v => ({label: path.parse(v).name, value: v})); return {label: group, options}; } get tabId() { return this.props.tab.id; } get data() { return createResourceStore.getData(this.tabId); } get currentTemplate() { return this.currentTemplates.get(this.tabId) ?? null; } onChange = (value: string, error?: string) => { createResourceStore.setData(this.tabId, value); this.error = error; }; onSelectTemplate = (item: SelectOption) => { this.currentTemplates.set(this.tabId, item); fs.readFile(item.value,"utf8").then(v => createResourceStore.setData(this.tabId,v)); }; create = async () => { if (this.error || !this.data.trim()) { // do not save when field is empty or there is an error return null; } // skip empty documents if "---" pasted at the beginning or end const resources = jsYaml.safeLoadAll(this.data).filter(Boolean); const createdResources: string[] = []; const errors: string[] = []; await Promise.all( resources.map(data => { return resourceApplierApi.update(data) .then(item => createdResources.push(item.getName())) .catch((err: JsonApiErrorParsed) => errors.push(err.toString())); }) ); if (errors.length) { errors.forEach(error => Notifications.error(error)); if (!createdResources.length) throw errors[0]; } const successMessage = (

{createdResources.length === 1 ? "Resource" : "Resources"}{" "} {createdResources.join(", ")} successfully created

); Notifications.ok(successMessage); return successMessage; }; renderControls(){ return (