* chore: new description binary endpoints * chore: conflict free issue description * chore: fix submitting status * chore: update yjs utils * chore: handle component re-mounting * chore: update buffer response type * chore: add try catch for issue description update * chore: update buffer response type * chore: description binary in retrieve * chore: update issue description hook * chore: decode description binary * chore: migrations fixes and cleanup * chore: migration fixes * fix: inbox issue description * chore: move update operations to the issue store * fix: merge conflicts * chore: reverted the commit * chore: removed the unwanted imports * chore: remove unnecessary props * chore: remove unused services * chore: update live server error handling --------- Co-authored-by: NarayanBavisetti <narayan3119@gmail.com> Co-authored-by: sriram veeraghanta <veeraghanta.sriram@gmail.com>
48 lines
1.5 KiB
TypeScript
48 lines
1.5 KiB
TypeScript
import { useCallback, useEffect } from "react";
|
|
// plane editor
|
|
import { convertBinaryDataToBase64String, EditorRefApi } from "@plane/editor";
|
|
// plane types
|
|
import { TDocumentPayload } from "@plane/types";
|
|
// hooks
|
|
import useAutoSave from "@/hooks/use-auto-save";
|
|
|
|
type TArgs = {
|
|
editorRef: React.RefObject<EditorRefApi>;
|
|
fetchPageDescription: () => Promise<ArrayBuffer>;
|
|
hasConnectionFailed: boolean;
|
|
updatePageDescription: (data: TDocumentPayload) => Promise<void>;
|
|
};
|
|
|
|
export const usePageFallback = (args: TArgs) => {
|
|
const { editorRef, fetchPageDescription, hasConnectionFailed, updatePageDescription } = args;
|
|
|
|
const handleUpdateDescription = useCallback(async () => {
|
|
if (!hasConnectionFailed) return;
|
|
const editor = editorRef.current;
|
|
if (!editor) return;
|
|
|
|
const latestEncodedDescription = await fetchPageDescription();
|
|
const latestDecodedDescription = latestEncodedDescription
|
|
? new Uint8Array(latestEncodedDescription)
|
|
: new Uint8Array();
|
|
|
|
editor.setProviderDocument(latestDecodedDescription);
|
|
const { binary, html, json } = editor.getDocument();
|
|
if (!binary || !json) return;
|
|
const encodedBinary = convertBinaryDataToBase64String(binary);
|
|
|
|
await updatePageDescription({
|
|
description_binary: encodedBinary,
|
|
description_html: html,
|
|
description: json,
|
|
});
|
|
}, [hasConnectionFailed]);
|
|
|
|
useEffect(() => {
|
|
if (hasConnectionFailed) {
|
|
handleUpdateDescription();
|
|
}
|
|
}, [hasConnectionFailed]);
|
|
|
|
useAutoSave(handleUpdateDescription);
|
|
};
|