blob: 1abbc13784367f84f488b47ca8ddf741c614e38b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
|
/*
* SonarQube
* Copyright (C) 2009-2022 SonarSource SA
* mailto:info AT sonarsource DOT com
*
* This program is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
* License as published by the Free Software Foundation; either
* version 3 of the License, or (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
* Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public License
* along with this program; if not, write to the Free Software Foundation,
* Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
*/
import classNames from 'classnames';
import * as React from 'react';
import { restart } from '../../api/system';
import { Button } from '../../components/controls/buttons';
import ConfirmButton from '../../components/controls/ConfirmButton';
import { translate } from '../../helpers/l10n';
import { SysStatus } from '../../types/types';
interface Props {
className?: string;
fetchSystemStatus: () => void;
systemStatus: SysStatus;
}
export default class RestartButton extends React.PureComponent<Props> {
handleConfirm = () => {
return restart().then(this.props.fetchSystemStatus);
};
render() {
const { className, systemStatus } = this.props;
return (
<ConfirmButton
confirmButtonText={translate('restart')}
modalBody={
<>
<p className="spacer-top spacer-bottom">
{translate('system.are_you_sure_to_restart')}
</p>
<p>{translate('system.forcing_shutdown_not_recommended')}</p>
</>
}
modalHeader={translate('system.restart_server')}
onConfirm={this.handleConfirm}>
{({ onClick }) => (
<Button
className={classNames('button-red', className)}
disabled={systemStatus !== 'UP'}
onClick={onClick}>
{systemStatus === 'RESTARTING'
? translate('system.restart_in_progress')
: translate('system.restart_server')}
</Button>
)}
</ConfirmButton>
);
}
}
|