mirror of
https://github.com/Ategon/Jamjar.git
synced 2025-02-12 06:16:21 +00:00
Add links
This commit is contained in:
parent
f8b2ca69d9
commit
333bb8b387
3 changed files with 32 additions and 1 deletions
24
package-lock.json
generated
24
package-lock.json
generated
|
@ -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",
|
||||
|
|
|
@ -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",
|
||||
|
|
|
@ -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,
|
||||
|
|
Loading…
Reference in a new issue