This repository has been archived by the owner on Jul 10, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
build.js
79 lines (68 loc) · 1.55 KB
/
build.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
#!/usr/bin/env node
'use strict';
const path = require('path');
const fse = require('fs-extra');
const Generator = require('homey-433/src/generator');
// Execute "homey433 generate" command
new Generator().generate();
// Extend app.json
const appConfigPath = path.join(__dirname, 'app.json');
const appConfig = fse.readJsonSync(appConfigPath);
appConfig.drivers.forEach(driver => {
const hasDim = driver.capabilities.indexOf("dim") >= 0;
const hasLight = driver.capabilities.indexOf("button.light") >= 0;
if (hasDim || hasLight){
driver.mobile = {
components: [
{
id: "icon",
capabilities: [ "onoff" ]
}
]
}
}
if (hasDim){
driver.capabilitiesOptions = Object.assign(
driver.capabilitiesOptions || {},
{
dim: {
title: {
en: "Speed",
nl: "Snelheid"
},
min: 0,
max: 2,
step: 1
}
},
);
driver.mobile.components.push({
id: "slider",
capabilities: [ "dim" ],
options: {
showTitle: true
}
});
}
if (hasLight){
driver.capabilitiesOptions = Object.assign(
driver.capabilitiesOptions || {},
{
"button.light": {
title: {
en: "Light",
nl: "Verlichting"
}
}
}
);
driver.mobile.components.push({
id: "button",
capabilities: [ "button.light" ],
options: {
showTitle: true
}
});
}
});
fse.writeJsonSync(appConfigPath, appConfig, {spaces: 2});