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

54 lines
1.0 KiB
TypeScript
Raw Normal View History

2020-11-18 04:10:08 +08:00
import { Command, Mark, getMarkAttributes } from '@tiptap/core'
2020-11-06 21:46:59 +08:00
const TextStyle = Mark.create({
2020-11-06 21:46:59 +08:00
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
},
]
},
2020-11-13 23:07:20 +08:00
renderHTML({ HTMLAttributes }) {
return ['span', HTMLAttributes, 0]
2020-11-06 21:46:59 +08:00
},
2020-11-06 23:21:19 +08:00
addCommands() {
return {
2020-11-13 22:08:30 +08:00
/**
* Remove spans without inline style attributes.
*/
2020-11-06 23:21:19 +08:00
removeEmptyTextStyle: (): Command => ({ state, commands }) => {
2020-11-18 04:10:08 +08:00
const attributes = getMarkAttributes(state, this.type)
2020-11-06 23:21:19 +08:00
const hasStyles = Object.entries(attributes).every(([, value]) => !!value)
if (hasStyles) {
return true
}
2020-11-19 00:38:16 +08:00
return commands.unsetMark('textStyle')
2020-11-06 23:21:19 +08:00
},
}
},
2020-11-06 21:46:59 +08:00
})
export default TextStyle
declare module '@tiptap/core' {
interface AllExtensions {
TextStyle: typeof TextStyle,
2020-11-06 21:46:59 +08:00
}
}