mirror of
https://github.com/ueberdosis/tiptap.git
synced 2024-11-28 23:59:25 +08:00
47 lines
1.2 KiB
TypeScript
47 lines
1.2 KiB
TypeScript
import { Extension } from '@tiptap/core'
|
|
import { Plugin } from 'prosemirror-state'
|
|
import { DecorationSet, Decoration } from 'prosemirror-view'
|
|
|
|
export interface FocusOptions {
|
|
className: string,
|
|
nested: boolean,
|
|
}
|
|
|
|
export default new Extension<FocusOptions>()
|
|
.name('focus')
|
|
.defaults({
|
|
className: 'has-focus',
|
|
nested: false,
|
|
})
|
|
.plugins(({ editor, options }) => [
|
|
new Plugin({
|
|
props: {
|
|
decorations: ({ doc, selection }) => {
|
|
const { isEditable, isFocused } = editor
|
|
const { anchor } = selection
|
|
const decorations: Decoration[] = []
|
|
|
|
if (!isEditable || !isFocused) {
|
|
return DecorationSet.create(doc, [])
|
|
}
|
|
|
|
doc.descendants((node, pos) => {
|
|
const hasAnchor = anchor >= pos && anchor <= (pos + node.nodeSize)
|
|
|
|
if (hasAnchor && !node.isText) {
|
|
const decoration = Decoration.node(pos, pos + node.nodeSize, {
|
|
class: options.className,
|
|
})
|
|
decorations.push(decoration)
|
|
}
|
|
|
|
return options.nested
|
|
})
|
|
|
|
return DecorationSet.create(doc, decorations)
|
|
},
|
|
},
|
|
}),
|
|
])
|
|
.create()
|