forked from dmitry-lavrik/smart-grid
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathreplaces.js
145 lines (127 loc) · 4.82 KB
/
replaces.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
class Replaces {
constructor(resources) {
this.resources = resources;
}
all(str, style) {
let replaces = {
less: {
'{{var}}': '@',
'{{=}}': ': ',
'{{string-var}}': '@{',
'{{/string-var}}': '}',
'{{i}}': '~"',
'{{/i}}': '"',
'{{before_mixin}}': '.',
'{{call}}': '.',
'{{call_with_content}}': '.',
'{{brace}}': '{',
'{{/brace}}': '}',
'{{:}}': ': ',
'{{;}}': ';',
'{{block-content-var-delimeter}}': ', ',
'{{block-content-var}}': '@content',
'{{block-content-extract}}': '@content()',
'{{block_callable_brace}}': '({\n',
'{{/block_callable_brace}}': '});'
},
scss: {
'{{var}}': '$',
'{{=}}': ': ',
'{{string-var}}': '#{$',
'{{/string-var}}': '}',
'{{i}}': '#{',
'{{/i}}': '}',
'{{before_mixin}}': '@mixin ',
'{{call}}': '@include ',
'{{call_with_content}}': '@include ',
'{{brace}}': '{',
'{{/brace}}': '}',
'{{:}}': ': ',
'{{;}}': ';',
'{{block-content-var-delimeter}}': '',
'{{block-content-var}}': '',
'{{block-content-extract}}': '@content',
'{{block_callable_brace}}': '(){\n',
'{{/block_callable_brace}}': '}'
},
styl: {
'{{var}}': '$',
'{{=}}': ' = ',
'{{string-var}}': '{$',
'{{/string-var}}': '}',
'{{i}}': 'iopen',
'{{/i}}': 'iclose',
'{{before_mixin}}': '',
'{{call}}': '',
'{{call_with_content}}': '+',
'{{brace}}': '',
'{{/brace}}': '',
'{{:}}': ' ',
'{{;}}': '',
'{{block-content-var-delimeter}}': '',
'{{block-content-var}}': '',
'{{block-content-extract}}': '{block}',
'{{block_callable_brace}}': '()\n',
'{{/block_callable_brace}}': ''
},
sass: {
'{{var}}': '$',
'{{=}}': ': ',
'{{string-var}}': '#{$',
'{{/string-var}}': '}',
'{{i}}': '#{',
'{{/i}}': '}',
'{{before_mixin}}': '=',
'{{call}}': '+',
'{{call_with_content}}': '+',
'{{brace}}': '',
'{{/brace}}': '',
'{{:}}': ': ',
'{{;}}': '',
'{{block-content-var-delimeter}}': '',
'{{block-content-var}}': '',
'{{block-content-extract}}': '@content',
'{{block_callable_brace}}': '()\n',
'{{/block_callable_brace}}': ''
}
};
if (replaces[style] === undefined) {
throw new Error("smartgrid doesn't have output style \"" + style + "\"");
}
let active = replaces[style];
active['{{tab}}'] = this.resources.settings.tab;
let out = str;
for (let key in active) {
let tmp = out.split(key);
out = tmp.join(active[key]);
}
if (style === 'styl') {
let pattern = new RegExp(replaces.styl['{{i}}'] + '(.+?)' + replaces.styl['{{/i}}'], 'g');
let pattern_let = new RegExp("\{(.+?)\}", 'g');
let ol = replaces.styl['{{i}}'].length;
let cl = replaces.styl['{{/i}}'].length;
out = out.replace(pattern, function (a) {
let clear = a.substr(ol, a.length - ol - cl);
let one = '';
let lets = [];
clear = clear.replace(pattern_let, function (a) {
lets.push(a.substr(1, a.length - 2));
return '%s';
});
one = '"' + clear + '" % (' + lets.join(' ') + ')';
return one;
});
}
out = out.replace('{{device}}', this.resources.settings.defaultMediaDevice, 'g');
return out;
}
fixLines(str){
let reg = new RegExp(`\n(${this.resources.settings.tab})*\n\n`, 'g');
str = str.replace(/\r\n/g, '\n');
while(str.match(reg) !== null){
str = str.replace(reg, '\n\n');
}
return str;
}
}
module.exports = Replaces;