Skip to content

Commit 71b617a

Browse files
authored
Merge pull request #298 from makermelissa/connection-improvements
Improve connection step updating and add checkmarks
2 parents e68ab12 + 35f571e commit 71b617a

File tree

6 files changed

+70
-36
lines changed

6 files changed

+70
-36
lines changed

images/checkmark.svg

+1
Loading

js/workflows/ble.js

+13-17
Original file line numberDiff line numberDiff line change
@@ -29,6 +29,12 @@ class BLEWorkflow extends Workflow {
2929
this.infoDialog = new DeviceInfoModal("device-info");
3030
this.partialWrites = true;
3131
this.type = CONNTYPE.Ble;
32+
this.buttonStates = [
33+
{reconnect: false, request: false, bond: false},
34+
{reconnect: false, request: true, bond: false},
35+
{reconnect: true, request: true, bond: false},
36+
{reconnect: false, request: false, bond: true},
37+
];
3238
}
3339

3440
// This is called when a user clicks the main disconnect button
@@ -50,6 +56,13 @@ class BLEWorkflow extends Workflow {
5056
btnBond = modal.querySelector('#promptBond');
5157
btnReconnect = modal.querySelector('#bleReconnect');
5258

59+
// Map the button states to the buttons
60+
this.connectButtons = {
61+
reconnect: btnReconnect,
62+
request: btnRequestBluetoothDevice,
63+
bond: btnBond
64+
};
65+
5366
btnRequestBluetoothDevice.addEventListener('click', async (event) => {
5467
await this.onRequestBluetoothDeviceButtonClick(event);
5568
});
@@ -273,23 +286,6 @@ class BLEWorkflow extends Workflow {
273286
async showInfo(documentState) {
274287
return await this.infoDialog.open(this, documentState);
275288
}
276-
277-
// Handle the different button states for various connection steps
278-
connectionStep(step) {
279-
const buttonStates = [
280-
{reconnect: false, request: false, bond: false},
281-
{reconnect: false, request: true, bond: false},
282-
{reconnect: true, request: true, bond: false},
283-
{reconnect: false, request: false, bond: true},
284-
];
285-
286-
if (step < 0) step = 0;
287-
if (step > buttonStates.length - 1) step = buttonStates.length - 1;
288-
289-
btnReconnect.disabled = !buttonStates[step].reconnect;
290-
btnRequestBluetoothDevice.disabled = !buttonStates[step].request;
291-
btnBond.disabled = !buttonStates[step].bond;
292-
}
293289
}
294290

295291
export {BLEWorkflow};

js/workflows/usb.js

+14-19
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,11 @@ class USBWorkflow extends Workflow {
2424
this._messageCallback = null;
2525
this._btnSelectHostFolderCallback = null;
2626
this._btnUseHostFolderCallback = null;
27+
this.buttonStates = [
28+
{request: false, select: false},
29+
{request: true, select: false},
30+
{request: false, select: true},
31+
];
2732
}
2833

2934
async init(params) {
@@ -140,7 +145,7 @@ class USBWorkflow extends Workflow {
140145
}
141146
console.log(this._serialDevice);
142147
if (this._serialDevice != null) {
143-
this._connectionStep(2);
148+
this.connectionStep(2);
144149
return true;
145150
}
146151

@@ -156,6 +161,12 @@ class USBWorkflow extends Workflow {
156161
btnUseHostFolder = modal.querySelector('#useHostFolder');
157162
lblWorkingfolder = modal.querySelector('#workingFolder');
158163

164+
// Map the button states to the buttons
165+
this.connectButtons = {
166+
request: btnRequestSerialDevice,
167+
select: btnSelectHostFolder,
168+
};
169+
159170
btnRequestSerialDevice.disabled = true;
160171
btnSelectHostFolder.disabled = true;
161172
let serialConnect = async (event) => {
@@ -191,13 +202,13 @@ class USBWorkflow extends Workflow {
191202
if (stepOne = modal.querySelector('.step:first-of-type')) {
192203
stepOne.classList.add("hidden");
193204
}
194-
this._connectionStep(1);
205+
this.connectionStep(1);
195206
} else {
196207
// If not, hide all steps beyond the message
197208
modal.querySelectorAll('.step:not(:first-of-type)').forEach((stepItem) => {
198209
stepItem.classList.add("hidden");
199210
});
200-
this._connectionStep(0);
211+
this.connectionStep(0);
201212
}
202213

203214
// Hide the last step until we determine that we need it
@@ -250,7 +261,6 @@ class USBWorkflow extends Workflow {
250261

251262
// Workflow specific Functions
252263
async _switchToDevice(device) {
253-
254264
device.removeEventListener("message", this._messageCallback);
255265
this._messageCallback = this.onSerialReceive.bind(this);
256266
device.addEventListener("message", this._messageCallback);
@@ -365,21 +375,6 @@ print(binascii.hexlify(microcontroller.cpu.uid).decode('ascii').upper())`
365375
async showInfo(documentState) {
366376
return await this.infoDialog.open(this, documentState);
367377
}
368-
369-
// Handle the different button states for various connection steps
370-
_connectionStep(step) {
371-
const buttonStates = [
372-
{request: false, select: false},
373-
{request: true, select: false},
374-
{request: true, select: true},
375-
];
376-
377-
if (step < 0) step = 0;
378-
if (step > buttonStates.length - 1) step = buttonStates.length - 1;
379-
380-
btnRequestSerialDevice.disabled = !buttonStates[step].request;
381-
btnSelectHostFolder.disabled = !buttonStates[step].select;
382-
}
383378
}
384379

385380
export {USBWorkflow};

js/workflows/web.js

+2
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,8 @@ class WebWorkflow extends Workflow {
2323
this.deviceDiscoveryDialog = new DiscoveryModal("device-discovery");
2424
this.connIntervalId = null;
2525
this.type = CONNTYPE.Web;
26+
this.buttonStates = [];
27+
this.buttons = {};
2628
}
2729

2830
// This is called when a user clicks the main disconnect button

js/workflows/workflow.js

+29
Original file line numberDiff line numberDiff line change
@@ -50,6 +50,8 @@ class Workflow {
5050
this.repl = new REPL();
5151
this.plotterEnabled = false;
5252
this.plotterChart = false;
53+
this.buttonStates = [];
54+
this.connectButtons = {};
5355
}
5456

5557
async init(params) {
@@ -308,6 +310,33 @@ class Workflow {
308310
async available() {
309311
return Error("This work flow is not available.");
310312
}
313+
314+
// Handle the different button states for various connection steps
315+
connectionStep(step) {
316+
if (step < 0) step = 0;
317+
if (step > this.buttonStates.length - 1) step = this.buttonStates.length - 1;
318+
319+
for (let button in this.connectButtons) {
320+
this.connectButtons[button].disabled = !this.buttonStates[step][button];
321+
}
322+
323+
// Mark all previous steps as completed (hidden or not)
324+
for (let stepNumber = 0; stepNumber < step; stepNumber++) {
325+
this._markStepCompleted(stepNumber);
326+
}
327+
}
328+
329+
_markStepCompleted(stepNumber) {
330+
let modal = this.connectDialog.getModal();
331+
let steps = modal.querySelectorAll('.step');
332+
// For any steps prior to the last step, add a checkmark
333+
for (let i = 0; i < steps.length - 1; i++) {
334+
let step = steps[stepNumber];
335+
if (!step.classList.contains('completed')) {
336+
step.classList.add('completed');
337+
}
338+
}
339+
}
311340
}
312341

313342
export {

sass/layout/_grid.scss

+11
Original file line numberDiff line numberDiff line change
@@ -55,6 +55,17 @@
5555
&.hidden {
5656
display: none;
5757
}
58+
59+
&.completed .step-number::after {
60+
content: "";
61+
background: url('/images/checkmark.svg');
62+
position: relative;
63+
display: block;
64+
top: 20px;
65+
width: 50px;
66+
height: 50px;
67+
filter: drop-shadow(2px 2px 2px #888);
68+
}
5869
}
5970
}
6071

0 commit comments

Comments
 (0)