Files
linsa-linsa-io/web/shared/editor/hooks/use-la-editor.ts
Aslam a440828f8c chore: Enhancement + New Feature (#185)
* wip

* wip page

* chore: style

* wip pages

* wip pages

* chore: toggle

* chore: link

* feat: topic search

* chore: page section

* refactor: apply tailwind class ordering

* fix: handle loggedIn user for guest route

* feat: folder & image schema

* chore: move utils to shared

* refactor: tailwind class ordering

* feat: img ext for editor

* refactor: remove qa

* fix: tanstack start

* fix: wrong import

* chore: use toast

* chore: schema
2024-10-18 21:18:20 +07:00

255 lines
6.8 KiB
TypeScript

import * as React from "react"
import type { Editor } from "@tiptap/core"
import type { Content, EditorOptions, UseEditorOptions } from "@tiptap/react"
import { useEditor } from "@tiptap/react"
import { cn } from "@/lib/utils"
import { useThrottleCallback } from "@shared/hooks/use-throttle-callback"
import { getOutput } from "@shared/editor/lib/utils"
import { StarterKit } from "@shared/editor/extensions/starter-kit"
import { TaskList } from "@shared/editor/extensions/task-list"
import { TaskItem } from "@shared/editor/extensions/task-item"
import { HorizontalRule } from "@shared/editor/extensions/horizontal-rule"
import { Blockquote } from "@shared/editor/extensions/blockquote/blockquote"
import { SlashCommand } from "@shared/editor/extensions/slash-command"
import { Heading } from "@shared/editor/extensions/heading"
import { Link } from "@shared/editor/extensions/link"
import { CodeBlockLowlight } from "@shared/editor/extensions/code-block-lowlight"
import { Selection } from "@shared/editor/extensions/selection"
import { Code } from "@shared/editor/extensions/code"
import { Paragraph } from "@shared/editor/extensions/paragraph"
import { BulletList } from "@shared/editor/extensions/bullet-list"
import { OrderedList } from "@shared/editor/extensions/ordered-list"
import { Dropcursor } from "@shared/editor/extensions/dropcursor"
import { Image } from "../extensions/image"
import { FileHandler } from "../extensions/file-handler"
import { toast } from "sonner"
import { useAccount } from "~/lib/providers/jazz-provider"
import { ImageLists } from "~/lib/schema/folder"
import { LaAccount, Image as LaImage } from "~/lib/schema"
import { storeImageFn } from "@shared/actions"
export interface UseLaEditorProps
extends Omit<UseEditorOptions, "editorProps"> {
value?: Content
output?: "html" | "json" | "text"
placeholder?: string
editorClassName?: string
throttleDelay?: number
onUpdate?: (content: Content) => void
onBlur?: (content: Content) => void
editorProps?: EditorOptions["editorProps"]
}
const createExtensions = ({
me,
placeholder,
}: {
me?: LaAccount
placeholder: string
}) => [
Heading,
Code,
Link,
TaskList,
TaskItem,
Selection,
Paragraph,
Image.configure({
allowedMimeTypes: ["image/*"],
maxFileSize: 5 * 1024 * 1024,
allowBase64: true,
uploadFn: async (blobUrl) => {
const uniqueId = Math.random().toString(36).substring(7)
const response = await fetch(blobUrl)
const blob = await response.blob()
const file = new File([blob], `${uniqueId}`, { type: blob.type })
const formData = new FormData()
formData.append("file", file)
const store = await storeImageFn(formData)
if (me) {
if (!me.root?.images) {
me.root!.images = ImageLists.create([], { owner: me })
}
const img = LaImage.create(
{
url: store.fileModel.content.src,
createdAt: new Date(),
updatedAt: new Date(),
},
{ owner: me },
)
me.root!.images.push(img)
}
return store.fileModel.content.src
},
onToggle(editor, files, pos) {
files.forEach((file) =>
editor.commands.insertContentAt(pos, {
type: "image",
attrs: { src: URL.createObjectURL(file) },
}),
)
},
onValidationError(errors) {
errors.forEach((error) => {
toast.error("Image validation error", {
position: "bottom-right",
description: error.reason,
})
})
},
onActionSuccess({ action }) {
const mapping = {
copyImage: "Copy Image",
copyLink: "Copy Link",
download: "Download",
}
toast.success(mapping[action], {
position: "bottom-right",
description: "Image action success",
})
},
onActionError(error, { action }) {
const mapping = {
copyImage: "Copy Image",
copyLink: "Copy Link",
download: "Download",
}
toast.error(`Failed to ${mapping[action]}`, {
position: "bottom-right",
description: error.message,
})
},
}),
FileHandler.configure({
allowBase64: true,
allowedMimeTypes: ["image/*"],
maxFileSize: 5 * 1024 * 1024,
onDrop: (editor, files, pos) => {
files.forEach((file) =>
editor.commands.insertContentAt(pos, {
type: "image",
attrs: { src: URL.createObjectURL(file) },
}),
)
},
onPaste: (editor, files) => {
files.forEach((file) =>
editor.commands.insertContent({
type: "image",
attrs: { src: URL.createObjectURL(file) },
}),
)
},
onValidationError: (errors) => {
errors.forEach((error) => {
console.log("File validation error", error)
})
},
}),
Dropcursor,
Blockquote,
BulletList,
OrderedList,
SlashCommand,
HorizontalRule,
CodeBlockLowlight,
StarterKit.configure({
placeholder: {
placeholder: () => placeholder,
},
}),
]
export const useLaEditor = ({
value,
output = "html",
placeholder = "",
editorClassName,
throttleDelay = 0,
onUpdate,
onBlur,
editorProps,
...props
}: UseLaEditorProps) => {
const { me } = useAccount({ root: { images: [] } })
const throttledSetValue = useThrottleCallback(
(editor: Editor) => {
const content = getOutput(editor, output)
onUpdate?.(content)
},
[output, onUpdate],
throttleDelay,
)
const handleCreate = React.useCallback(
(editor: Editor) => {
if (value) {
editor.commands.setContent(value)
}
},
[value],
)
const handleBlur = React.useCallback(
(editor: Editor) => {
const content = getOutput(editor, output)
onBlur?.(content)
},
[output, onBlur],
)
const mergedEditorProps = React.useMemo(() => {
const defaultEditorProps: EditorOptions["editorProps"] = {
attributes: {
autocomplete: "off",
autocorrect: "off",
autocapitalize: "off",
class: cn("focus:outline-none", editorClassName),
},
}
if (!editorProps) return defaultEditorProps
return {
...defaultEditorProps,
...editorProps,
attributes: {
...defaultEditorProps.attributes,
...editorProps.attributes,
},
}
}, [editorProps, editorClassName])
const editorOptions: UseEditorOptions = React.useMemo(
() => ({
extensions: createExtensions({ me, placeholder }),
editorProps: mergedEditorProps,
onUpdate: ({ editor }) => throttledSetValue(editor),
onCreate: ({ editor }) => handleCreate(editor),
onBlur: ({ editor }) => handleBlur(editor),
...props,
}),
[
placeholder,
mergedEditorProps,
throttledSetValue,
handleCreate,
handleBlur,
props,
],
)
return useEditor(editorOptions)
}
export default useLaEditor