-
Notifications
You must be signed in to change notification settings - Fork 942
/
index.js
313 lines (270 loc) · 8.26 KB
/
index.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
import { find, get, identity, map, omit, reduce, isObject, each } from 'lodash'
import path from 'path'
import juice from 'juice'
import { html as htmlBeautify } from 'js-beautify'
import { minify as htmlMinify } from 'html-minifier'
import MJMLParser from 'mjml-parser-xml'
import MJMLValidator from 'mjml-validator'
import { handleMjml3 } from 'mjml-migrate'
import components, { initComponent, registerComponent } from './components'
import suffixCssClasses from './helpers/suffixCssClasses'
import mergeOutlookConditionnals from './helpers/mergeOutlookConditionnals'
import minifyOutlookConditionnals from './helpers/minifyOutlookConditionnals'
import defaultSkeleton from './helpers/skeleton'
import { initializeType } from './types/type'
import handleMjmlConfig from './helpers/mjmlconfig'
class ValidationError extends Error {
constructor(message, errors) {
super(message)
this.errors = errors
}
}
export default function mjml2html(mjml, options = {}) {
let content = ''
let errors = []
if (typeof options.skeleton === 'string') {
/* eslint-disable global-require */
/* eslint-disable import/no-dynamic-require */
options.skeleton = require(options.skeleton.charAt(0) === '.'
? path.resolve(process.cwd(), options.skeleton)
: options.skeleton)
/* eslint-enable global-require */
/* eslint-enable import/no-dynamic-require */
}
const {
beautify = false,
fonts = {
'Open Sans':
'https://fonts.googleapis.com/css?family=Open+Sans:300,400,500,700',
'Droid Sans':
'https://fonts.googleapis.com/css?family=Droid+Sans:300,400,500,700',
Lato: 'https://fonts.googleapis.com/css?family=Lato:300,400,500,700',
Roboto: 'https://fonts.googleapis.com/css?family=Roboto:300,400,500,700',
Ubuntu: 'https://fonts.googleapis.com/css?family=Ubuntu:300,400,500,700',
},
keepComments,
minify = false,
minifyOptions = {},
juiceOptions = {},
juicePreserveTags = null,
skeleton = defaultSkeleton,
validationLevel = 'soft',
filePath = '.',
mjmlConfigPath = null,
noMigrateWarn = false,
} = options
// if mjmlConfigPath is specified then we need to handle it on each call
if (mjmlConfigPath) handleMjmlConfig(mjmlConfigPath, registerComponent)
if (typeof mjml === 'string') {
mjml = MJMLParser(mjml, {
keepComments,
components,
filePath,
})
}
mjml = handleMjml3(mjml, { noMigrateWarn })
const globalDatas = {
backgroundColor: '',
breakpoint: '480px',
classes: {},
classesDefault: {},
defaultAttributes: {},
fonts,
inlineStyle: [],
headStyle: {},
componentsHeadStyle: [],
headRaw: [],
mediaQueries: {},
preview: '',
style: [],
title: '',
forceOWADesktop: get(mjml, 'attributes.owa', 'mobile') === 'desktop',
lang: get(mjml, 'attributes.lang'),
}
const validatorOptions = {
components,
initializeType,
}
switch (validationLevel) {
case 'skip':
break
case 'strict':
errors = MJMLValidator(mjml, validatorOptions)
if (errors.length > 0) {
throw new ValidationError(
`ValidationError: \n ${errors
.map(e => e.formattedMessage)
.join('\n')}`,
errors,
)
}
break
case 'soft':
default:
errors = MJMLValidator(mjml, validatorOptions)
break
}
const mjBody = find(mjml.children, { tagName: 'mj-body' })
const mjHead = find(mjml.children, { tagName: 'mj-head' })
const processing = (node, context, parseMJML = identity) => {
if (!node) {
return
}
const component = initComponent({
name: node.tagName,
initialDatas: {
...parseMJML(node),
context,
},
})
if (component !== null) {
if ('handler' in component) {
return component.handler() // eslint-disable-line consistent-return
}
if ('render' in component) {
return component.render() // eslint-disable-line consistent-return
}
}
}
const applyAttributes = mjml => {
const parse = (mjml, parentMjClass = '') => {
const { attributes, tagName, children } = mjml
const classes = get(mjml.attributes, 'mj-class', '').split(' ')
const attributesClasses = reduce(
classes,
(acc, value) => {
const mjClassValues = globalDatas.classes[value]
let multipleClasses = {}
if (acc['css-class'] && get(mjClassValues, 'css-class')) {
multipleClasses = {
'css-class': `${acc['css-class']} ${mjClassValues['css-class']}`,
}
}
return {
...acc,
...mjClassValues,
...multipleClasses,
}
},
{},
)
const defaultAttributesForClasses = reduce(
parentMjClass.split(' '),
(acc, value) => ({
...acc,
...get(globalDatas.classesDefault, `${value}.${tagName}`),
}),
{},
)
const nextParentMjClass = get(attributes, 'mj-class', parentMjClass)
return {
...mjml,
attributes: {
...globalDatas.defaultAttributes[tagName],
...attributesClasses,
...defaultAttributesForClasses,
...omit(attributes, ['mj-class']),
},
globalAttributes: {
...globalDatas.defaultAttributes['mj-all'],
},
children: map(children, mjml => parse(mjml, nextParentMjClass)),
}
}
return parse(mjml)
}
const bodyHelpers = {
addMediaQuery(className, { parsedWidth, unit }) {
globalDatas.mediaQueries[
className
] = `{ width:${parsedWidth}${unit} !important; max-width: ${parsedWidth}${unit}; }`
},
addHeadStyle(identifier, headStyle) {
globalDatas.headStyle[identifier] = headStyle
},
addComponentHeadSyle(headStyle) {
globalDatas.componentsHeadStyle.push(headStyle)
},
setBackgroundColor: color => {
globalDatas.backgroundColor = color
},
processing: (node, context) => processing(node, context, applyAttributes),
}
const headHelpers = {
add(attr, ...params) {
if (Array.isArray(globalDatas[attr])) {
globalDatas[attr].push(...params)
} else if (Object.prototype.hasOwnProperty.call(globalDatas, attr)) {
if (params.length > 1) {
if (isObject(globalDatas[attr][params[0]])) {
globalDatas[attr][params[0]] = {
...globalDatas[attr][params[0]],
...params[1],
}
} else {
globalDatas[attr][params[0]] = params[1]
}
} else {
globalDatas[attr] = params[0]
}
} else {
throw Error(
`An mj-head element add an unkown head attribute : ${attr} with params ${Array.isArray(
params,
)
? params.join('')
: params}`,
)
}
},
}
globalDatas.headRaw = processing(mjHead, headHelpers)
content = processing(mjBody, bodyHelpers, applyAttributes)
if (minify && minify !== 'false') {
content = minifyOutlookConditionnals(content)
}
content = skeleton({
content,
...globalDatas,
})
if (globalDatas.inlineStyle.length > 0) {
if (juicePreserveTags) {
each(juicePreserveTags, (val, key) => {
juice.codeBlocks[key] = val
})
}
content = juice(content, {
applyStyleTags: false,
extraCss: globalDatas.inlineStyle.join(''),
insertPreservedExtraCss: false,
removeStyleTags: false,
...juiceOptions,
})
}
content =
beautify && beautify !== 'false'
? htmlBeautify(content, {
indent_size: 2,
wrap_attributes_indent_size: 2,
max_preserve_newline: 0,
preserve_newlines: false,
})
: content
if (minify && minify !== 'false') {
content = htmlMinify(content, {
collapseWhitespace: true,
minifyCSS: false,
caseSensitive: true,
removeEmptyAttributes: true,
...minifyOptions,
})
}
content = mergeOutlookConditionnals(content)
return {
html: content,
errors,
}
}
handleMjmlConfig(process.cwd(), registerComponent)
export { components, initComponent, registerComponent, suffixCssClasses, handleMjmlConfig, initializeType }
export { BodyComponent, HeadComponent } from './createComponent'