UNPKG

3.23 kBJavaScriptView Raw
1/*
2 * Licensed under the Apache License, Version 2.0 (the "License");
3 * you may not use this file except in compliance with the License.
4 * You may obtain a copy of the License at
5 *
6 * http://www.apache.org/licenses/LICENSE-2.0
7 *
8 * Unless required by applicable law or agreed to in writing, software
9 * distributed under the License is distributed on an "AS IS" BASIS,
10 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
11 * See the License for the specific language governing permissions and
12 * limitations under the License.
13 */
14
15'use strict';
16
17const { NS_PREFIX_CommonMarkModel } = require('@accordproject/markdown-common').CommonMarkModel;
18
19/**
20 * Utility: flattening array of arrays
21 * @param {*[]} arr - input array of arrays
22 * @return {*[]} flattened array
23 */
24function flatten(arr) {
25 return arr.reduce((acc, val) => acc.concat(val), []);
26}
27
28/**
29 * Converts a CiceroMark DOM to a CiceroMark unwrapped DOM
30 */
31class ToCiceroMarkUnwrappedVisitor {
32 /**
33 * Construct the visitor
34 */
35 constructor() {
36 }
37
38 /**
39 * Visits a sub-tree and return the CommonMark DOM
40 * @param {*} visitor the visitor to use
41 * @param {*} thing the node to visit
42 * @param {*} [parameters] optional parameters
43 */
44 static visitChildren(visitor, thing, parameters) {
45 if(thing.nodes) {
46 const result =
47 thing.nodes.map(node => {
48 return node.accept(visitor, parameters);
49 });
50 thing.nodes = flatten(result);
51 }
52 }
53
54 /**
55 * Visit a node
56 * @param {*} thing the object being visited
57 * @param {*} parameters the parameters
58 * @return {*[]} result nodes
59 */
60 visit(thing, parameters) {
61 const thingType = thing.getType();
62 switch(thingType) {
63 case 'ListBlock': {
64 ToCiceroMarkUnwrappedVisitor.visitChildren(this, thing, parameters);
65
66 const ciceroMarkTag = NS_PREFIX_CommonMarkModel + 'List';
67 thing.$classDeclaration = parameters.modelManager.getType(ciceroMarkTag);
68
69 delete thing.name;
70 delete thing.elementType;
71 }
72 break;
73 case 'Variable':
74 case 'EnumVariable':
75 case 'FormattedVariable': {
76 // Revert to HtmlInline
77 thing.$classDeclaration = parameters.modelManager.getType(NS_PREFIX_CommonMarkModel + 'Text');
78 thing.text = decodeURIComponent(thing.value);
79
80 delete thing.elementType;
81 delete thing.name;
82 delete thing.value;
83 delete thing.format;
84 delete thing.enumValues;
85 delete thing.identifiedBy;
86 }
87 break;
88 case 'Conditional':
89 case 'Optional': {
90 // Revert to HtmlInline
91 thing.$classDeclaration = parameters.modelManager.getType(NS_PREFIX_CommonMarkModel + 'Text');
92 ToCiceroMarkUnwrappedVisitor.visitChildren(this, thing, parameters);
93 return thing.nodes;
94 }
95 default:
96 ToCiceroMarkUnwrappedVisitor.visitChildren(this, thing, parameters);
97 }
98 return [thing];
99 }
100}
101
102module.exports = ToCiceroMarkUnwrappedVisitor;
\No newline at end of file