mirror of
https://github.com/linsa-io/linsa.git
synced 2026-03-18 07:13:55 +01:00
37 lines
833 B
TypeScript
37 lines
833 B
TypeScript
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
|