2019-10-01 17:03:27 +02:00
|
|
|
// @flow
|
|
|
|
|
|
|
|
|
|
import React from "react";
|
2019-10-01 18:03:34 +02:00
|
|
|
import PluginActionModal from "./PluginActionModal";
|
|
|
|
|
import type { PluginCollection } 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 = {
|
|
|
|
|
onClose: () => void,
|
|
|
|
|
refresh: () => void,
|
|
|
|
|
installedPlugins: PluginCollection,
|
|
|
|
|
|
|
|
|
|
// context props
|
|
|
|
|
t: string => string
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
class UpdateAllActionModal extends React.Component<Props> {
|
|
|
|
|
render() {
|
2019-10-01 18:03:34 +02:00
|
|
|
const { onClose, installedPlugins, t } = this.props;
|
|
|
|
|
|
|
|
|
|
return (
|
|
|
|
|
<PluginActionModal
|
|
|
|
|
description={t("plugins.modal.updateAll")}
|
|
|
|
|
label={t("plugins.updateAll")}
|
|
|
|
|
onClose={onClose}
|
|
|
|
|
installedPlugins={installedPlugins}
|
|
|
|
|
execute={this.updateAll}
|
|
|
|
|
/>
|
|
|
|
|
);
|
2019-10-01 17:03:27 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
updateAll = () => {
|
|
|
|
|
const { installedPlugins, refresh, onClose } = this.props;
|
|
|
|
|
return apiClient
|
|
|
|
|
.post(installedPlugins._links.update.href)
|
|
|
|
|
.then(refresh)
|
|
|
|
|
.then(onClose);
|
|
|
|
|
};
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
export default translate("admin")(UpdateAllActionModal);
|