Merge branch '13540-add-possibility-to-open-files-in-third-party-apps'
[arvados-workbench2.git] / src / views-components / ssh-keys-dialog / remove-dialog.tsx
1 // Copyright (C) The Arvados Authors. All rights reserved.
2 //
3 // SPDX-License-Identifier: AGPL-3.0
4 import { Dispatch, compose } from 'redux';
5 import { connect } from "react-redux";
6 import { ConfirmationDialog } from "~/components/confirmation-dialog/confirmation-dialog";
7 import { withDialog, WithDialogProps } from "~/store/dialog/with-dialog";
8 import { SSH_KEY_REMOVE_DIALOG, removeSshKey } from '~/store/auth/auth-action';
9
10 const mapDispatchToProps = (dispatch: Dispatch, props: WithDialogProps<any>) => ({
11     onConfirm: () => {
12         props.closeDialog();
13         dispatch<any>(removeSshKey(props.data.uuid));
14     }
15 });
16
17 export const RemoveSshKeyDialog = compose(
18     withDialog(SSH_KEY_REMOVE_DIALOG),
19     connect(null, mapDispatchToProps)
20 )(ConfirmationDialog);