* fix: added delete sticky confirmation modal * fix: prevented quick links reordering * fix: quick links css * fix: minor css * fix: empty states * Filter quick_tutorial and new_at_plane * fix: stickies search backend change * fix: stickies editor enhanced * fix: sticky delete function --------- Co-authored-by: gakshita <akshitagoyal1516@gmail.com>
44 lines
1 KiB
TypeScript
44 lines
1 KiB
TypeScript
"use client";
|
|
|
|
import { useState } from "react";
|
|
import { observer } from "mobx-react";
|
|
// ui
|
|
import { AlertModalCore, TOAST_TYPE, setToast } from "@plane/ui";
|
|
|
|
interface IStickyDelete {
|
|
isOpen: boolean;
|
|
handleSubmit: () => void;
|
|
handleClose: () => void;
|
|
}
|
|
|
|
export const StickyDeleteModal: React.FC<IStickyDelete> = observer((props) => {
|
|
const { isOpen, handleClose, handleSubmit } = props;
|
|
// states
|
|
const [loader, setLoader] = useState(false);
|
|
|
|
const formSubmit = async () => {
|
|
try {
|
|
setLoader(true);
|
|
await handleSubmit();
|
|
} catch (error) {
|
|
setToast({
|
|
type: TOAST_TYPE.ERROR,
|
|
title: "Warning!",
|
|
message: "Something went wrong please try again later.",
|
|
});
|
|
} finally {
|
|
setLoader(false);
|
|
}
|
|
};
|
|
|
|
return (
|
|
<AlertModalCore
|
|
handleClose={handleClose}
|
|
handleSubmit={formSubmit}
|
|
isSubmitting={loader}
|
|
isOpen={isOpen}
|
|
title="Delete sticky"
|
|
content={<>Are you sure you want to delete the sticky? </>}
|
|
/>
|
|
);
|
|
});
|