Merge pull request #3015 from ASDosjani/port_fix

Fix some absence of port selection menu
10.9-maintenance
J Blackman 2022-10-18 07:36:03 +11:00 committed by GitHub
commit 00ecf2b494
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 19 additions and 12 deletions

View File

@ -26,9 +26,6 @@ PortHandler.initialize = function () {
this.selectList = document.querySelector(portPickerElementSelector);
this.initialWidth = this.selectList.offsetWidth + 12;
this.showVirtualMode = ConfigStorage.get('showVirtualMode').showVirtualMode;
this.showAllSerialDevices = ConfigStorage.get('showAllSerialDevices').showAllSerialDevices;
// fill dropdown with version numbers
generateVirtualApiVersions();
@ -120,8 +117,17 @@ PortHandler.initialize = function () {
}
}, MDNS_INTERVAL);
// start listening, check after TIMEOUT_CHECK ms
this.check();
this.reinitialize(); // just to prevent code redundancy
};
PortHandler.reinitialize = function () {
this.initialPorts = false;
if (this.usbCheckLoop) {
clearTimeout(this.usbCheckLoop);
}
this.showVirtualMode = ConfigStorage.get('showVirtualMode').showVirtualMode;
this.showAllSerialDevices = ConfigStorage.get('showAllSerialDevices').showAllSerialDevices;
this.check(); // start listening, check after TIMEOUT_CHECK ms
};
PortHandler.check = function () {
@ -135,7 +141,7 @@ PortHandler.check = function () {
self.check_serial_devices();
}
setTimeout(function () {
self.usbCheckLoop = setTimeout(function () {
self.check();
}, TIMEOUT_CHECK);
};
@ -196,7 +202,7 @@ PortHandler.check_usb_devices = function (callback) {
data: {isManual: true},
}));
self.portPickerElement.val('DFU').change();
self.portPickerElement.val('DFU').trigger('change');
self.setPortsInputWidth();
}
self.dfu_available = true;

View File

@ -133,8 +133,10 @@ options.initShowAllSerialDevices = function() {
const result = ConfigStorage.get('showAllSerialDevices');
showAllSerialDevicesElement
.prop('checked', !!result.showAllSerialDevices)
.on('change', () => ConfigStorage.set({ showAllSerialDevices: showAllSerialDevicesElement.is(':checked') }))
.trigger('change');
.on('change', () => {
ConfigStorage.set({ showAllSerialDevices: showAllSerialDevicesElement.is(':checked') });
PortHandler.reinitialize();
});
};
options.initShowVirtualMode = function() {
@ -144,9 +146,8 @@ options.initShowVirtualMode = function() {
.prop('checked', !!result.showVirtualMode)
.on('change', () => {
ConfigStorage.set({ showVirtualMode: showVirtualModeElement.is(':checked') });
PortHandler.initialPorts = false;
})
.trigger('change');
PortHandler.reinitialize();
});
};
options.initCordovaForceComputerUI = function () {