
* Initial setup and migrated src/common * WIP * WIP * WIP * Main module basically finished * Renderer process migrated * Added CI step and some fixes * Fixed remainder of issues and added proper ESLint config * Fixed a couple issues * Progress! * Some more fixes * Fixed a test * Fix build step * PR feedback
40 lines
1.2 KiB
TypeScript
40 lines
1.2 KiB
TypeScript
// Copyright (c) 2015-2016 Yuya Ochiai
|
|
// Copyright (c) 2016-present Mattermost, Inc. All Rights Reserved.
|
|
// See LICENSE.txt for license information.
|
|
|
|
import React from 'react';
|
|
import {Button, Modal} from 'react-bootstrap';
|
|
|
|
import DestructiveConfirmationModal from './DestructiveConfirmModal';
|
|
|
|
type Props = {
|
|
show: boolean;
|
|
serverName: string;
|
|
onHide: () => void;
|
|
onAccept: React.MouseEventHandler<Button>;
|
|
onCancel: React.MouseEventHandler<Button>;
|
|
}
|
|
|
|
export default function RemoveServerModal(props: Props) {
|
|
const {serverName, ...rest} = props;
|
|
return (
|
|
<DestructiveConfirmationModal
|
|
{...rest}
|
|
title='Remove Server'
|
|
acceptLabel='Remove'
|
|
cancelLabel='Cancel'
|
|
body={(
|
|
<Modal.Body>
|
|
<p>
|
|
{'This will remove the server from your Desktop App but will not delete any of its data' +
|
|
' - you can add the server back to the app at any time.'}
|
|
</p>
|
|
<p>
|
|
{'Confirm you wish to remove the '}<strong>{serverName}</strong>{' server?'}
|
|
</p>
|
|
</Modal.Body>
|
|
)}
|
|
/>
|
|
);
|
|
}
|