-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.js
143 lines (106 loc) · 3.48 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
const path = require('path');
const _ = require('lodash');
const getRules = () => {
const defaultRuleFile = path.join(__dirname, 'rules/default.js');
// eslint-disable-next-line global-require, import/no-dynamic-require
return require(defaultRuleFile);
};
const getMasks = (options) => {
let result = options.masks;
if (!result) {
const defaultMaskFile = path.join(__dirname, '/masks/default.js');
// eslint-disable-next-line global-require, import/no-dynamic-require
result = require(defaultMaskFile);
}
return result;
};
const isMaskMatched = (bemjson, mask) => {
let bemjsonCopy = _.clone(bemjson);
if (mask.mods && bemjsonCopy.mods) {
bemjsonCopy.mods = _.pick(bemjsonCopy.mods, Object.keys(mask.mods));
}
if (mask.mix
&& bemjsonCopy.mix
&& _.isArray(bemjsonCopy.mix)
&& _.some(bemjsonCopy.mix, mask.mix)
) {
bemjsonCopy.mix = mask.mix;
}
bemjsonCopy = _.pick(bemjsonCopy, Object.keys(mask));
return _.isEqual(bemjsonCopy, mask);
};
const BemjsonMarkdown = (options) => {
const rules = getRules();
const masks = getMasks(options);
const convert = (bemjson) => {
let convertResult;
const getRuleResult = (ruleName, ruleBemjson) => {
let result;
if (!rules[ruleName]) {
const message = 'Incorrect Rule name "'
+ ruleName
+ '"';
throw new Error(message);
} else {
const callback = rules[ruleName];
if (!_.isFunction(callback)) {
const message = 'Rule "'
+ ruleName
+ '" must be a function';
throw new Error(message);
}
if (ruleBemjson.content) {
const args = [ruleBemjson.content];
ruleBemjson.content = convert.apply(this, args);
}
result = callback(ruleBemjson);
}
return result;
};
if (_.isArray(bemjson)) {
convertResult = '';
bemjson.forEach((item) => {
convertResult += convert(item);
});
} else if (_.isPlainObject(bemjson)
&& (bemjson.block || bemjson.elem)
) {
_.every(masks, (mask, ruleName) => {
const isMatched = isMaskMatched(bemjson, mask);
if (isMatched) {
convertResult = getRuleResult(ruleName, bemjson);
}
return !isMatched;
});
if (convertResult === undefined) {
convertResult = '\n\n```javascript\n'
+ JSON.stringify(bemjson, null, 4)
+ '\n```';
}
} else {
convertResult = bemjson;
}
return convertResult;
};
this.convert = (bemjson) => {
let result = convert(bemjson);
if (_.isString(result)) {
result = result.replace(/^\s+|\s+$/, '');
}
return result;
};
};
module.exports = (options) => {
let result;
if (options === undefined) {
options = {};
}
if (!_.isPlainObject(options)) {
const error = 'Options should be a simple object';
throw new Error(error);
}
if (!(this instanceof BemjsonMarkdown)) {
result = new BemjsonMarkdown(options);
}
return result;
};