Files
SCM-Manager/scm-ui/src/admin/plugins/components/MultiPluginActionModal.js

216 lines
5.0 KiB
JavaScript
Raw Normal View History

// @flow
2019-10-01 17:03:27 +02:00
import * as React from "react";
import {
Button,
ButtonGroup,
ErrorNotification,
2019-10-01 17:03:27 +02:00
Modal
} from "@scm-manager/ui-components";
import type { PendingPlugins, PluginCollection } from "@scm-manager/ui-types";
import { translate } from "react-i18next";
2019-09-16 18:51:00 +02:00
import SuccessNotification from "./SuccessNotification";
type Props = {
onClose: () => void,
actionType: string,
pendingPlugins?: PendingPlugins,
installedPlugins?: PluginCollection,
2019-10-01 10:27:06 +02:00
refresh: () => void,
2019-10-01 17:03:27 +02:00
execute: () => Promise<any>,
description: string,
label: string,
children?: React.Node,
// context props
t: string => string
};
type State = {
loading: boolean,
success: boolean,
error?: Error
};
class MultiPluginActionModal extends React.Component<Props, State> {
constructor(props: Props) {
super(props);
this.state = {
loading: false,
success: false
};
}
renderNotifications = () => {
2019-10-01 17:03:27 +02:00
const {children} = this.props;
const { error, success } = this.state;
if (error) {
return <ErrorNotification error={error} />;
} else if (success) {
2019-09-16 18:51:00 +02:00
return <SuccessNotification />;
} else {
2019-10-01 17:03:27 +02:00
return children;
}
};
executeAction = () => {
this.setState({
loading: true
});
2019-10-01 17:03:27 +02:00
this.props.execute()
.then(() => {
this.setState({
success: true,
loading: false
});
})
.catch(error => {
this.setState({
success: false,
loading: false,
error: error
});
});
};
renderModalContent = () => {
2019-10-01 13:21:08 +02:00
return (
<>
{this.renderUpdatable()}
{this.renderInstallQueue()}
{this.renderUpdateQueue()}
{this.renderUninstallQueue()}
</>
);
};
renderUpdatable = () => {
const { installedPlugins, t } = this.props;
return (
<>
{installedPlugins &&
installedPlugins._embedded &&
installedPlugins._embedded.plugins && (
<>
2019-09-27 15:30:21 +02:00
<strong>{t("plugins.modal.updateQueue")}</strong>
<ul>
{installedPlugins._embedded.plugins
.filter(plugin => plugin._links && plugin._links.update)
.map(plugin => (
<li key={plugin.name}>{plugin.name}</li>
))}
</ul>
</>
)}
</>
);
};
renderInstallQueue = () => {
const { pendingPlugins, t } = this.props;
return (
<>
{pendingPlugins &&
pendingPlugins._embedded &&
pendingPlugins._embedded.new.length > 0 && (
<>
<strong>{t("plugins.modal.installQueue")}</strong>
<ul>
{pendingPlugins._embedded.new.map(plugin => (
<li key={plugin.name}>{plugin.name}</li>
))}
</ul>
</>
)}
</>
);
};
renderUpdateQueue = () => {
const { pendingPlugins, t } = this.props;
return (
<>
{pendingPlugins &&
pendingPlugins._embedded &&
pendingPlugins._embedded.update.length > 0 && (
<>
<strong>{t("plugins.modal.updateQueue")}</strong>
<ul>
{pendingPlugins._embedded.update.map(plugin => (
<li key={plugin.name}>{plugin.name}</li>
))}
</ul>
</>
)}
</>
);
};
renderUninstallQueue = () => {
const { pendingPlugins, t } = this.props;
return (
<>
{pendingPlugins &&
pendingPlugins._embedded &&
pendingPlugins._embedded.uninstall.length > 0 && (
<>
<strong>{t("plugins.modal.uninstallQueue")}</strong>
<ul>
{pendingPlugins._embedded.uninstall.map(plugin => (
<li key={plugin.name}>{plugin.name}</li>
))}
</ul>
</>
)}
</>
);
};
renderBody = () => {
return (
<>
<div className="media">
<div className="content">
2019-10-01 17:03:27 +02:00
<p>{this.props.description}</p>
{this.renderModalContent()}
</div>
</div>
2019-10-01 17:03:27 +02:00
<div className="media">{this.renderNotifications()}</div>
</>
);
};
renderFooter = () => {
const { onClose, t } = this.props;
const { loading, error, success } = this.state;
return (
<ButtonGroup>
<Button
color="warning"
2019-10-01 17:03:27 +02:00
label={this.props.label}
loading={loading}
action={this.executeAction}
disabled={error || success}
/>
<Button label={t("plugins.modal.abort")} action={onClose} />
</ButtonGroup>
);
};
render() {
const { onClose } = this.props;
return (
<Modal
2019-10-01 17:03:27 +02:00
title={this.props.label}
closeFunction={onClose}
body={this.renderBody()}
footer={this.renderFooter()}
active={true}
/>
);
}
}
export default translate("admin")(MultiPluginActionModal);