-
Notifications
You must be signed in to change notification settings - Fork 7
/
actions.js
318 lines (276 loc) · 9.91 KB
/
actions.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
'use babel';
import path from 'path';
import play from 'play';
let tickSound = path.resolve(__dirname, '../assets/sounds/1.wav');
let tickSound2 = path.resolve(__dirname, '../assets/sounds/2.wav');
let lastValue = null;
let lastTime = 0;
let tick = (value, accent) => {
if (lastValue != value) {
let now = Date.now();
if (accent || now - lastTime > 50) {
lastTime = now;
lastValue = value;
if (accent) {
play.sound(tickSound);
}
else {
play.sound(tickSound2);
}
}
}
};
export default function actions(message) {
// console.log(message.data);
// TODO
// col 1 : @media with current media indicator
// % / px
// col 6 : bg color img linear gradient
// col 8 : all value
if (message.data[0] === 176 && message.data[1] === 42 && message.data[2] === 127) {
// STOP
this.deleteLine();
}
if (message.data[0] === 176 && message.data[1] === 58 && message.data[2] === 127) {
// LEFT
this.focusSelector(-1);
}
if (message.data[0] === 176 && message.data[1] === 59 && message.data[2] === 127) {
// RIGHT
this.focusSelector(1);
}
if (message.data[0] === 176 && message.data[2] === 127) {
// COLUMN 2 BUTTONS POSITION
var values = {
33: 'absolute',
49: 'relative',
65: 'absolute'
};
var position = values[message.data[1]];
if (message.data[1] === 65) {
this.addLine('position', function(node) {
return 'absolute 50% auto auto 50%';
}, { focus: true, cb: function() {
this.addLine('transform', function(node) {
return 'translateX(-50%) translateY(-50%)';
}, { focus: true });
}.bind(this)});
}
else if (position) {
this.getFocusNode(function(node) {
if (node && node.type === 'decl' && node.prop === 'position' && node.value.split(' ')[0] === position) {
this.addLine('position', function() { return position; }, { focus: true });
}
else {
this.addLine('position', function(node) {
var value = '';
if (node) {
value = node.value.split(' ');
value.shift();
value = value.join(' ');
}
if (value) {
value = ' ' + value;
}
return position + value;
}, { focus: true });
}
}.bind(this));
}
}
if (message.data[0] === 176 && message.data[1] === 1) {
// COLUMN 2 SLIDER POSITION
var px = Math.round(message.data[2] / 127 * 64);
this.addLine('position', function(node) {
var position = !node ? 'relative' : node.value.split(' ')[0];
px = px !== 0 ? px + 'px' : px;
tick(position + ' ' + px, px === 0);
return position + ' ' + px;
});
}
// if (message.data[0] === 176 && message.data[1] === 17) {
// // COLUMN 2 ORIENTATION POSITION
// // TODO
//
// if (message.data[2] === 127) {
// // LEFT
//
// this.addLine('position', function(node) {
// var position = !node ? 'relative' : node.value.split(' ')[0];
// var value = '';
// if (node) {
// value = node.value.split(' ');
// value.shift();
// if (value.length === 0) {
// value = '0 0';
// }
// else if (value.length === 1) {
// value = value[0] + ' ' + value[0];
// }
// else {
// value = value[0] + ' ' + value[1];
// }
// }
// if (value) {
// value = ' ' + value;
// }
// return position + value;
// });
// }
// if (message.data[2] === 1 || message.data[2] === 65) {
// // MIDDLE
//
// this.addLine('position', function(node) {
// var position = !node ? 'relative' : node.value.split(' ')[0];
// var value = '';
// if (node) {
// value = node.value.split(' ');
// value.shift();
// if (value.length === 0) {
// value = '0';
// }
// else {
// value = value[0];
// }
// }
// if (value) {
// value = ' ' + value;
// }
// return position + value;
// });
// }
// if (message.data[2] === 63) {
// // RIGHT
//
// this.addLine('position', function(node) {
// var position = !node ? 'relative' : node.value.split(' ')[0];
// var value = '';
// if (node) {
// value = node.value.split(' ');
// value.shift();
// if (value.length === 0) {
// value = '0 0';
// }
// else if (value.length === 1) {
// value = value[0] + ' ' + value[0];
// }
// else {
// value = value[0] + ' ' + value[1];
// }
// }
// if (value) {
// value = ' ' + value;
// }
// return position + value;
// });
// }
//
// }
if (message.data[0] === 176 && message.data[2] === 127) {
// COLUMN 3 BUTTONS DISPLAY
var values = {
34: 'block',
50: 'inline-block',
66: 'flex'
};
var display = values[message.data[1]];
if (display) {
this.addLine('display', function() { return display; }, { focus: true });
}
}
if (message.data[0] === 176 && message.data[1] === 2) {
// COLUMN 3 SLIDER DISPLAY
var px = Math.round(message.data[2] / 127 * 66);
if (px >= 65) { px = '100%'; }
else if (px !== 0) { px = px + 'px'; }
tick(px, (px === 0 || px === '100%'));
this.addLine('size', function(node) { return px; });
}
if (message.data[0] === 176 && message.data[2] === 127) {
// COLUMN 4 BUTTONS MARGIN/PADDING
var props = {
35: 'margin',
51: 'padding'
};
var prop = props[message.data[1]];
if (prop) {
this.addLine(prop, function(node) {
var value = !node ? '0' : node.value;
return value;
}, { focus: true });
}
}
if (message.data[0] === 176 && message.data[1] === 3) {
// COLUMN 4 SLIDER MARGIN/PADDING
var px = Math.round(message.data[2] / 127 * 64);
px = px !== 0 ? px + 'px' : px;
this.getFocusNode(function(node) {
if (node && node.type === 'decl') {
if (node.prop === 'margin' || node.prop === 'padding') {
tick(px, (px === 0));
this.addLine(node.prop, function() { return px; });
}
}
}.bind(this));
}
if (message.data[0] === 176 && message.data[2] === 127) {
// COLUMN 5 BUTTONS FONTS WEIGHT
var values = {
36: '500',
52: '400',
68: '300'
};
var weight = values[message.data[1]];
if (weight) {
this.getFocusNode(function(node) {
if (node && node.type === 'decl' && node.prop === 'position' && node.value.split(' ')[0] === position) {
this.addLine('font', function() { return 'title ' + weight + ' 16px'; }, { focus: true });
}
else {
this.addLine('font', function(node) {
var px = '16px';
if (node) {
var splitted = node.value.split(' ');
px = splitted[splitted.length - 1];
}
return 'title ' + weight + ' ' + px;
}, { focus: true });
}
}.bind(this));
}
}
if (message.data[0] === 176 && message.data[1] === 4) {
// COLUMN 5 SLIDER FONT SIZE
var px = Math.round(message.data[2] / 127 * 10) + 12;
px = px !== 0 ? px + 'px' : px;
this.addLine('font', function(node) {
var font = ['title', 'regular', 0];
if (node) {
font = node.value.split(' ');
}
font[font.length - 1] = px;
let result = font.join(' ');
tick(result, (px === 0));
return result;
});
}
if (message.data[0] === 176 && message.data[2] === 127) {
// COLUMN 6 BUTTONS TRANSITION
var values = {
37: '0.1s',
53: '0.2s',
69: '0.3s'
};
var transition = values[message.data[1]];
if (transition) {
this.addLine('transition', function() { return transition; }, { focus: true });
}
}
if (message.data[0] === 176 && message.data[1] === 5) {
// COLUMN 6 SLIDER TRANSITION
var sec = Math.round(Math.round(message.data[2] / 127 * 3 / 10 * 100) * 0.02 * 100) / 100;
sec = sec !== 0 ? sec + 's' : sec;
tick(sec, (sec === 0));
this.addLine('transition', function(node) { return sec; });
}
};