@atlaskit/editor-core
Version:
A package contains Atlassian editor core functionality
26 lines (23 loc) • 831 B
text/typescript
import { NodeSpec } from '../../';
const name = 'confluenceUnsupportedBlock';
export const confluenceUnsupportedBlock = {
group: 'block',
attrs: { cxhtml: { default: null } },
toDOM(node): [string, any, string] {
// NOTE: This node cannot be "contenteditable: false". If it's the only node in a document, PM throws an error because there's nowhere to put the cursor.
const attrs = {
'data-node-type': name,
'data-confluence-unsupported': 'block',
'data-confluence-unsupported-block-cxhtml': node.attrs['cxhtml'],
};
return ['div', attrs, 'Unsupported content'];
},
parseDOM: [
{
tag: `div[data-node-type="${name}"]`,
getAttrs(dom: HTMLElement) {
return { cxhtml: dom.getAttribute('data-confluence-unsupported-block-cxhtml')! };
}
}
]
} as NodeSpec;