UNPKG

@wordpress/block-library

Version:
94 lines (93 loc) 2.53 kB
/** * WordPress dependencies */ import { createBlock } from '@wordpress/blocks'; /** * Internal dependencies */ import { normalizeRowColSpan } from './utils'; const tableContentPasteSchema = ({ phrasingContentSchema }) => ({ tr: { allowEmpty: true, children: { th: { allowEmpty: true, children: phrasingContentSchema, attributes: ['scope', 'colspan', 'rowspan', 'style'] }, td: { allowEmpty: true, children: phrasingContentSchema, attributes: ['colspan', 'rowspan', 'style'] } } } }); const tablePasteSchema = args => ({ table: { children: { thead: { allowEmpty: true, children: tableContentPasteSchema(args) }, tfoot: { allowEmpty: true, children: tableContentPasteSchema(args) }, tbody: { allowEmpty: true, children: tableContentPasteSchema(args) } } } }); const transforms = { from: [{ type: 'raw', selector: 'table', schema: tablePasteSchema, transform: node => { const attributes = Array.from(node.children).reduce((sectionAcc, section) => { if (!section.children.length) { return sectionAcc; } const sectionName = section.nodeName.toLowerCase().slice(1); const sectionAttributes = Array.from(section.children).reduce((rowAcc, row) => { if (!row.children.length) { return rowAcc; } const rowAttributes = Array.from(row.children).reduce((colAcc, col) => { const rowspan = normalizeRowColSpan(col.getAttribute('rowspan')); const colspan = normalizeRowColSpan(col.getAttribute('colspan')); const { textAlign } = col.style || {}; let align; if (textAlign === 'left' || textAlign === 'center' || textAlign === 'right') { align = textAlign; } colAcc.push({ tag: col.nodeName.toLowerCase(), content: col.innerHTML, rowspan, colspan, align }); return colAcc; }, []); rowAcc.push({ cells: rowAttributes }); return rowAcc; }, []); sectionAcc[sectionName] = sectionAttributes; return sectionAcc; }, {}); return createBlock('core/table', attributes); } }] }; export default transforms; //# sourceMappingURL=transforms.js.map