-
Notifications
You must be signed in to change notification settings - Fork 962
/
index.js
449 lines (394 loc) · 11.4 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
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
import {
find,
filter,
get,
identity,
map,
omit,
reduce,
isObject,
each,
isEmpty,
} 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 { load } from 'cheerio'
import MJMLParser from 'mjml-parser-xml'
import MJMLValidator, {
dependencies as globalDependencies,
assignDependencies,
} from 'mjml-validator'
import { handleMjml3 } from 'mjml-migrate'
import { initComponent } from './createComponent'
import globalComponents, {
registerComponent,
assignComponents,
} from './components'
import makeLowerBreakpoint from './helpers/makeLowerBreakpoint'
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, {
readMjmlConfig,
handleMjmlConfigComponents,
} from './helpers/mjmlconfig'
const isNode = require('detect-node')
class ValidationError extends Error {
constructor(message, errors) {
super(message)
this.errors = errors
}
}
export default function mjml2html(mjml, options = {}) {
let content = ''
let errors = []
if (isNode && 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 */
}
let packages = {}
let confOptions = {}
let mjmlConfigOptions = {}
let confPreprocessors = []
let error = null
let componentRootPath = null
if ((isNode && options.useMjmlConfigOptions) || options.mjmlConfigPath) {
const mjmlConfigContent = readMjmlConfig(options.mjmlConfigPath)
;({
mjmlConfig: {
packages,
options: confOptions,
preprocessors: confPreprocessors,
},
componentRootPath,
error,
} = mjmlConfigContent)
if (options.useMjmlConfigOptions) {
mjmlConfigOptions = confOptions
}
}
// if mjmlConfigPath is specified then we need to register components it on each call
if (isNode && !error && options.mjmlConfigPath) {
handleMjmlConfigComponents(packages, componentRootPath, registerComponent)
}
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 = {},
ignoreIncludes = false,
juiceOptions = {},
juicePreserveTags = null,
skeleton = defaultSkeleton,
validationLevel = 'soft',
filePath = '.',
actualPath = '.',
noMigrateWarn = false,
preprocessors,
presets = [],
printerSupport = false,
} = {
...mjmlConfigOptions,
...options,
preprocessors: options.preprocessors
? [...confPreprocessors, ...options.preprocessors]
: confPreprocessors,
}
const components = { ...globalComponents }
const dependencies = assignDependencies({}, globalDependencies)
for (const preset of presets) {
assignComponents(components, preset.components)
assignDependencies(dependencies, preset.dependencies)
}
if (typeof mjml === 'string') {
mjml = MJMLParser(mjml, {
keepComments,
components,
filePath,
actualPath,
preprocessors,
ignoreIncludes,
})
}
mjml = handleMjml3(mjml, { noMigrateWarn })
const globalData = {
backgroundColor: '',
beforeDoctype: '',
breakpoint: '480px',
classes: {},
classesDefault: {},
defaultAttributes: {},
htmlAttributes: {},
fonts,
inlineStyle: [],
headStyle: {},
componentsHeadStyle: [],
headRaw: [],
mediaQueries: {},
preview: '',
style: [],
title: '',
forceOWADesktop: get(mjml, 'attributes.owa', 'mobile') === 'desktop',
lang: get(mjml, 'attributes.lang') || 'und',
dir: get(mjml, 'attributes.dir') || 'auto',
}
const validatorOptions = {
components,
dependencies,
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 mjOutsideRaws = filter(mjml.children, { tagName: 'mj-raw' })
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 = globalData.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(globalData.classesDefault, `${value}.${tagName}`),
}),
{},
)
const nextParentMjClass = get(attributes, 'mj-class', parentMjClass)
return {
...mjml,
attributes: {
...globalData.defaultAttributes[tagName],
...attributesClasses,
...defaultAttributesForClasses,
...omit(attributes, ['mj-class']),
},
globalAttributes: {
...globalData.defaultAttributes['mj-all'],
},
children: map(children, (mjml) => parse(mjml, nextParentMjClass)),
}
}
return parse(mjml)
}
const bodyHelpers = {
components,
globalData,
addMediaQuery(className, { parsedWidth, unit }) {
globalData.mediaQueries[className] =
`{ width:${parsedWidth}${unit} !important; max-width: ${parsedWidth}${unit}; }`
},
addHeadStyle(identifier, headStyle) {
globalData.headStyle[identifier] = headStyle
},
addComponentHeadSyle(headStyle) {
globalData.componentsHeadStyle.push(headStyle)
},
setBackgroundColor: (color) => {
globalData.backgroundColor = color
},
processing: (node, context) => processing(node, context, applyAttributes),
}
const headHelpers = {
components,
globalData,
add(attr, ...params) {
if (Array.isArray(globalData[attr])) {
globalData[attr].push(...params)
} else if (Object.prototype.hasOwnProperty.call(globalData, attr)) {
if (params.length > 1) {
if (isObject(globalData[attr][params[0]])) {
globalData[attr][params[0]] = {
...globalData[attr][params[0]],
...params[1],
}
} else {
// eslint-disable-next-line prefer-destructuring
globalData[attr][params[0]] = params[1]
}
} else {
// eslint-disable-next-line prefer-destructuring
globalData[attr] = params[0]
}
} else {
throw Error(
`An mj-head element add an unkown head attribute : ${attr} with params ${
Array.isArray(params) ? params.join('') : params
}`,
)
}
},
}
globalData.headRaw = processing(mjHead, headHelpers)
content = processing(mjBody, bodyHelpers, applyAttributes)
if (!content) {
throw new Error(
'Malformed MJML. Check that your structure is correct and enclosed in <mjml> tags.',
)
}
content = minifyOutlookConditionnals(content)
if (mjOutsideRaws.length) {
const toAddBeforeDoctype = mjOutsideRaws.filter(
(elt) =>
elt.attributes.position && elt.attributes.position === 'file-start',
)
if (toAddBeforeDoctype.length) {
globalData.beforeDoctype = toAddBeforeDoctype
.map((elt) => elt.content)
.join('\n')
}
}
if (!isEmpty(globalData.htmlAttributes)) {
const $ = load(content, {
xmlMode: true, // otherwise it may move contents that aren't in any tag
decodeEntities: false, // won't escape special characters
})
each(globalData.htmlAttributes, (data, selector) => {
each(data, (value, attrName) => {
$(selector).each(function getAttr() {
$(this).attr(attrName, value || '')
})
})
})
content = $.root().html()
}
content = skeleton({
content,
...globalData,
printerSupport,
})
if (globalData.inlineStyle.length > 0) {
if (juicePreserveTags) {
each(juicePreserveTags, (val, key) => {
juice.codeBlocks[key] = val
})
}
content = juice(content, {
applyStyleTags: false,
extraCss: globalData.inlineStyle.join(''),
insertPreservedExtraCss: false,
removeStyleTags: false,
...juiceOptions,
})
}
content = mergeOutlookConditionnals(content)
if (beautify) {
// eslint-disable-next-line no-console
console.warn(
'"beautify" option is deprecated in mjml-core and only available in mjml cli.',
)
content = htmlBeautify(content, {
indent_size: 2,
wrap_attributes_indent_size: 2,
max_preserve_newline: 0,
preserve_newlines: false,
})
}
if (minify) {
// eslint-disable-next-line no-console
console.warn(
'"minify" option is deprecated in mjml-core and only available in mjml cli.',
)
content = htmlMinify(content, {
collapseWhitespace: true,
minifyCSS: false,
caseSensitive: true,
removeEmptyAttributes: true,
...minifyOptions,
})
}
return {
html: content,
json: mjml,
errors,
}
}
if (isNode) {
handleMjmlConfig(process.cwd(), registerComponent)
}
export {
globalComponents as components,
initComponent,
registerComponent,
assignComponents,
makeLowerBreakpoint,
suffixCssClasses,
handleMjmlConfig,
initializeType,
}
export { BodyComponent, HeadComponent } from './createComponent'