You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
141 lines
3.8 KiB
JavaScript
141 lines
3.8 KiB
JavaScript
/* global
|
|
Whisper,
|
|
*/
|
|
|
|
/* eslint-disable more/no-then */
|
|
|
|
// eslint-disable-next-line func-names
|
|
(function() {
|
|
'use strict';
|
|
|
|
window.Whisper = window.Whisper || {};
|
|
|
|
Whisper.SessionRegistrationView = Whisper.View.extend({
|
|
className: 'session-fullscreen',
|
|
initialize() {
|
|
this.render();
|
|
|
|
/*
|
|
|
|
this.$passwordInput = this.$('#password');
|
|
this.$passwordConfirmationInput = this.$('#password-confirmation');
|
|
this.$passwordInputError = this.$('.password-inputs .error');
|
|
|
|
this.pairingInterval = null;
|
|
|
|
this.onSecondaryDeviceRegistered = this.onSecondaryDeviceRegistered.bind(
|
|
this
|
|
); */
|
|
},
|
|
render() {
|
|
this.session_registration_view = new Whisper.ReactWrapperView({
|
|
className: 'session-full-screen-flow session-fullscreen',
|
|
Component: window.Signal.Components.SessionRegistrationView,
|
|
props: {},
|
|
});
|
|
|
|
this.$el.append(this.session_registration_view.el);
|
|
return this;
|
|
},
|
|
/* events: {
|
|
keyup: 'onKeyup',
|
|
'validation input.number': 'onValidation',
|
|
'click #request-voice': 'requestVoice',
|
|
'click #request-sms': 'requestSMSVerification',
|
|
'change #code': 'onChangeCode',
|
|
'click #register': 'registerWithoutMnemonic',
|
|
'click #register-mnemonic': 'registerWithMnemonic',
|
|
'click #register-secondary-device': 'registerSecondaryDevice',
|
|
'click #cancel-secondary-device': 'cancelSecondaryDevice',
|
|
'click #back-button': 'onBack',
|
|
'click #save-button': 'onSaveProfile',
|
|
'change #mnemonic': 'onChangeMnemonic',
|
|
'click #generate-mnemonic': 'onGenerateMnemonic',
|
|
'change #mnemonic-display-language': 'onGenerateMnemonic',
|
|
'click #copy-mnemonic': 'onCopyMnemonic',
|
|
'click .section-toggle': 'toggleSection',
|
|
'keyup #password': 'onValidatePassword',
|
|
'keyup #password-confirmation': 'onValidatePassword',
|
|
},
|
|
|
|
|
|
onKeyup(event) {
|
|
|
|
const validName = this.sanitiseNameInput();
|
|
switch (event.key) {
|
|
case 'Enter':
|
|
if (event.target.id === 'mnemonic') {
|
|
this.registerWithMnemonic();
|
|
} else if (event.target.id === 'primary-pubkey') {
|
|
this.registerSecondaryDevice();
|
|
} else if (validName) {
|
|
this.onSaveProfile();
|
|
}
|
|
break;
|
|
case 'Escape':
|
|
case 'Esc':
|
|
this.onBack();
|
|
break;
|
|
default:
|
|
}
|
|
},
|
|
|
|
registerWithoutMnemonic() {
|
|
const mnemonic = this.$('#mnemonic-display').text();
|
|
const language = this.$('#mnemonic-display-language').val();
|
|
this.showProfilePage(mnemonic, language);
|
|
},
|
|
|
|
|
|
|
|
registerWithMnemonic() {
|
|
const mnemonic = this.$('#mnemonic').val();
|
|
const language = this.$('#mnemonic-language').val();
|
|
try {
|
|
window.mnemonic.mn_decode(mnemonic, language);
|
|
} catch (error) {
|
|
this.$('#mnemonic').addClass('error-input');
|
|
this.$('#error').text(error);
|
|
this.$('#error').show();
|
|
return;
|
|
}
|
|
this.$('#error').hide();
|
|
this.$('#mnemonic').removeClass('error-input');
|
|
if (!mnemonic) {
|
|
this.log('Please provide a mnemonic word list');
|
|
} else {
|
|
this.showProfilePage(mnemonic, language);
|
|
}
|
|
},
|
|
onSaveProfile() {
|
|
if (_.isEmpty(this.registrationParams)) {
|
|
this.onBack();
|
|
return;
|
|
}
|
|
|
|
const { mnemonic, language } = this.registrationParams;
|
|
this.register(mnemonic, language);
|
|
},
|
|
*/
|
|
log(s) {
|
|
window.log.info(s);
|
|
this.$('#status').text(s);
|
|
},
|
|
displayError(error) {
|
|
this.$('#error')
|
|
.hide()
|
|
.text(error)
|
|
.addClass('in')
|
|
.fadeIn();
|
|
},
|
|
|
|
showToast(message) {
|
|
const toast = new Whisper.MessageToastView({
|
|
message,
|
|
});
|
|
toast.$el.appendTo(this.$el);
|
|
toast.render();
|
|
},
|
|
});
|
|
})();
|