mirror of
https://github.com/bigcapitalhq/bigcapital.git
synced 2026-02-18 13:50:31 +00:00
80 lines
1.9 KiB
TypeScript
80 lines
1.9 KiB
TypeScript
// @ts-nocheck
|
|
import React from 'react';
|
|
import intl from 'react-intl-universal';
|
|
import { FormattedMessage as T, FormattedHTMLMessage } from '@/components';
|
|
import { Intent, Alert } from '@blueprintjs/core';
|
|
import { AppToaster } from '@/components';
|
|
import { useDeleteProjectTimeEntry } from '../../hooks';
|
|
|
|
import { withAlertStoreConnect } from '@/containers/Alert/withAlertStoreConnect';
|
|
import { withAlertActions } from '@/containers/Alert/withAlertActions';
|
|
|
|
import { compose } from '@/utils';
|
|
|
|
/**
|
|
* Project timesheet delete alert.
|
|
* @returns
|
|
*/
|
|
function ProjectTimesheetDeleteAlert({
|
|
name,
|
|
|
|
// #withAlertStoreConnect
|
|
isOpen,
|
|
payload: { timesheetId },
|
|
|
|
// #withAlertActions
|
|
closeAlert,
|
|
}) {
|
|
const { mutateAsync: deleteProjectTimeEntryMutate, isLoading } =
|
|
useDeleteProjectTimeEntry();
|
|
|
|
// handle cancel delete alert.
|
|
const handleCancelDeleteAlert = () => {
|
|
closeAlert(name);
|
|
};
|
|
|
|
// handleConfirm delete project time sheet.
|
|
const handleConfirmProjectTimesheetDelete = () => {
|
|
deleteProjectTimeEntryMutate(timesheetId)
|
|
.then(() => {
|
|
AppToaster.show({
|
|
message: intl.get('project_time_entry.alert.delete_message'),
|
|
intent: Intent.SUCCESS,
|
|
});
|
|
})
|
|
.catch(
|
|
({
|
|
response: {
|
|
data: { errors },
|
|
},
|
|
}) => {},
|
|
)
|
|
.finally(() => {
|
|
closeAlert(name);
|
|
});
|
|
};
|
|
|
|
return (
|
|
<Alert
|
|
cancelButtonText={<T id={'cancel'} />}
|
|
confirmButtonText={<T id={'delete'} />}
|
|
icon="trash"
|
|
intent={Intent.DANGER}
|
|
isOpen={isOpen}
|
|
onCancel={handleCancelDeleteAlert}
|
|
onConfirm={handleConfirmProjectTimesheetDelete}
|
|
loading={isLoading}
|
|
>
|
|
<p>
|
|
<FormattedHTMLMessage
|
|
id={'project_time_entry.alert.once_delete_this_project'}
|
|
/>
|
|
</p>
|
|
</Alert>
|
|
);
|
|
}
|
|
export default compose(
|
|
withAlertStoreConnect(),
|
|
withAlertActions,
|
|
)(ProjectTimesheetDeleteAlert);
|