refactor: move delete button into more button dropdown
This commit is contained in:
parent
e9b783f047
commit
70c60b5ee1
@ -94,14 +94,24 @@ export const MonitorInfo: React.FC<MonitorInfoProps> = React.memo((props) => {
|
||||
});
|
||||
|
||||
const handleDelete = useEvent(async () => {
|
||||
Modal.confirm({
|
||||
title: 'Warning',
|
||||
content: 'Did you sure delete this monitor?',
|
||||
okButtonProps: {
|
||||
danger: true,
|
||||
},
|
||||
onOk: async () => {
|
||||
await deleteMutation.mutateAsync({
|
||||
workspaceId,
|
||||
monitorId,
|
||||
});
|
||||
await trpcUtils.monitor.all.refetch();
|
||||
|
||||
trpcUtils.monitor.all.refetch();
|
||||
|
||||
navigate('/monitor');
|
||||
navigate('/monitor', {
|
||||
replace: true,
|
||||
});
|
||||
},
|
||||
});
|
||||
});
|
||||
|
||||
const handleClearEvents = useEvent(() => {
|
||||
@ -205,13 +215,6 @@ export const MonitorInfo: React.FC<MonitorInfoProps> = React.memo((props) => {
|
||||
</Button>
|
||||
)}
|
||||
|
||||
<Popconfirm
|
||||
title="Did you sure delete this monitor?"
|
||||
onConfirm={handleDelete}
|
||||
>
|
||||
<Button danger={true}>Delete</Button>
|
||||
</Popconfirm>
|
||||
|
||||
<Dropdown
|
||||
trigger={['click']}
|
||||
placement="bottomRight"
|
||||
@ -222,6 +225,15 @@ export const MonitorInfo: React.FC<MonitorInfoProps> = React.memo((props) => {
|
||||
label: 'Show Badge',
|
||||
onClick: () => setShowBadge(true),
|
||||
},
|
||||
{
|
||||
type: 'divider',
|
||||
},
|
||||
{
|
||||
key: 'delete',
|
||||
label: 'Delete',
|
||||
danger: true,
|
||||
onClick: handleDelete,
|
||||
},
|
||||
],
|
||||
}}
|
||||
>
|
||||
|
Loading…
Reference in New Issue
Block a user