-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathloader.js
138 lines (131 loc) · 4.34 KB
/
loader.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
/* BLE debug info */
Puck.debug = 3;
/* Are we only putting a single app on a device? If so
apps should all be saved as .bootcde and we write info
about the current app into app.info */
Const.SINGLE_APP_ONLY = false;
/* Assume - until we know more - that we have no command
to show messages. */
Const.HAS_E_SHOWMESSAGE = true;
Const.MESSAGE_RELOAD ="Press BTN1 to reload";
if (window.location.host=="espruino.com") {
document.getElementById("apploaderlinks").innerHTML =
'This is the official Espruino App Loader - you can also try the <a href="https://espruino.github.io/EspruinoApps/">Development Version</a> for the most recent apps.';
} else if (window.location.host=="espruino.github.io") {
document.title += " [Development]";
document.getElementById("apploaderlinks").innerHTML =
'This is the development Espruino App Loader - you can also try the <a href="https://espruino.com/apps/">Official Version</a> for stable apps.';
} else {
document.title += " [Unofficial]";
document.getElementById("apploaderlinks").innerHTML =
'This is not the official Espruino App Loader - you can try the <a href="https://espruino.com/apps/">Official Version</a> here.';
}
(function() {
let username = "espruino";
let githubMatch = window.location.href.match(/\/(\w+)\.github\.io/);
if (githubMatch) username = githubMatch[1];
Const.APP_SOURCECODE_URL = `https://github.com/${username}/WatchApps/tree/master/apps`;
})();
const MYDEVICEINFO = [ {
id : "ROCK",
name : "ROCK",
features : ["BLE","BLEHID","NFC","GRAPHICS"],
img : "img/rock.jpeg"
},
{
id : "Magic3",
name : "Magic3",
features : ["BLE","BLEHID","NFC","GRAPHICS"],
img : "img/magic3.jpeg"
},
{
id : "P8",
name : "P8",
features : ["BLE","BLEHID","NFC","GRAPHICS"],
img : "img/p8.jpeg"
},
{
id : "SN80",
name : "SN80",
features : ["BLE","BLEHID","NFC","GRAPHICS"],
img : "img/sn80.jpeg"
},
{
id : "BEBINCA79",
name : "Bebinca79",
features : ["BLE","BLEHID","NFC","GRAPHICS"],
img : "img/bebinca79.jpeg"
},
{
id : "G5",
name : "G5",
features : ["BLE","BLEHID","NFC","GRAPHICS"],
img : "img/g5.jpeg"
},
{
id : "GW32",
name : "GW32",
features : ["BLE","BLEHID","NFC","GRAPHICS"],
img : "img/gw32.jpeg"
}
];
function onFoundDeviceInfo(deviceId, deviceVersion) {
// check against features shown?
filterAppsForDevice(deviceId);
}
var originalAppJSON = undefined;
function filterAppsForDevice(deviceId) {
if (originalAppJSON===undefined)
originalAppJSON = appJSON;
var device = MYDEVICEINFO.find(d=>d.id==deviceId);
if (!device) {
showToast(`Device ID ${deviceId} not recognised. Some apps may not work`, "warning");
Const.HAS_E_SHOWMESSAGE = false; // assume no display
appJSON = originalAppJSON;
} else {
// assume showmessage if device has a display
Const.HAS_E_SHOWMESSAGE = device.features.includes("GRAPHICS");
// Now filter apps
appJSON = originalAppJSON.filter(app => {
// No features needed? all good!
if (!app.needsFeatures) return true;
// if every feature satisfied, that's great!
if (app.needsFeatures.every(feature => device.features.includes(feature)))
return true;
// uh-oh
console.log(`Dropping ${app.id} because ${deviceId} doesn't contain all features`);
return false;
});
}
refreshLibrary();
}
window.addEventListener('load', (event) => {
var html = `<div class="columns">
${MYDEVICEINFO.map(d=>`
<div class="column col-3 col-xs-6">
<div class="card devicechooser" deviceid="${d.id}">
<div class="card-header">
<div class="card-title h5">${d.name}</div>
<!--<div class="card-subtitle text-gray">...</div>-->
</div>
<div class="card-image">
<img src="${d.img}" alt="${d.name}" class="img-responsive">
</div>
</div>
</div>`).join("\n")}
</div><div class="columns">
<div class="column col-12 text-center">
<p>Choose One</p>
</div>
</div>`;
showPrompt("Which device?",html,{},false);
htmlToArray(document.querySelectorAll(".devicechooser")).forEach(button => {
button.addEventListener("click",event => {
let button = event.currentTarget;
let deviceId = button.getAttribute("deviceid");
hidePrompt();
console.log(deviceId);
filterAppsForDevice(deviceId);
});
});
});