2019-10-19 16:38:07 +02:00
|
|
|
import React from 'react';
|
|
|
|
|
import PluginActionModal from './PluginActionModal';
|
|
|
|
|
import { 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 = {
|
2019-10-19 16:38:07 +02:00
|
|
|
onClose: () => void;
|
|
|
|
|
refresh: () => void;
|
|
|
|
|
installedPlugins: PluginCollection;
|
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 UpdateAllActionModal extends React.Component<Props> {
|
|
|
|
|
render() {
|
2019-10-01 18:03:34 +02:00
|
|
|
const { onClose, installedPlugins, t } = this.props;
|
|
|
|
|
|
|
|
|
|
return (
|
|
|
|
|
<PluginActionModal
|
2019-10-19 16:38:07 +02:00
|
|
|
description={t('plugins.modal.updateAll')}
|
|
|
|
|
label={t('plugins.updateAll')}
|
2019-10-01 18:03:34 +02:00
|
|
|
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);
|
|
|
|
|
};
|
|
|
|
|
}
|
|
|
|
|
|
2019-10-19 16:38:07 +02:00
|
|
|
export default translate('admin')(UpdateAllActionModal);
|