From 333bb8b38796b3ae25d6b3057999ee5fd3261948 Mon Sep 17 00:00:00 2001 From: Ategon Date: Mon, 10 Feb 2025 19:48:34 -0500 Subject: [PATCH] Add links --- package-lock.json | 24 ++++++++++++++++++++++++ package.json | 1 + src/components/editor/index.tsx | 8 +++++++- 3 files changed, 32 insertions(+), 1 deletion(-) diff --git a/package-lock.json b/package-lock.json index 937a4f5..c7fa9db 100644 --- a/package-lock.json +++ b/package-lock.json @@ -25,6 +25,7 @@ "@tiptap/extension-horizontal-rule": "^2.11.2", "@tiptap/extension-image": "^2.11.2", "@tiptap/extension-italic": "^2.11.2", + "@tiptap/extension-link": "^2.11.5", "@tiptap/extension-list-item": "^2.11.2", "@tiptap/extension-ordered-list": "^2.11.2", "@tiptap/extension-paragraph": "^2.11.2", @@ -4361,6 +4362,23 @@ "@tiptap/core": "^2.7.0" } }, + "node_modules/@tiptap/extension-link": { + "version": "2.11.5", + "resolved": "https://registry.npmjs.org/@tiptap/extension-link/-/extension-link-2.11.5.tgz", + "integrity": "sha512-4Iu/aPzevbYpe50xDI0ZkqRa6nkZ9eF270Ue2qaF3Ab47nehj+9Jl78XXzo8+LTyFMnrETI73TAs1aC/IGySeQ==", + "license": "MIT", + "dependencies": { + "linkifyjs": "^4.2.0" + }, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/ueberdosis" + }, + "peerDependencies": { + "@tiptap/core": "^2.7.0", + "@tiptap/pm": "^2.7.0" + } + }, "node_modules/@tiptap/extension-list-item": { "version": "2.11.2", "resolved": "https://registry.npmjs.org/@tiptap/extension-list-item/-/extension-list-item-2.11.2.tgz", @@ -7980,6 +7998,12 @@ "uc.micro": "^2.0.0" } }, + "node_modules/linkifyjs": { + "version": "4.2.0", + "resolved": "https://registry.npmjs.org/linkifyjs/-/linkifyjs-4.2.0.tgz", + "integrity": "sha512-pCj3PrQyATaoTYKHrgWRF3SJwsm61udVh+vuls/Rl6SptiDhgE7ziUIudAedRY9QEfynmM7/RmLEfPUyw1HPCw==", + "license": "MIT" + }, "node_modules/locate-path": { "version": "6.0.0", "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-6.0.0.tgz", diff --git a/package.json b/package.json index 0e525c2..9ce4adb 100644 --- a/package.json +++ b/package.json @@ -26,6 +26,7 @@ "@tiptap/extension-horizontal-rule": "^2.11.2", "@tiptap/extension-image": "^2.11.2", "@tiptap/extension-italic": "^2.11.2", + "@tiptap/extension-link": "^2.11.5", "@tiptap/extension-list-item": "^2.11.2", "@tiptap/extension-ordered-list": "^2.11.2", "@tiptap/extension-paragraph": "^2.11.2", diff --git a/src/components/editor/index.tsx b/src/components/editor/index.tsx index 6c8a2fe..5c1edc0 100644 --- a/src/components/editor/index.tsx +++ b/src/components/editor/index.tsx @@ -36,6 +36,7 @@ import Youtube from "@tiptap/extension-youtube"; import CodeBlock from "@tiptap/extension-code-block"; import { Spacer } from "@nextui-org/react"; import { useTheme } from "next-themes"; +import Link from "@tiptap/extension-link"; type EditorProps = { content: string; @@ -45,7 +46,11 @@ type EditorProps = { const limit = 32767; -export default function Editor({ content, setContent,gameEditor }: EditorProps) { +export default function Editor({ + content, + setContent, + gameEditor, +}: EditorProps) { const { theme } = useTheme(); const editor = useEditor({ @@ -89,6 +94,7 @@ export default function Editor({ content, setContent,gameEditor }: EditorProps) TableCell, Youtube, CodeBlock, + Link, ], content: content, immediatelyRender: false,