/* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. Licensed under the Apache License, Version 2.0 (the "License"). You may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License. */ import { FunctionComponent, useState } from 'react'; import { v4 as uuidv4 } from 'uuid'; import Stack from 'aws-northstar/layouts/Stack'; import { useAppLayoutContext } from 'aws-northstar/layouts/AppLayout'; import QueryContainerTemplate from '@ags/webclient-core/components/QueryContainerTemplate'; import { ControlTechniqueSummary, DeleteControlTechniqueParams, DeleteControlTechniqueResponse, } from '@ags/webclient-risks-core/types'; import { QueryType, MutationType } from '@ags/webclient-risks-core/queries'; import { useAgsListQuery, useAgsMutation } from '@ags/webclient-core/queries'; import ControlTechniquesTable from '@ags/webclient-risks-view/components/ControlTechniques/Table'; import DeleteConfirmationModal from '@ags/webclient-risks-view/components/ControlTechniques/DeleteConfirmationModal'; const ControlTechniquesView: FunctionComponent = () => { const { addNotification } = useAppLayoutContext(); const [showDeleteConfirmation, setShowDeleteConfirmation] = useState(false); const [isDeleting, setIsDeleting] = useState(false); const [controlTechniqueToBeDeleted, setControlTechniqueToBeDeleted] = useState(); // load control techniques const { isLoading, data, isError, error } = useAgsListQuery( QueryType.LIST_ALL_CONTROLTECHNIQUES ); const mutation = useAgsMutation< DeleteControlTechniqueResponse, DeleteControlTechniqueParams, Error >(MutationType.DELETE_CONTROLTECHNIQUE, { onSuccess: (data: DeleteControlTechniqueResponse) => { setIsDeleting(false); setShowDeleteConfirmation(false); addNotification({ id: uuidv4(), type: 'success', header: `Delete Control Technique ${controlTechniqueToBeDeleted?.name} Succeeded.`, dismissible: true, }); setControlTechniqueToBeDeleted(undefined); }, onError: (error: Error, params: DeleteControlTechniqueParams) => { setIsDeleting(false); setShowDeleteConfirmation(false); addNotification({ id: uuidv4(), type: 'error', header: `Delete Control Technique ${controlTechniqueToBeDeleted?.name} Failed.`, content: error.message, dismissible: true, }); }, }); const onDelete = (selectedControlTechniques: ControlTechniqueSummary[]) => { setControlTechniqueToBeDeleted(selectedControlTechniques[0]); setShowDeleteConfirmation(true); }; const onConfirmDelete = () => { if (controlTechniqueToBeDeleted) { setIsDeleting(true); mutation.mutate({ id: controlTechniqueToBeDeleted.id }); } }; return ( {(data) => { return ( ); }} ); }; export default ControlTechniquesView;