tiptap/packages/extension-text-style/src/index.ts

51 lines
984 B
TypeScript
Raw Normal View History

2020-11-06 23:21:19 +08:00
import { Command, createMark, getMarkAttrs } from '@tiptap/core'
2020-11-06 21:46:59 +08:00
const TextStyle = createMark({
name: 'textStyle',
parseHTML() {
return [
{
tag: 'span',
2020-11-06 23:21:19 +08:00
getAttrs: element => {
const hasStyles = (element as HTMLElement).hasAttribute('style')
if (!hasStyles) {
return false
}
return {}
},
2020-11-06 21:46:59 +08:00
},
]
},
renderHTML({ attributes }) {
return ['span', attributes, 0]
},
2020-11-06 23:21:19 +08:00
addCommands() {
return {
removeEmptyTextStyle: (): Command => ({ state, commands }) => {
const attributes = getMarkAttrs(state, this.type)
const hasStyles = Object.entries(attributes).every(([, value]) => !!value)
if (hasStyles) {
return true
}
return commands.removeMark('textStyle')
},
}
},
2020-11-06 21:46:59 +08:00
})
export default TextStyle
declare module '@tiptap/core/src/Editor' {
interface AllExtensions {
TextStyle: typeof TextStyle,
}
}