/* * MIT License * * Copyright (c) 2020-present Cloudogu GmbH and Contributors * * 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 * as React from "react"; import { WithTranslation, withTranslation } from "react-i18next"; import { PendingPlugins, PluginCollection } from "@scm-manager/ui-types"; import { Button, ButtonGroup, ErrorNotification, Modal } from "@scm-manager/ui-components"; import SuccessNotification from "./SuccessNotification"; type Props = WithTranslation & { onClose: () => void; pendingPlugins?: PendingPlugins; installedPlugins?: PluginCollection; execute: () => void; description: string; label: string; loading: boolean; error?: Error | null; success: boolean; children?: React.Node; }; class PluginActionModal extends React.Component { renderNotifications = () => { const { children, error, success } = this.props; if (error) { return ; } else if (success) { return ; } else { return children; } }; renderModalContent = () => { return ( <> {this.renderUpdatable()} {this.renderInstallQueue()} {this.renderUpdateQueue()} {this.renderUninstallQueue()} ); }; renderUpdatable = () => { const { installedPlugins, t } = this.props; return ( <> {installedPlugins && installedPlugins._embedded && installedPlugins._embedded.plugins && ( <> {t("plugins.modal.updateQueue")}
    {installedPlugins._embedded.plugins .filter(plugin => plugin._links && plugin._links.update) .map(plugin => (
  • {plugin.name}
  • ))}
)} ); }; renderInstallQueue = () => { const { pendingPlugins, t } = this.props; return ( <> {pendingPlugins && pendingPlugins._embedded && pendingPlugins._embedded.new.length > 0 && ( <> {t("plugins.modal.installQueue")}
    {pendingPlugins._embedded.new.map(plugin => (
  • {plugin.name}
  • ))}
)} ); }; renderUpdateQueue = () => { const { pendingPlugins, t } = this.props; return ( <> {pendingPlugins && pendingPlugins._embedded && pendingPlugins._embedded.update.length > 0 && ( <> {t("plugins.modal.updateQueue")}
    {pendingPlugins._embedded.update.map(plugin => (
  • {plugin.name}
  • ))}
)} ); }; renderUninstallQueue = () => { const { pendingPlugins, t } = this.props; return ( <> {pendingPlugins && pendingPlugins._embedded && pendingPlugins._embedded.uninstall.length > 0 && ( <> {t("plugins.modal.uninstallQueue")}
    {pendingPlugins._embedded.uninstall.map(plugin => (
  • {plugin.name}
  • ))}
)} ); }; renderBody = () => { return ( <>

{this.props.description}

{this.renderModalContent()}
{this.renderNotifications()}
); }; renderFooter = () => { const { onClose, t, loading, error, success } = this.props; return (