2019-10-20 18:02:52 +02:00
|
|
|
import React from "react";
|
|
|
|
|
import PluginActionModal from "./PluginActionModal";
|
|
|
|
|
import { PendingPlugins } from "@scm-manager/ui-types";
|
|
|
|
|
import { apiClient } from "@scm-manager/ui-components";
|
|
|
|
|
import { translate } from "react-i18next";
|
2019-10-01 17:03:27 +02:00
|
|
|
|
|
|
|
|
type Props = {
|
2019-10-19 16:38:07 +02:00
|
|
|
onClose: () => void;
|
|
|
|
|
refresh: () => void;
|
|
|
|
|
pendingPlugins: PendingPlugins;
|
2019-10-01 17:03:27 +02:00
|
|
|
|
|
|
|
|
// context props
|
2019-10-19 16:38:07 +02:00
|
|
|
t: (p: string) => string;
|
2019-10-01 17:03:27 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
|
|
class CancelPendingActionModal extends React.Component<Props> {
|
|
|
|
|
render() {
|
2019-10-01 18:03:34 +02:00
|
|
|
const { onClose, pendingPlugins, t } = this.props;
|
|
|
|
|
|
|
|
|
|
return (
|
|
|
|
|
<PluginActionModal
|
2019-10-20 18:02:52 +02:00
|
|
|
description={t("plugins.modal.cancelPending")}
|
|
|
|
|
label={t("plugins.cancelPending")}
|
2019-10-01 18:03:34 +02:00
|
|
|
onClose={onClose}
|
|
|
|
|
pendingPlugins={pendingPlugins}
|
|
|
|
|
execute={this.cancelPending}
|
|
|
|
|
/>
|
|
|
|
|
);
|
2019-10-01 17:03:27 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
cancelPending = () => {
|
|
|
|
|
const { pendingPlugins, refresh, onClose } = this.props;
|
|
|
|
|
return apiClient
|
|
|
|
|
.post(pendingPlugins._links.cancel.href)
|
|
|
|
|
.then(refresh)
|
|
|
|
|
.then(onClose);
|
|
|
|
|
};
|
|
|
|
|
}
|
|
|
|
|
|
2019-10-20 18:02:52 +02:00
|
|
|
export default translate("admin")(CancelPendingActionModal);
|