// @flow import * as React from 'react'; import { withRouter, type RouterHistory } from 'react-router-dom'; import { observable } from 'mobx'; import { inject, observer } from 'mobx-react'; import { groupSettings } from 'shared/utils/routeHelpers'; import Button from 'components/Button'; import Flex from 'shared/components/Flex'; import HelpText from 'components/HelpText'; import Group from 'models/Group'; import UiStore from 'stores/UiStore'; type Props = { history: RouterHistory, group: Group, ui: UiStore, onSubmit: () => void, }; @observer class GroupDelete extends React.Component { @observable isDeleting: boolean; handleSubmit = async (ev: SyntheticEvent<>) => { ev.preventDefault(); this.isDeleting = true; try { await this.props.group.delete(); this.props.history.push(groupSettings()); this.props.onSubmit(); } catch (err) { this.props.ui.showToast(err.message); } finally { this.isDeleting = false; } }; render() { const { group } = this.props; return (
Are you sure about that? Deleting the {group.name}{' '} group will cause its members to lose access to collections and documents that it is associated with.
); } } export default inject('ui')(withRouter(GroupDelete));