-
-
Notifications
You must be signed in to change notification settings - Fork 2.3k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
6987505
commit 7ffabf2
Showing
26 changed files
with
555 additions
and
105 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
19 changes: 19 additions & 0 deletions
19
demos/src/Experiments/ExtensionStorage/React/CustomExtension.ts
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
import { Extension } from '@tiptap/core' | ||
|
||
type CustomStorage = { | ||
foo: number, | ||
} | ||
|
||
export const CustomExtension = Extension.create<{}, CustomStorage>({ | ||
name: 'custom', | ||
|
||
addStorage() { | ||
return { | ||
foo: 123, | ||
} | ||
}, | ||
|
||
onUpdate() { | ||
this.storage.foo += 1 | ||
}, | ||
}) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
<!DOCTYPE html> | ||
<html lang="en"> | ||
<head> | ||
<meta charset="utf-8"/> | ||
<meta name="viewport" content="width=device-width, initial-scale=1.0"/> | ||
</head> | ||
<body> | ||
<div id="app"></div> | ||
<script type="module"> | ||
import setup from '../../../../setup/react.ts' | ||
import source from '@source' | ||
setup('Experiments/ExtensionStorage', source) | ||
</script> | ||
</body> | ||
</html> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,33 @@ | ||
import React from 'react' | ||
import { useEditor, EditorContent } from '@tiptap/react' | ||
import Document from '@tiptap/extension-document' | ||
import Paragraph from '@tiptap/extension-paragraph' | ||
import Text from '@tiptap/extension-text' | ||
import { CustomExtension } from './CustomExtension' | ||
import './styles.scss' | ||
|
||
export default () => { | ||
const editor = useEditor({ | ||
extensions: [ | ||
Document, | ||
Paragraph, | ||
Text, | ||
CustomExtension, | ||
], | ||
content: ` | ||
<p> | ||
This is a radically reduced version of tiptap. It has support for a document, with paragraphs and text. That’s it. It’s probably too much for real minimalists though. | ||
</p> | ||
<p> | ||
The paragraph extension is not really required, but you need at least one node. Sure, that node can be something different. | ||
</p> | ||
`, | ||
}) | ||
|
||
return ( | ||
<> | ||
reactive storage: {editor?.storage.custom.foo} | ||
<EditorContent editor={editor} /> | ||
</> | ||
) | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
/* Basic editor styles */ | ||
.ProseMirror { | ||
> * + * { | ||
margin-top: 0.75em; | ||
} | ||
} |
19 changes: 19 additions & 0 deletions
19
demos/src/Experiments/ExtensionStorage/Vue/CustomExtension.ts
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
import { Extension } from '@tiptap/core' | ||
|
||
type CustomStorage = { | ||
foo: number, | ||
} | ||
|
||
export const CustomExtension = Extension.create<{}, CustomStorage>({ | ||
name: 'custom', | ||
|
||
addStorage() { | ||
return { | ||
foo: 123, | ||
} | ||
}, | ||
|
||
onUpdate() { | ||
this.storage.foo += 1 | ||
}, | ||
}) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
<!DOCTYPE html> | ||
<html lang="en"> | ||
<head> | ||
<meta charset="utf-8"/> | ||
<meta name="viewport" content="width=device-width, initial-scale=1.0"/> | ||
</head> | ||
<body> | ||
<div id="app"></div> | ||
<script type="module"> | ||
import setup from '../../../../setup/vue.ts' | ||
import source from '@source' | ||
setup('Experiments/ExtensionStorage', source) | ||
</script> | ||
</body> | ||
</html> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,56 @@ | ||
<template> | ||
reactive storage: {{ editor?.storage.custom.foo }} | ||
<editor-content :editor="editor" /> | ||
</template> | ||
|
||
<script> | ||
import { Editor, EditorContent } from '@tiptap/vue-3' | ||
import Document from '@tiptap/extension-document' | ||
import Paragraph from '@tiptap/extension-paragraph' | ||
import Text from '@tiptap/extension-text' | ||
import { CustomExtension } from './CustomExtension' | ||
export default { | ||
components: { | ||
EditorContent, | ||
}, | ||
data() { | ||
return { | ||
editor: null, | ||
} | ||
}, | ||
mounted() { | ||
this.editor = new Editor({ | ||
extensions: [ | ||
Document, | ||
Paragraph, | ||
Text, | ||
CustomExtension, | ||
], | ||
content: ` | ||
<p> | ||
This is a radically reduced version of tiptap. It has support for a document, with paragraphs and text. That’s it. It’s probably too much for real minimalists though. | ||
</p> | ||
<p> | ||
The paragraph extension is not really required, but you need at least one node. Sure, that node can be something different. | ||
</p> | ||
`, | ||
}) | ||
}, | ||
beforeUnmount() { | ||
this.editor.destroy() | ||
}, | ||
} | ||
</script> | ||
|
||
<style lang="scss"> | ||
/* Basic editor styles */ | ||
.ProseMirror { | ||
> * + * { | ||
margin-top: 0.75em; | ||
} | ||
} | ||
</style> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.