mirror of
https://github.com/ueberdosis/tiptap.git
synced 2025-01-18 22:36:14 +08:00
check active nodes
This commit is contained in:
parent
dde047687a
commit
1bc75751b3
@ -13,6 +13,8 @@ import elementFromString from './utils/elementFromString'
|
||||
import injectCSS from './utils/injectCSS'
|
||||
import getAllMethodNames from './utils/getAllMethodNames'
|
||||
import nodeIsActive from './utils/nodeIsActive'
|
||||
import markIsActive from './utils/markIsActive'
|
||||
import getMarkAttrs from './utils/getMarkAttrs'
|
||||
import ExtensionManager from './ExtensionManager'
|
||||
import Extension from './Extension'
|
||||
import Node from './Node'
|
||||
@ -40,6 +42,9 @@ export class Editor extends EventEmitter {
|
||||
extensions: [],
|
||||
}
|
||||
commands: { [key: string]: any } = {}
|
||||
activeNodes: { [key: string]: any } = {}
|
||||
activeMarks: { [key: string]: any } = {}
|
||||
activeMarkAttrs: { [key: string]: any } = {}
|
||||
|
||||
private lastCommand = Promise.resolve()
|
||||
|
||||
@ -51,6 +56,7 @@ export class Editor extends EventEmitter {
|
||||
this.createExtensionManager()
|
||||
this.createSchema()
|
||||
this.createView()
|
||||
this.setActiveNodesAndMarks()
|
||||
this.registerCommand('focus', require('./commands/focus').default)
|
||||
this.registerCommand('insertText', require('./commands/insertText').default)
|
||||
this.registerCommand('insertHTML', require('./commands/insertHTML').default)
|
||||
@ -166,7 +172,6 @@ export class Editor extends EventEmitter {
|
||||
this.view.updateState(state)
|
||||
this.storeSelection()
|
||||
this.setActiveNodesAndMarks()
|
||||
|
||||
this.emit('transaction', { transaction })
|
||||
|
||||
if (!transaction.docChanged || transaction.getMeta('preventUpdate')) {
|
||||
@ -176,16 +181,44 @@ export class Editor extends EventEmitter {
|
||||
this.emit('update', { transaction })
|
||||
}
|
||||
|
||||
public setActiveNodesAndMarks() {
|
||||
// TODO
|
||||
// const activeNodes = Object
|
||||
// .entries(this.schema.nodes)
|
||||
// .reduce((nodes, [name, node]) => ({
|
||||
// ...nodes,
|
||||
// [name]: (attrs = {}) => nodeIsActive(this.state, node, attrs),
|
||||
// }), {})
|
||||
setActiveNodesAndMarks() {
|
||||
this.activeMarks = Object
|
||||
.entries(this.schema.marks)
|
||||
.reduce((marks, [name, mark]) => ({
|
||||
...marks,
|
||||
// [name]: (attrs = {}) => markIsActive(this.state, mark, attrs),
|
||||
[name]: () => markIsActive(this.state, mark),
|
||||
}), {})
|
||||
|
||||
// console.log({activeNodes})
|
||||
this.activeMarkAttrs = Object
|
||||
.entries(this.schema.marks)
|
||||
.reduce((marks, [name, mark]) => ({
|
||||
...marks,
|
||||
[name]: getMarkAttrs(this.state, mark),
|
||||
}), {})
|
||||
|
||||
this.activeNodes = Object
|
||||
.entries(this.schema.nodes)
|
||||
.reduce((nodes, [name, node]) => ({
|
||||
...nodes,
|
||||
[name]: (attrs = {}) => nodeIsActive(this.state, node, attrs),
|
||||
}), {})
|
||||
}
|
||||
|
||||
getMarkAttrs(name: string) {
|
||||
return this.activeMarkAttrs[name]
|
||||
}
|
||||
|
||||
get isActive() {
|
||||
return Object
|
||||
.entries({
|
||||
...this.activeMarks,
|
||||
...this.activeNodes,
|
||||
})
|
||||
.reduce((types, [name, value]) => ({
|
||||
...types,
|
||||
[name]: (attrs = {}) => value(attrs),
|
||||
}), {})
|
||||
}
|
||||
|
||||
// public setParentComponent(component = null) {
|
||||
|
@ -7,7 +7,7 @@
|
||||
<button @click="editor.redo().focus()">
|
||||
redo
|
||||
</button>
|
||||
<button @click="editor.bold().focus()">
|
||||
<button @click="editor.bold().focus()" :class="{ 'is-active': editor.isActive.bold() }">
|
||||
bold
|
||||
</button>
|
||||
</div>
|
||||
|
@ -49,6 +49,11 @@ body {
|
||||
outline: none;
|
||||
}
|
||||
|
||||
.is-active {
|
||||
background: black;
|
||||
color: white;
|
||||
}
|
||||
|
||||
// :not(pre) > code[class*="language-"], pre[class*="language-"] {
|
||||
// background-color: $colorBlack;
|
||||
// }
|
||||
|
Loading…
Reference in New Issue
Block a user