mirror of
https://github.com/docmost/docmost.git
synced 2025-11-19 13:11:12 +10:00
Editor link components
* other minor fixes
This commit is contained in:
36
packages/editor-ext/src/lib/selection.ts
Normal file
36
packages/editor-ext/src/lib/selection.ts
Normal file
@ -0,0 +1,36 @@
|
||||
import { Extension } from "@tiptap/core";
|
||||
import { Plugin, PluginKey } from "@tiptap/pm/state";
|
||||
import { Decoration, DecorationSet } from "@tiptap/pm/view";
|
||||
|
||||
export const Selection = Extension.create({
|
||||
name: "selection",
|
||||
|
||||
addProseMirrorPlugins() {
|
||||
const { editor } = this;
|
||||
|
||||
return [
|
||||
new Plugin({
|
||||
key: new PluginKey("selection"),
|
||||
props: {
|
||||
decorations(state) {
|
||||
if (state.selection.empty) {
|
||||
return null;
|
||||
}
|
||||
|
||||
if (editor.isFocused === true) {
|
||||
return null;
|
||||
}
|
||||
|
||||
return DecorationSet.create(state.doc, [
|
||||
Decoration.inline(state.selection.from, state.selection.to, {
|
||||
class: "selection",
|
||||
}),
|
||||
]);
|
||||
},
|
||||
},
|
||||
}),
|
||||
];
|
||||
},
|
||||
});
|
||||
|
||||
export default Selection;
|
||||
Reference in New Issue
Block a user