mirror of
https://github.com/makeplane/plane.git
synced 2025-12-23 07:09:34 +01:00
* dev: support for edition specific options in pages * refactor: page quick actions * chore: add customizable page actions * fix: type errors * dev: hook to get page operations * refactor: remove unnecessary props * chore: add permisssions to duplicate page endpoint * chore: memoize arranged options * chore: use enum for page access * chore: add type assertion * fix: auth for access change and delete * fix: removing readonly editor * chore: add sync for page access cahnge * fix: sync state * fix: indexeddb sync loader added * fix: remove node error fixed * style: page title and checkbox * chore: removing the syncing logic * revert: is editable check removed in display message * fix: editable field optional * fix: editable removed as optional prop * fix: extra options import fix * fix: remove readonly stuff * fix: added toggle access * chore: add access change sync * fix: full width toggle * refactor: types and enums added * refactore: update store action * chore: changed the duplicate viewset * fix: remove the page binary * fix: duplicate page action * fix: merge conflicts --------- Co-authored-by: Palanikannan M <akashmalinimurugu@gmail.com> Co-authored-by: NarayanBavisetti <narayan3119@gmail.com>
198 lines
5.9 KiB
TypeScript
198 lines
5.9 KiB
TypeScript
import { useMemo } from "react";
|
|
import { useParams } from "next/navigation";
|
|
// plane editor
|
|
import { EditorRefApi } from "@plane/editor";
|
|
// plane types
|
|
import { EPageAccess } from "@plane/types/src/enums";
|
|
// plane ui
|
|
import { setToast, TOAST_TYPE } from "@plane/ui";
|
|
// helpers
|
|
import { copyUrlToClipboard } from "@/helpers/string.helper";
|
|
// hooks
|
|
import { useCollaborativePageActions } from "@/hooks/use-collaborative-page-actions";
|
|
// store types
|
|
import { TPageInstance } from "@/store/pages/base-page";
|
|
|
|
export type TPageOperations = {
|
|
toggleLock: () => void;
|
|
toggleAccess: () => void;
|
|
toggleFavorite: () => void;
|
|
openInNewTab: () => void;
|
|
copyLink: () => void;
|
|
duplicate: () => void;
|
|
toggleArchive: () => void;
|
|
};
|
|
|
|
type Props = {
|
|
editorRef?: EditorRefApi | null;
|
|
page: TPageInstance;
|
|
};
|
|
|
|
export const usePageOperations = (
|
|
props: Props
|
|
): {
|
|
pageOperations: TPageOperations;
|
|
} => {
|
|
const { page } = props;
|
|
// params
|
|
const { workspaceSlug, projectId } = useParams();
|
|
// derived values
|
|
const { access, addToFavorites, archived_at, duplicate, id, is_favorite, is_locked, removePageFromFavorites } = page;
|
|
// collaborative actions
|
|
const { executeCollaborativeAction } = useCollaborativePageActions(props);
|
|
// page operations
|
|
const pageOperations: TPageOperations = useMemo(() => {
|
|
const pageLink = projectId ? `${workspaceSlug}/projects/${projectId}/pages/${id}` : `${workspaceSlug}/pages/${id}`;
|
|
|
|
return {
|
|
copyLink: () => {
|
|
copyUrlToClipboard(pageLink).then(() => {
|
|
setToast({
|
|
type: TOAST_TYPE.SUCCESS,
|
|
title: "Link Copied!",
|
|
message: "Page link copied to clipboard.",
|
|
});
|
|
});
|
|
},
|
|
duplicate: async () => {
|
|
try {
|
|
await duplicate();
|
|
setToast({
|
|
type: TOAST_TYPE.SUCCESS,
|
|
title: "Success!",
|
|
message: "Page duplicated successfully.",
|
|
});
|
|
} catch {
|
|
setToast({
|
|
type: TOAST_TYPE.ERROR,
|
|
title: "Error!",
|
|
message: "Page could not be duplicated. Please try again later.",
|
|
});
|
|
}
|
|
},
|
|
move: async () => {},
|
|
openInNewTab: () => window.open(`/${pageLink}`, "_blank"),
|
|
toggleAccess: async () => {
|
|
const changedPageType = access === EPageAccess.PUBLIC ? "private" : "public";
|
|
try {
|
|
if (access === EPageAccess.PUBLIC)
|
|
await executeCollaborativeAction({ type: "sendMessageToServer", message: "make-private" });
|
|
else await executeCollaborativeAction({ type: "sendMessageToServer", message: "make-public" });
|
|
|
|
setToast({
|
|
type: TOAST_TYPE.SUCCESS,
|
|
title: "Success!",
|
|
message: `The page has been marked ${changedPageType} and moved to the ${changedPageType} section.`,
|
|
});
|
|
} catch {
|
|
setToast({
|
|
type: TOAST_TYPE.ERROR,
|
|
title: "Error!",
|
|
message: `The page couldn't be marked ${changedPageType}. Please try again.`,
|
|
});
|
|
}
|
|
},
|
|
toggleArchive: async () => {
|
|
if (archived_at) {
|
|
try {
|
|
await executeCollaborativeAction({ type: "sendMessageToServer", message: "unarchive" });
|
|
setToast({
|
|
type: TOAST_TYPE.SUCCESS,
|
|
title: "Success!",
|
|
message: "Page restored successfully.",
|
|
});
|
|
} catch {
|
|
setToast({
|
|
type: TOAST_TYPE.ERROR,
|
|
title: "Error!",
|
|
message: "Page could not be restored. Please try again later.",
|
|
});
|
|
}
|
|
} else {
|
|
try {
|
|
await executeCollaborativeAction({ type: "sendMessageToServer", message: "archive" });
|
|
setToast({
|
|
type: TOAST_TYPE.SUCCESS,
|
|
title: "Success!",
|
|
message: "Page archived successfully.",
|
|
});
|
|
} catch {
|
|
setToast({
|
|
type: TOAST_TYPE.ERROR,
|
|
title: "Error!",
|
|
message: "Page could not be archived. Please try again later.",
|
|
});
|
|
}
|
|
}
|
|
},
|
|
toggleFavorite: () => {
|
|
if (is_favorite) {
|
|
removePageFromFavorites().then(() =>
|
|
setToast({
|
|
type: TOAST_TYPE.SUCCESS,
|
|
title: "Success!",
|
|
message: "Page removed from favorites.",
|
|
})
|
|
);
|
|
} else {
|
|
addToFavorites().then(() =>
|
|
setToast({
|
|
type: TOAST_TYPE.SUCCESS,
|
|
title: "Success!",
|
|
message: "Page added to favorites.",
|
|
})
|
|
);
|
|
}
|
|
},
|
|
toggleLock: async () => {
|
|
if (is_locked) {
|
|
try {
|
|
await executeCollaborativeAction({ type: "sendMessageToServer", message: "unlock" });
|
|
setToast({
|
|
type: TOAST_TYPE.SUCCESS,
|
|
title: "Success!",
|
|
message: "Page unlocked successfully.",
|
|
});
|
|
} catch {
|
|
setToast({
|
|
type: TOAST_TYPE.ERROR,
|
|
title: "Error!",
|
|
message: "Page could not be unlocked. Please try again later.",
|
|
});
|
|
}
|
|
} else {
|
|
try {
|
|
await executeCollaborativeAction({ type: "sendMessageToServer", message: "lock" });
|
|
setToast({
|
|
type: TOAST_TYPE.SUCCESS,
|
|
title: "Success!",
|
|
message: "Page locked successfully.",
|
|
});
|
|
} catch {
|
|
setToast({
|
|
type: TOAST_TYPE.ERROR,
|
|
title: "Error!",
|
|
message: "Page could not be locked. Please try again later.",
|
|
});
|
|
}
|
|
}
|
|
},
|
|
};
|
|
}, [
|
|
access,
|
|
addToFavorites,
|
|
archived_at,
|
|
duplicate,
|
|
executeCollaborativeAction,
|
|
id,
|
|
is_favorite,
|
|
is_locked,
|
|
projectId,
|
|
removePageFromFavorites,
|
|
workspaceSlug,
|
|
]);
|
|
return {
|
|
pageOperations,
|
|
};
|
|
};
|