@atlaskit/editor-plugin-block-menu 6.0.9 → 6.0.10
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +8 -0
- package/dist/cjs/editor-commands/transform-node-utils/TRANSFORMATION_MATRIX.js +224 -0
- package/dist/cjs/editor-commands/transform-node-utils/steps/convertEachNodeStep.js +58 -1
- package/dist/cjs/editor-commands/transform-node-utils/steps/wrapMixedContentStep.js +12 -1
- package/dist/cjs/editor-commands/transform-node-utils/transform.js +4 -238
- package/dist/cjs/editor-commands/transform-node-utils/utils.js +33 -11
- package/dist/es2019/editor-commands/transform-node-utils/TRANSFORMATION_MATRIX.js +219 -0
- package/dist/es2019/editor-commands/transform-node-utils/steps/convertEachNodeStep.js +56 -1
- package/dist/es2019/editor-commands/transform-node-utils/steps/wrapMixedContentStep.js +13 -2
- package/dist/es2019/editor-commands/transform-node-utils/transform.js +5 -240
- package/dist/es2019/editor-commands/transform-node-utils/utils.js +32 -10
- package/dist/esm/editor-commands/transform-node-utils/TRANSFORMATION_MATRIX.js +219 -0
- package/dist/esm/editor-commands/transform-node-utils/steps/convertEachNodeStep.js +58 -1
- package/dist/esm/editor-commands/transform-node-utils/steps/wrapMixedContentStep.js +13 -2
- package/dist/esm/editor-commands/transform-node-utils/transform.js +5 -240
- package/dist/esm/editor-commands/transform-node-utils/utils.js +32 -10
- package/dist/types/editor-commands/transform-node-utils/TRANSFORMATION_MATRIX.d.ts +2 -0
- package/dist/types/editor-commands/transform-node-utils/utils.d.ts +10 -5
- package/dist/types-ts4.5/editor-commands/transform-node-utils/TRANSFORMATION_MATRIX.d.ts +2 -0
- package/dist/types-ts4.5/editor-commands/transform-node-utils/utils.d.ts +10 -5
- package/package.json +4 -4
|
@@ -0,0 +1,219 @@
|
|
|
1
|
+
import { flattenStep } from './flattenStep';
|
|
2
|
+
import { applyTargetTextTypeStep } from './steps/applyTargetTextTypeStep';
|
|
3
|
+
import { convertEachNodeStep } from './steps/convertEachNodeStep';
|
|
4
|
+
import { decisionListToListStep } from './steps/decisionListToListStep';
|
|
5
|
+
import { flattenListStep } from './steps/flattenListStep';
|
|
6
|
+
import { listToDecisionListStep } from './steps/listToDecisionListStep';
|
|
7
|
+
import { listToListStep } from './steps/listToListStep';
|
|
8
|
+
import { mergeNeighbourListsStep } from './steps/mergeNeighbourListsStep';
|
|
9
|
+
import { unwrapLayoutStep } from './steps/unwrapLayoutStep';
|
|
10
|
+
import { unwrapListStep } from './steps/unwrapListStep';
|
|
11
|
+
import { wrapBlockquoteToDecisionListStep } from './steps/wrapBlockquoteToDecisionListStep';
|
|
12
|
+
import { wrapMixedContentStep } from './steps/wrapMixedContentStep';
|
|
13
|
+
import { unwrapExpandStep } from './unwrapExpandStep';
|
|
14
|
+
import { unwrapStep } from './unwrapStep';
|
|
15
|
+
import { wrapIntoListStep } from './wrapIntoListStep';
|
|
16
|
+
import { wrapStep } from './wrapStep';
|
|
17
|
+
|
|
18
|
+
// Transform steps for all node type pairs.
|
|
19
|
+
// If a transformation is not defined (undefined), it is not available.
|
|
20
|
+
export const TRANSFORMATION_MATRIX = {
|
|
21
|
+
paragraph: {
|
|
22
|
+
heading: [flattenStep, applyTargetTextTypeStep],
|
|
23
|
+
blockquote: [wrapMixedContentStep],
|
|
24
|
+
codeBlock: [wrapMixedContentStep],
|
|
25
|
+
expand: [wrapMixedContentStep],
|
|
26
|
+
nestedExpand: [wrapMixedContentStep],
|
|
27
|
+
layoutSection: [wrapMixedContentStep],
|
|
28
|
+
panel: [wrapMixedContentStep],
|
|
29
|
+
bulletList: [wrapIntoListStep],
|
|
30
|
+
orderedList: [wrapIntoListStep],
|
|
31
|
+
taskList: [wrapIntoListStep],
|
|
32
|
+
decisionList: [wrapIntoListStep]
|
|
33
|
+
},
|
|
34
|
+
heading: {
|
|
35
|
+
heading: [flattenStep, applyTargetTextTypeStep],
|
|
36
|
+
paragraph: [flattenStep, applyTargetTextTypeStep],
|
|
37
|
+
blockquote: [wrapMixedContentStep],
|
|
38
|
+
codeBlock: [wrapMixedContentStep],
|
|
39
|
+
expand: [wrapMixedContentStep],
|
|
40
|
+
nestedExpand: [wrapMixedContentStep],
|
|
41
|
+
layoutSection: [wrapMixedContentStep],
|
|
42
|
+
panel: [wrapMixedContentStep],
|
|
43
|
+
bulletList: [wrapIntoListStep],
|
|
44
|
+
orderedList: [wrapIntoListStep],
|
|
45
|
+
taskList: [wrapIntoListStep],
|
|
46
|
+
decisionList: [wrapIntoListStep]
|
|
47
|
+
},
|
|
48
|
+
panel: {
|
|
49
|
+
blockquote: [unwrapStep, wrapMixedContentStep],
|
|
50
|
+
codeBlock: [unwrapStep, wrapMixedContentStep],
|
|
51
|
+
expand: [unwrapStep, wrapStep],
|
|
52
|
+
nestedExpand: [unwrapStep, wrapStep],
|
|
53
|
+
layoutSection: [unwrapStep, wrapMixedContentStep],
|
|
54
|
+
paragraph: [unwrapStep]
|
|
55
|
+
},
|
|
56
|
+
expand: {
|
|
57
|
+
panel: [unwrapExpandStep, wrapMixedContentStep],
|
|
58
|
+
blockquote: [unwrapExpandStep, wrapMixedContentStep],
|
|
59
|
+
layoutSection: [unwrapExpandStep, wrapMixedContentStep],
|
|
60
|
+
nestedExpand: [unwrapExpandStep, wrapStep],
|
|
61
|
+
paragraph: [unwrapExpandStep]
|
|
62
|
+
},
|
|
63
|
+
nestedExpand: {
|
|
64
|
+
panel: [unwrapExpandStep, wrapMixedContentStep],
|
|
65
|
+
blockquote: [unwrapExpandStep, wrapMixedContentStep],
|
|
66
|
+
layoutSection: [unwrapExpandStep, wrapMixedContentStep],
|
|
67
|
+
paragraph: [unwrapExpandStep]
|
|
68
|
+
},
|
|
69
|
+
blockquote: {
|
|
70
|
+
expand: [wrapStep],
|
|
71
|
+
nestedExpand: [wrapStep],
|
|
72
|
+
layoutSection: [wrapMixedContentStep],
|
|
73
|
+
panel: [unwrapStep, wrapStep],
|
|
74
|
+
paragraph: [unwrapStep],
|
|
75
|
+
heading: [unwrapStep, applyTargetTextTypeStep],
|
|
76
|
+
decisionList: [unwrapStep, wrapBlockquoteToDecisionListStep]
|
|
77
|
+
},
|
|
78
|
+
layoutSection: {
|
|
79
|
+
blockquote: [unwrapLayoutStep, wrapMixedContentStep],
|
|
80
|
+
expand: [unwrapLayoutStep, wrapStep],
|
|
81
|
+
nestedExpand: [unwrapLayoutStep, wrapStep],
|
|
82
|
+
panel: [unwrapLayoutStep, wrapMixedContentStep],
|
|
83
|
+
paragraph: [unwrapLayoutStep]
|
|
84
|
+
},
|
|
85
|
+
codeBlock: {
|
|
86
|
+
blockquote: [wrapStep],
|
|
87
|
+
expand: [wrapStep],
|
|
88
|
+
nestedExpand: [wrapStep],
|
|
89
|
+
layoutSection: [wrapMixedContentStep],
|
|
90
|
+
panel: [wrapStep],
|
|
91
|
+
paragraph: [applyTargetTextTypeStep]
|
|
92
|
+
},
|
|
93
|
+
bulletList: {
|
|
94
|
+
orderedList: [listToListStep],
|
|
95
|
+
taskList: [listToListStep],
|
|
96
|
+
decisionList: [flattenListStep, listToDecisionListStep],
|
|
97
|
+
blockquote: [wrapStep],
|
|
98
|
+
expand: [wrapStep],
|
|
99
|
+
nestedExpand: [wrapStep],
|
|
100
|
+
layoutSection: [wrapMixedContentStep],
|
|
101
|
+
panel: [wrapStep],
|
|
102
|
+
paragraph: [flattenListStep, unwrapListStep, applyTargetTextTypeStep]
|
|
103
|
+
},
|
|
104
|
+
orderedList: {
|
|
105
|
+
bulletList: [listToListStep],
|
|
106
|
+
taskList: [listToListStep],
|
|
107
|
+
decisionList: [flattenListStep, listToDecisionListStep],
|
|
108
|
+
blockquote: [wrapStep],
|
|
109
|
+
expand: [wrapStep],
|
|
110
|
+
nestedExpand: [wrapStep],
|
|
111
|
+
layoutSection: [wrapMixedContentStep],
|
|
112
|
+
panel: [wrapStep],
|
|
113
|
+
paragraph: [flattenListStep, unwrapListStep, applyTargetTextTypeStep]
|
|
114
|
+
},
|
|
115
|
+
taskList: {
|
|
116
|
+
bulletList: [listToListStep],
|
|
117
|
+
orderedList: [listToListStep],
|
|
118
|
+
decisionList: [flattenListStep, listToDecisionListStep],
|
|
119
|
+
expand: [wrapStep],
|
|
120
|
+
nestedExpand: [wrapStep],
|
|
121
|
+
layoutSection: [wrapMixedContentStep],
|
|
122
|
+
panel: [wrapStep],
|
|
123
|
+
paragraph: [flattenListStep, unwrapListStep, applyTargetTextTypeStep]
|
|
124
|
+
},
|
|
125
|
+
table: {
|
|
126
|
+
expand: [wrapStep],
|
|
127
|
+
nestedExpand: [wrapStep],
|
|
128
|
+
layoutSection: [wrapMixedContentStep]
|
|
129
|
+
},
|
|
130
|
+
mediaSingle: {
|
|
131
|
+
blockquote: [wrapStep],
|
|
132
|
+
expand: [wrapStep],
|
|
133
|
+
nestedExpand: [wrapStep],
|
|
134
|
+
layoutSection: [wrapMixedContentStep],
|
|
135
|
+
panel: [wrapStep],
|
|
136
|
+
bulletList: [wrapIntoListStep],
|
|
137
|
+
orderedList: [wrapIntoListStep]
|
|
138
|
+
},
|
|
139
|
+
mediaGroup: {
|
|
140
|
+
blockquote: [wrapStep],
|
|
141
|
+
expand: [wrapStep],
|
|
142
|
+
nestedExpand: [wrapStep],
|
|
143
|
+
layoutSection: [wrapMixedContentStep],
|
|
144
|
+
panel: [wrapStep]
|
|
145
|
+
},
|
|
146
|
+
media: {
|
|
147
|
+
blockquote: [wrapStep],
|
|
148
|
+
codeBlock: [wrapStep],
|
|
149
|
+
expand: [wrapStep],
|
|
150
|
+
nestedExpand: [wrapStep],
|
|
151
|
+
layoutSection: [wrapStep],
|
|
152
|
+
panel: [wrapStep],
|
|
153
|
+
bulletList: [wrapIntoListStep],
|
|
154
|
+
orderedList: [wrapIntoListStep],
|
|
155
|
+
taskList: [wrapIntoListStep],
|
|
156
|
+
decisionList: [wrapIntoListStep]
|
|
157
|
+
},
|
|
158
|
+
decisionList: {
|
|
159
|
+
bulletList: [decisionListToListStep],
|
|
160
|
+
orderedList: [decisionListToListStep],
|
|
161
|
+
taskList: [decisionListToListStep],
|
|
162
|
+
blockquote: [unwrapListStep, wrapStep],
|
|
163
|
+
codeBlock: [unwrapListStep, wrapMixedContentStep],
|
|
164
|
+
expand: [wrapStep],
|
|
165
|
+
nestedExpand: [wrapStep],
|
|
166
|
+
layoutSection: [wrapMixedContentStep],
|
|
167
|
+
panel: [wrapStep],
|
|
168
|
+
paragraph: [flattenListStep, unwrapListStep, applyTargetTextTypeStep],
|
|
169
|
+
heading: [flattenListStep, unwrapListStep, applyTargetTextTypeStep]
|
|
170
|
+
},
|
|
171
|
+
blockCard: {
|
|
172
|
+
expand: [wrapStep],
|
|
173
|
+
nestedExpand: [wrapStep],
|
|
174
|
+
layoutSection: [wrapMixedContentStep],
|
|
175
|
+
panel: [wrapStep]
|
|
176
|
+
},
|
|
177
|
+
embedCard: {
|
|
178
|
+
expand: [wrapStep],
|
|
179
|
+
nestedExpand: [wrapStep],
|
|
180
|
+
layoutSection: [wrapMixedContentStep]
|
|
181
|
+
},
|
|
182
|
+
extension: {
|
|
183
|
+
blockquote: [wrapStep],
|
|
184
|
+
expand: [wrapStep],
|
|
185
|
+
nestedExpand: [wrapStep],
|
|
186
|
+
layoutSection: [wrapMixedContentStep],
|
|
187
|
+
panel: [wrapStep]
|
|
188
|
+
},
|
|
189
|
+
bodiedExtension: {
|
|
190
|
+
nestedExpand: [wrapStep],
|
|
191
|
+
layoutSection: [wrapMixedContentStep]
|
|
192
|
+
},
|
|
193
|
+
multiBodiedExtension: {
|
|
194
|
+
blockquote: [wrapStep],
|
|
195
|
+
codeBlock: [wrapStep],
|
|
196
|
+
expand: [wrapStep],
|
|
197
|
+
nestedExpand: [wrapStep],
|
|
198
|
+
layoutSection: [wrapStep],
|
|
199
|
+
panel: [wrapStep],
|
|
200
|
+
bulletList: [wrapIntoListStep],
|
|
201
|
+
orderedList: [wrapIntoListStep],
|
|
202
|
+
taskList: [wrapIntoListStep],
|
|
203
|
+
decisionList: [wrapIntoListStep]
|
|
204
|
+
},
|
|
205
|
+
multi: {
|
|
206
|
+
blockquote: [wrapMixedContentStep],
|
|
207
|
+
codeBlock: [wrapMixedContentStep],
|
|
208
|
+
expand: [wrapMixedContentStep],
|
|
209
|
+
nestedExpand: [wrapMixedContentStep],
|
|
210
|
+
layoutSection: [wrapMixedContentStep],
|
|
211
|
+
panel: [wrapMixedContentStep],
|
|
212
|
+
bulletList: [convertEachNodeStep, mergeNeighbourListsStep],
|
|
213
|
+
orderedList: [convertEachNodeStep, mergeNeighbourListsStep],
|
|
214
|
+
taskList: [convertEachNodeStep, mergeNeighbourListsStep],
|
|
215
|
+
decisionList: [convertEachNodeStep, mergeNeighbourListsStep],
|
|
216
|
+
paragraph: [convertEachNodeStep],
|
|
217
|
+
heading: [applyTargetTextTypeStep]
|
|
218
|
+
}
|
|
219
|
+
};
|
|
@@ -1,4 +1,44 @@
|
|
|
1
1
|
import { convertNodesToTargetType } from '../transform';
|
|
2
|
+
/**
|
|
3
|
+
* Handles the edge case where transforming multi-selection to decisionList results in
|
|
4
|
+
* all content breaking out (no valid children for the target). In this case, creates an empty
|
|
5
|
+
* decisionList to ensure the target type exists.
|
|
6
|
+
*
|
|
7
|
+
* Similar to handleEmptyContainerEdgeCase in wrapMixedContentStep, but specifically for
|
|
8
|
+
* multi-to-decisionList transformations where blockquotes break out.
|
|
9
|
+
*
|
|
10
|
+
* @param result - The current result nodes after processing
|
|
11
|
+
* @param hasCreatedDecisionList - Whether a decisionList was already created during processing
|
|
12
|
+
* @param targetNodeTypeName - The target node type name
|
|
13
|
+
* @param schema - The schema
|
|
14
|
+
* @returns The result nodes with an empty decisionList prepended if needed, or the original result
|
|
15
|
+
*/
|
|
16
|
+
const handleEmptyDecisionListEdgeCase = (result, hasCreatedDecisionList, targetNodeTypeName, schema) => {
|
|
17
|
+
// Only apply this edge case for decisionList target
|
|
18
|
+
if (targetNodeTypeName !== 'decisionList') {
|
|
19
|
+
return result;
|
|
20
|
+
}
|
|
21
|
+
|
|
22
|
+
// If no decisionList was created but we have nodes in result, all content broke out
|
|
23
|
+
const allContentBrokeOut = !hasCreatedDecisionList && result.length > 0;
|
|
24
|
+
if (!allContentBrokeOut) {
|
|
25
|
+
return result;
|
|
26
|
+
}
|
|
27
|
+
|
|
28
|
+
// Create an empty decisionList
|
|
29
|
+
const decisionListType = schema.nodes.decisionList;
|
|
30
|
+
const decisionItemType = schema.nodes.decisionItem;
|
|
31
|
+
if (decisionListType && decisionItemType) {
|
|
32
|
+
const emptyDecisionItem = decisionItemType.createAndFill();
|
|
33
|
+
if (emptyDecisionItem) {
|
|
34
|
+
const emptyDecisionList = decisionListType.createAndFill({}, [emptyDecisionItem]);
|
|
35
|
+
if (emptyDecisionList) {
|
|
36
|
+
return [emptyDecisionList, ...result];
|
|
37
|
+
}
|
|
38
|
+
}
|
|
39
|
+
}
|
|
40
|
+
return result;
|
|
41
|
+
};
|
|
2
42
|
export const convertEachNodeStep = (nodes, context) => {
|
|
3
43
|
const {
|
|
4
44
|
schema,
|
|
@@ -9,8 +49,15 @@ export const convertEachNodeStep = (nodes, context) => {
|
|
|
9
49
|
if (!targetNodeType) {
|
|
10
50
|
return nodes;
|
|
11
51
|
}
|
|
52
|
+
const blockquoteType = schema.nodes.blockquote;
|
|
12
53
|
const resultNodes = [];
|
|
54
|
+
let hasCreatedDecisionList = false;
|
|
13
55
|
for (const node of nodes) {
|
|
56
|
+
// Edge case: blockquotes should break out when transforming to decisionList
|
|
57
|
+
if (targetNodeTypeName === 'decisionList' && blockquoteType && node.type === blockquoteType) {
|
|
58
|
+
resultNodes.push(node);
|
|
59
|
+
continue;
|
|
60
|
+
}
|
|
14
61
|
const transformedNodes = convertNodesToTargetType({
|
|
15
62
|
sourceNodes: [node],
|
|
16
63
|
targetNodeType,
|
|
@@ -20,9 +67,17 @@ export const convertEachNodeStep = (nodes, context) => {
|
|
|
20
67
|
});
|
|
21
68
|
if (transformedNodes.length > 0) {
|
|
22
69
|
resultNodes.push(...transformedNodes);
|
|
70
|
+
// Track if we created a decisionList
|
|
71
|
+
|
|
72
|
+
if (targetNodeTypeName === 'decisionList' && transformedNodes.some(n => n.type === targetNodeType)) {
|
|
73
|
+
hasCreatedDecisionList = true;
|
|
74
|
+
}
|
|
23
75
|
} else {
|
|
24
76
|
resultNodes.push(node);
|
|
25
77
|
}
|
|
26
78
|
}
|
|
27
|
-
|
|
79
|
+
|
|
80
|
+
// Handle edge case: if no decisionList was created, create an empty one
|
|
81
|
+
const finalResult = handleEmptyDecisionListEdgeCase(resultNodes, hasCreatedDecisionList, targetNodeTypeName, schema);
|
|
82
|
+
return finalResult;
|
|
28
83
|
};
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { Fragment } from '@atlaskit/editor-prosemirror/model';
|
|
2
2
|
import { removeDisallowedMarks } from '../marks';
|
|
3
3
|
import { NODE_CATEGORY_BY_TYPE } from '../types';
|
|
4
|
-
import { convertTextNodeToParagraph,
|
|
4
|
+
import { convertTextNodeToParagraph, isTextNode, splitTextNodeForCodeBlock } from '../utils';
|
|
5
5
|
|
|
6
6
|
/**
|
|
7
7
|
* Creates a layout section with two columns, where the first column contains the provided content.
|
|
@@ -150,7 +150,18 @@ export const wrapMixedContentStep = (nodes, context) => {
|
|
|
150
150
|
currentContainerContent.push(...removeDisallowedMarks([node], validationType));
|
|
151
151
|
};
|
|
152
152
|
const handleCodeblockTextNode = node => {
|
|
153
|
-
|
|
153
|
+
// Split the text node into text parts and incompatible inline nodes
|
|
154
|
+
const parts = splitTextNodeForCodeBlock(node, schema);
|
|
155
|
+
parts.forEach(part => {
|
|
156
|
+
if (typeof part === 'string') {
|
|
157
|
+
// Text content - add to current codeBlock
|
|
158
|
+
currentContainerContent.push(part);
|
|
159
|
+
} else {
|
|
160
|
+
// Incompatible inline node wrapped in paragraph - break it out
|
|
161
|
+
flushCurrentContainer();
|
|
162
|
+
result.push(part);
|
|
163
|
+
}
|
|
164
|
+
});
|
|
154
165
|
};
|
|
155
166
|
const handleConvertibleTextNode = node => {
|
|
156
167
|
const paragraph = convertTextNodeToParagraph(node, schema);
|
|
@@ -1,238 +1,6 @@
|
|
|
1
1
|
import { getTargetNodeTypeNameInContext } from '../transform-node-utils/utils';
|
|
2
|
-
import {
|
|
3
|
-
import {
|
|
4
|
-
import { convertEachNodeStep } from './steps/convertEachNodeStep';
|
|
5
|
-
import { decisionListToListStep } from './steps/decisionListToListStep';
|
|
6
|
-
import { flattenListStep } from './steps/flattenListStep';
|
|
7
|
-
import { listToDecisionListStep } from './steps/listToDecisionListStep';
|
|
8
|
-
import { listToListStep } from './steps/listToListStep';
|
|
9
|
-
import { mergeNeighbourListsStep } from './steps/mergeNeighbourListsStep';
|
|
10
|
-
import { unwrapLayoutStep } from './steps/unwrapLayoutStep';
|
|
11
|
-
import { unwrapListStep } from './steps/unwrapListStep';
|
|
12
|
-
import { wrapBlockquoteToDecisionListStep } from './steps/wrapBlockquoteToDecisionListStep';
|
|
13
|
-
import { wrapMixedContentStep } from './steps/wrapMixedContentStep';
|
|
14
|
-
import { getNodeName, NODE_CATEGORY_BY_TYPE, toNodeTypeValue } from './types';
|
|
15
|
-
import { unwrapExpandStep } from './unwrapExpandStep';
|
|
16
|
-
import { unwrapStep } from './unwrapStep';
|
|
17
|
-
import { wrapIntoListStep } from './wrapIntoListStep';
|
|
18
|
-
import { wrapStep } from './wrapStep';
|
|
19
|
-
|
|
20
|
-
// Transform steps for combinations of node categories (block/container/list/text)
|
|
21
|
-
const TRANSFORM_STEPS = {
|
|
22
|
-
atomic: {
|
|
23
|
-
atomic: undefined,
|
|
24
|
-
container: [wrapStep],
|
|
25
|
-
list: [wrapIntoListStep],
|
|
26
|
-
text: undefined,
|
|
27
|
-
multi: undefined
|
|
28
|
-
},
|
|
29
|
-
container: {
|
|
30
|
-
atomic: undefined,
|
|
31
|
-
container: [unwrapStep, wrapStep],
|
|
32
|
-
list: undefined,
|
|
33
|
-
text: [unwrapStep],
|
|
34
|
-
multi: undefined
|
|
35
|
-
},
|
|
36
|
-
list: {
|
|
37
|
-
atomic: undefined,
|
|
38
|
-
container: [wrapStep],
|
|
39
|
-
list: [listToListStep],
|
|
40
|
-
text: [flattenListStep, unwrapListStep, applyTargetTextTypeStep],
|
|
41
|
-
multi: undefined
|
|
42
|
-
},
|
|
43
|
-
text: {
|
|
44
|
-
atomic: undefined,
|
|
45
|
-
container: [wrapMixedContentStep],
|
|
46
|
-
list: [wrapIntoListStep],
|
|
47
|
-
text: [flattenStep, applyTargetTextTypeStep],
|
|
48
|
-
multi: undefined
|
|
49
|
-
},
|
|
50
|
-
multi: {
|
|
51
|
-
atomic: undefined,
|
|
52
|
-
container: [wrapMixedContentStep],
|
|
53
|
-
list: [convertEachNodeStep, mergeNeighbourListsStep],
|
|
54
|
-
text: [convertEachNodeStep],
|
|
55
|
-
multi: undefined
|
|
56
|
-
}
|
|
57
|
-
};
|
|
58
|
-
|
|
59
|
-
// Transform steps for specific pairs of node types that cannot be processed
|
|
60
|
-
// using generic rules/steps from TRANSFORM_STEPS.
|
|
61
|
-
// Use 'null' to indicate unavailable transfrorm for a case where TRANSFORM_STEPS are not undefined.
|
|
62
|
-
const TRANSFORM_STEPS_OVERRIDE = {
|
|
63
|
-
paragraph: {
|
|
64
|
-
paragraph: null
|
|
65
|
-
},
|
|
66
|
-
heading: {},
|
|
67
|
-
panel: {
|
|
68
|
-
panel: null,
|
|
69
|
-
layoutSection: [unwrapStep, wrapMixedContentStep],
|
|
70
|
-
codeBlock: [unwrapStep, wrapMixedContentStep],
|
|
71
|
-
blockquote: [unwrapStep, wrapMixedContentStep],
|
|
72
|
-
taskList: null,
|
|
73
|
-
bulletList: null,
|
|
74
|
-
orderedList: null,
|
|
75
|
-
heading: null
|
|
76
|
-
},
|
|
77
|
-
expand: {
|
|
78
|
-
expand: null,
|
|
79
|
-
panel: [unwrapExpandStep, wrapMixedContentStep],
|
|
80
|
-
blockquote: [unwrapExpandStep, wrapMixedContentStep],
|
|
81
|
-
layoutSection: [unwrapExpandStep, wrapMixedContentStep],
|
|
82
|
-
paragraph: [unwrapExpandStep],
|
|
83
|
-
codeBlock: null,
|
|
84
|
-
heading: null
|
|
85
|
-
},
|
|
86
|
-
nestedExpand: {
|
|
87
|
-
expand: null,
|
|
88
|
-
nestedExpand: null,
|
|
89
|
-
panel: [unwrapExpandStep, wrapMixedContentStep],
|
|
90
|
-
blockquote: [unwrapExpandStep, wrapMixedContentStep],
|
|
91
|
-
paragraph: [unwrapExpandStep],
|
|
92
|
-
codeBlock: null,
|
|
93
|
-
heading: null
|
|
94
|
-
},
|
|
95
|
-
blockquote: {
|
|
96
|
-
blockquote: null,
|
|
97
|
-
expand: [wrapStep],
|
|
98
|
-
nestedExpand: [wrapStep],
|
|
99
|
-
layoutSection: [wrapMixedContentStep],
|
|
100
|
-
codeBlock: null,
|
|
101
|
-
decisionList: [unwrapStep, wrapBlockquoteToDecisionListStep],
|
|
102
|
-
paragraph: [unwrapStep],
|
|
103
|
-
heading: [unwrapStep, applyTargetTextTypeStep]
|
|
104
|
-
},
|
|
105
|
-
layoutSection: {
|
|
106
|
-
layoutSection: null,
|
|
107
|
-
blockquote: [unwrapLayoutStep, wrapMixedContentStep],
|
|
108
|
-
expand: [unwrapLayoutStep, wrapStep],
|
|
109
|
-
panel: [unwrapLayoutStep, wrapMixedContentStep],
|
|
110
|
-
codeBlock: null,
|
|
111
|
-
paragraph: [unwrapLayoutStep],
|
|
112
|
-
heading: null
|
|
113
|
-
},
|
|
114
|
-
codeBlock: {
|
|
115
|
-
codeBlock: null,
|
|
116
|
-
blockquote: [wrapStep],
|
|
117
|
-
expand: [wrapStep],
|
|
118
|
-
nestedExpand: [wrapStep],
|
|
119
|
-
layoutSection: [wrapMixedContentStep],
|
|
120
|
-
panel: [wrapStep],
|
|
121
|
-
paragraph: [applyTargetTextTypeStep],
|
|
122
|
-
heading: null
|
|
123
|
-
},
|
|
124
|
-
bulletList: {
|
|
125
|
-
bulletList: null,
|
|
126
|
-
codeBlock: null,
|
|
127
|
-
layoutSection: [wrapMixedContentStep],
|
|
128
|
-
decisionList: [flattenListStep, listToDecisionListStep],
|
|
129
|
-
heading: null
|
|
130
|
-
},
|
|
131
|
-
orderedList: {
|
|
132
|
-
orderedList: null,
|
|
133
|
-
codeBlock: null,
|
|
134
|
-
layoutSection: [wrapMixedContentStep],
|
|
135
|
-
decisionList: [flattenListStep, listToDecisionListStep],
|
|
136
|
-
heading: null
|
|
137
|
-
},
|
|
138
|
-
taskList: {
|
|
139
|
-
blockquote: null,
|
|
140
|
-
codeBlock: null,
|
|
141
|
-
layoutSection: [wrapMixedContentStep],
|
|
142
|
-
decisionList: [flattenListStep, listToDecisionListStep],
|
|
143
|
-
heading: null,
|
|
144
|
-
taskList: null
|
|
145
|
-
},
|
|
146
|
-
table: {
|
|
147
|
-
layoutSection: [wrapMixedContentStep],
|
|
148
|
-
blockquote: null,
|
|
149
|
-
panel: null,
|
|
150
|
-
codeBlock: null,
|
|
151
|
-
orderedList: null,
|
|
152
|
-
bulletList: null,
|
|
153
|
-
taskList: null,
|
|
154
|
-
decisionList: null
|
|
155
|
-
},
|
|
156
|
-
mediaSingle: {
|
|
157
|
-
layoutSection: [wrapMixedContentStep],
|
|
158
|
-
codeBlock: null,
|
|
159
|
-
decisionList: null,
|
|
160
|
-
taskList: null
|
|
161
|
-
},
|
|
162
|
-
mediaGroup: {
|
|
163
|
-
layoutSection: [wrapMixedContentStep],
|
|
164
|
-
codeBlock: null,
|
|
165
|
-
decisionList: null,
|
|
166
|
-
bulletList: null,
|
|
167
|
-
orderedList: null,
|
|
168
|
-
taskList: null
|
|
169
|
-
},
|
|
170
|
-
decisionList: {
|
|
171
|
-
decisionList: null,
|
|
172
|
-
bulletList: [decisionListToListStep],
|
|
173
|
-
orderedList: [decisionListToListStep],
|
|
174
|
-
taskList: [decisionListToListStep],
|
|
175
|
-
layoutSection: [wrapMixedContentStep],
|
|
176
|
-
blockquote: [unwrapListStep, wrapStep],
|
|
177
|
-
codeBlock: [unwrapListStep, wrapMixedContentStep]
|
|
178
|
-
},
|
|
179
|
-
blockCard: {
|
|
180
|
-
layoutSection: [wrapMixedContentStep],
|
|
181
|
-
blockquote: null,
|
|
182
|
-
codeBlock: null,
|
|
183
|
-
orderedList: null,
|
|
184
|
-
bulletList: null,
|
|
185
|
-
taskList: null,
|
|
186
|
-
decisionList: null
|
|
187
|
-
},
|
|
188
|
-
embedCard: {
|
|
189
|
-
layoutSection: [wrapMixedContentStep],
|
|
190
|
-
blockquote: null,
|
|
191
|
-
panel: null,
|
|
192
|
-
codeBlock: null,
|
|
193
|
-
orderedList: null,
|
|
194
|
-
bulletList: null,
|
|
195
|
-
taskList: null,
|
|
196
|
-
decisionList: null
|
|
197
|
-
},
|
|
198
|
-
extension: {
|
|
199
|
-
layoutSection: [wrapMixedContentStep],
|
|
200
|
-
codeBlock: null,
|
|
201
|
-
decisionList: null,
|
|
202
|
-
taskList: null,
|
|
203
|
-
orderedList: null,
|
|
204
|
-
bulletList: null
|
|
205
|
-
},
|
|
206
|
-
bodiedExtension: {
|
|
207
|
-
layoutSection: [wrapMixedContentStep],
|
|
208
|
-
blockquote: null,
|
|
209
|
-
expand: null,
|
|
210
|
-
panel: null,
|
|
211
|
-
codeBlock: null,
|
|
212
|
-
orderedList: null,
|
|
213
|
-
bulletList: null,
|
|
214
|
-
taskList: null,
|
|
215
|
-
decisionList: null
|
|
216
|
-
},
|
|
217
|
-
multi: {
|
|
218
|
-
heading: [applyTargetTextTypeStep]
|
|
219
|
-
// Similar to heading, all structures are kept as is
|
|
220
|
-
// EG: transformed: other lists, paragarph, headings
|
|
221
|
-
// eg: not-transformed: quotes, codeblocks ... all typeof 'containers'
|
|
222
|
-
// decisionList: [],
|
|
223
|
-
}
|
|
224
|
-
};
|
|
225
|
-
const getTransformStepsForNodeTypes = (selectedNodeTypeName, targetNodeTypeName) => {
|
|
226
|
-
var _TRANSFORM_STEPS_OVER;
|
|
227
|
-
const fromCategory = NODE_CATEGORY_BY_TYPE[selectedNodeTypeName];
|
|
228
|
-
const toCategory = NODE_CATEGORY_BY_TYPE[targetNodeTypeName];
|
|
229
|
-
const overrideSteps = (_TRANSFORM_STEPS_OVER = TRANSFORM_STEPS_OVERRIDE[selectedNodeTypeName]) === null || _TRANSFORM_STEPS_OVER === void 0 ? void 0 : _TRANSFORM_STEPS_OVER[targetNodeTypeName];
|
|
230
|
-
if (overrideSteps === null) {
|
|
231
|
-
return null;
|
|
232
|
-
}
|
|
233
|
-
const steps = overrideSteps !== null && overrideSteps !== void 0 ? overrideSteps : TRANSFORM_STEPS[fromCategory][toCategory];
|
|
234
|
-
return steps;
|
|
235
|
-
};
|
|
2
|
+
import { TRANSFORMATION_MATRIX } from './TRANSFORMATION_MATRIX';
|
|
3
|
+
import { getNodeName, toNodeTypeValue } from './types';
|
|
236
4
|
/**
|
|
237
5
|
* Convert a list of nodes to a target node type.
|
|
238
6
|
* If no steps are found, the source nodes are returned unchanged.
|
|
@@ -266,7 +34,7 @@ export const convertNodesToTargetType = ({
|
|
|
266
34
|
if (!selectedNodeTypeName || !targetNodeTypeName) {
|
|
267
35
|
return sourceNodes;
|
|
268
36
|
}
|
|
269
|
-
const steps =
|
|
37
|
+
const steps = TRANSFORMATION_MATRIX[selectedNodeTypeName][targetNodeTypeName];
|
|
270
38
|
const context = {
|
|
271
39
|
// sourceNode is incorrect now - what to do here?
|
|
272
40
|
fromNode: sourceNode,
|
|
@@ -282,9 +50,6 @@ export const convertNodesToTargetType = ({
|
|
|
282
50
|
}, sourceNodes);
|
|
283
51
|
};
|
|
284
52
|
export const isTransformDisabledBasedOnStepsConfig = (selectedNodeType, targetNodeType) => {
|
|
285
|
-
const steps =
|
|
286
|
-
|
|
287
|
-
return true;
|
|
288
|
-
}
|
|
289
|
-
return false;
|
|
53
|
+
const steps = TRANSFORMATION_MATRIX[selectedNodeType][targetNodeType];
|
|
54
|
+
return !steps || steps.length === 0;
|
|
290
55
|
};
|
|
@@ -127,20 +127,42 @@ export const getBlockNodesInRange = range => {
|
|
|
127
127
|
};
|
|
128
128
|
|
|
129
129
|
/**
|
|
130
|
-
*
|
|
131
|
-
*
|
|
130
|
+
* Splits a text node (paragraph/heading) into parts for codeBlock conversion.
|
|
131
|
+
* Returns an array of:
|
|
132
|
+
* - strings (text content that can go into codeBlock)
|
|
133
|
+
* - PMNodes (incompatible inline nodes wrapped in paragraphs that need to break out)
|
|
132
134
|
*
|
|
133
|
-
*
|
|
134
|
-
*
|
|
135
|
+
* This preserves inline nodes (like status, inlineExtension) that cannot be represented as plain text.
|
|
136
|
+
*
|
|
137
|
+
* @param node - The text node (paragraph or heading) to split
|
|
138
|
+
* @param schema - The schema to use for creating paragraph nodes
|
|
139
|
+
* @returns Array of strings (for codeBlock) and PMNodes (to break out)
|
|
135
140
|
*/
|
|
136
|
-
export const
|
|
137
|
-
const
|
|
141
|
+
export const splitTextNodeForCodeBlock = (node, schema) => {
|
|
142
|
+
const result = [];
|
|
143
|
+
let currentText = '';
|
|
144
|
+
node.content.forEach(child => {
|
|
138
145
|
if (child.isText) {
|
|
139
|
-
|
|
146
|
+
currentText += child.text || '';
|
|
140
147
|
} else if (child.type.name === 'hardBreak') {
|
|
141
|
-
|
|
148
|
+
currentText += '\n';
|
|
149
|
+
} else {
|
|
150
|
+
// Incompatible inline node (status, inlineExtension, etc.)
|
|
151
|
+
// Flush accumulated text if any
|
|
152
|
+
if (currentText) {
|
|
153
|
+
result.push(currentText);
|
|
154
|
+
currentText = '';
|
|
155
|
+
}
|
|
156
|
+
// Wrap the inline node in a paragraph and add it to break out
|
|
157
|
+
const paragraph = schema.nodes.paragraph.create({}, child);
|
|
158
|
+
result.push(paragraph);
|
|
142
159
|
}
|
|
143
|
-
return '';
|
|
144
160
|
});
|
|
145
|
-
|
|
161
|
+
|
|
162
|
+
// Don't forget remaining text (or empty string for empty nodes)
|
|
163
|
+
// Always push at least an empty string so empty paragraphs create empty codeBlocks
|
|
164
|
+
if (currentText || result.length === 0) {
|
|
165
|
+
result.push(currentText);
|
|
166
|
+
}
|
|
167
|
+
return result;
|
|
146
168
|
};
|