25 lines
645 B
TypeScript
25 lines
645 B
TypeScript
import { Command } from '../Editor'
|
|
|
|
export default (attributeNames: string[] = []): Command => ({ tr, state, dispatch }) => {
|
|
const { selection } = tr
|
|
const { from, to } = selection
|
|
|
|
state.doc.nodesBetween(from, to, (node, pos) => {
|
|
if (!node.type.isText) {
|
|
attributeNames.forEach(name => {
|
|
const attribute = node.type.spec.attrs?.[name]
|
|
const defaultValue = attribute?.default
|
|
|
|
if (attribute && defaultValue !== undefined && dispatch) {
|
|
tr.setNodeMarkup(pos, undefined, {
|
|
...node.attrs,
|
|
[name]: defaultValue,
|
|
})
|
|
}
|
|
})
|
|
}
|
|
})
|
|
|
|
return true
|
|
}
|