94 lines
2.9 KiB
TypeScript
94 lines
2.9 KiB
TypeScript
// This file is part of MinIO Console Server
|
|
// Copyright (c) 2021 MinIO, Inc.
|
|
//
|
|
// This program is free software: you can redistribute it and/or modify
|
|
// it under the terms of the GNU Affero 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 Affero General Public License for more details.
|
|
//
|
|
// You should have received a copy of the GNU Affero General Public License
|
|
// along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
import React from "react";
|
|
import { connect } from "react-redux";
|
|
import { Theme } from "@mui/material/styles";
|
|
import createStyles from "@mui/styles/createStyles";
|
|
import withStyles from "@mui/styles/withStyles";
|
|
import { DialogContentText } from "@mui/material";
|
|
import { setErrorSnackMessage } from "../../../actions";
|
|
import { ErrorResponseHandler } from "../../../common/types";
|
|
import useApi from "../Common/Hooks/useApi";
|
|
import ConfirmDialog from "../Common/ModalWrapper/ConfirmDialog";
|
|
|
|
const styles = (theme: Theme) =>
|
|
createStyles({
|
|
wrapText: {
|
|
maxWidth: "200px",
|
|
whiteSpace: "normal",
|
|
wordWrap: "break-word",
|
|
},
|
|
});
|
|
|
|
interface IDeleteServiceAccountProps {
|
|
classes: any;
|
|
closeDeleteModalAndRefresh: (refresh: boolean) => void;
|
|
deleteOpen: boolean;
|
|
selectedServiceAccount: string | null;
|
|
setErrorSnackMessage: typeof setErrorSnackMessage;
|
|
}
|
|
|
|
const DeleteServiceAccount = ({
|
|
classes,
|
|
closeDeleteModalAndRefresh,
|
|
deleteOpen,
|
|
selectedServiceAccount,
|
|
setErrorSnackMessage,
|
|
}: IDeleteServiceAccountProps) => {
|
|
const onDelSuccess = () => closeDeleteModalAndRefresh(true);
|
|
const onDelError = (err: ErrorResponseHandler) => setErrorSnackMessage(err);
|
|
const onClose = () => closeDeleteModalAndRefresh(false);
|
|
|
|
const [deleteLoading, invokeDeleteApi] = useApi(onDelSuccess, onDelError);
|
|
|
|
if (!selectedServiceAccount) {
|
|
return null;
|
|
}
|
|
|
|
const onConfirmDelete = () => {
|
|
invokeDeleteApi(
|
|
"DELETE",
|
|
`/api/v1/service-accounts/${selectedServiceAccount}`
|
|
);
|
|
};
|
|
|
|
return (
|
|
<ConfirmDialog
|
|
title={`Delete Service Account`}
|
|
confirmText={"Delete"}
|
|
isOpen={deleteOpen}
|
|
isLoading={deleteLoading}
|
|
onConfirm={onConfirmDelete}
|
|
onClose={onClose}
|
|
confirmationContent={
|
|
<DialogContentText>
|
|
Are you sure you want to delete service account{" "}
|
|
<b className={classes.wrapText}>{selectedServiceAccount}</b>?
|
|
</DialogContentText>
|
|
}
|
|
/>
|
|
);
|
|
};
|
|
|
|
const mapDispatchToProps = {
|
|
setErrorSnackMessage,
|
|
};
|
|
|
|
const connector = connect(null, mapDispatchToProps);
|
|
|
|
export default withStyles(styles)(connector(DeleteServiceAccount));
|