From 632e35c8a544a791f2a82d611b3b9188057767ce Mon Sep 17 00:00:00 2001 From: sachaaaaa Date: Fri, 23 Aug 2019 16:41:16 +1000 Subject: [PATCH] Secondary device registration UI --- background.html | 48 ++++++++++++++++-------- js/views/standalone_registration_view.js | 35 +++++++++++++++++ 2 files changed, 68 insertions(+), 15 deletions(-) diff --git a/background.html b/background.html index f0a891ea0..ea02be8c1 100644 --- a/background.html +++ b/background.html @@ -574,21 +574,7 @@
-

Restore using seed

-
-
- -
-
-
- Language: -
- -
-
- Restore -
-
+

Register a new account

@@ -609,6 +595,38 @@ Register
+ +

Restore using seed

+
+
+ +
+
+
+ Language: +
+ +
+
+ Restore +
+
+ +

Link device to an existing account

+
+

+ You will need your Primary Device handy during this step. +
+ Open the Loki Messenger App on your Primary Device +
+ and select "Pair New Device" in the main menu. +

+
+ +
+
+ Link +
diff --git a/js/views/standalone_registration_view.js b/js/views/standalone_registration_view.js index 027bc0815..4ebc9bac2 100644 --- a/js/views/standalone_registration_view.js +++ b/js/views/standalone_registration_view.js @@ -26,6 +26,7 @@ this.$('#error').hide(); this.$('.standalone-mnemonic').hide(); + this.$('.standalone-secondary-device').hide(); this.onGenerateMnemonic(); @@ -49,6 +50,7 @@ this.registrationParams = {}; this.$pages = this.$('.page'); + this.pairingTimeout = null; this.showRegisterPage(); this.onValidatePassword(); @@ -60,6 +62,7 @@ 'change #code': 'onChangeCode', 'click #register': 'registerWithoutMnemonic', 'click #register-mnemonic': 'registerWithMnemonic', + 'click #register-secondary-device': 'registerSecondaryDevice', 'click #back-button': 'onBack', 'click #save-button': 'onSaveProfile', 'change #mnemonic': 'onChangeMnemonic', @@ -123,6 +126,38 @@ const language = this.$('#mnemonic-display-language').val(); this.showProfilePage(mnemonic, language); }, + async registerSecondaryDevice() { + const mnemonic = this.$('#mnemonic-display').text(); + const language = this.$('#mnemonic-display-language').val(); + const primaryPubKey = this.$('#primary-pubkey').val(); + this.$('.standalone-secondary-device #error').hide(); + Whisper.events.on('secondaryDeviceRegistration', () => { + // Ensure the left menu is updated + Whisper.events.trigger('userChanged', { isSecondaryDevice: true }); + this.$el.trigger('openInbox'); + }); + clearTimeout(this.pairingTimeout); + this.pairingTimeout = setTimeout(() => { + this.$('.standalone-secondary-device #error').text( + 'The primary device has not responded within 1 minute. Ensure it is connected.' + ); + this.$('.standalone-secondary-device #error').show(); + }, 60000); + textsecure.storage.put('secondaryDeviceStatus', 'ongoing'); + try { + await this.accountManager.registerSingleDevice( + mnemonic, + language, + 'John Smith' + ); + await this.accountManager.requestPairing(primaryPubKey); + } catch (e) { + textsecure.storage.remove('secondaryDeviceStatus'); + this.$('.standalone-secondary-device #error').text(e); + this.$('.standalone-secondary-device #error').show(); + clearTimeout(this.pairingTimeout); + } + }, registerWithMnemonic() { const mnemonic = this.$('#mnemonic').val(); const language = this.$('#mnemonic-language').val();