diff --git a/_locales/en/messages.json b/_locales/en/messages.json index 279269fe7..58cc6bb23 100644 --- a/_locales/en/messages.json +++ b/_locales/en/messages.json @@ -958,6 +958,9 @@ "provideDeviceAlias": { "message": "Please provide an alias for this paired device" }, + "showPairingWordsTitle": { + "message": "Pairing Secret Words" + }, "clear": { "message": "Clear" }, diff --git a/background.html b/background.html index 6ff0af4c6..ecfe74afa 100644 --- a/background.html +++ b/background.html @@ -295,6 +295,14 @@ + + + diff --git a/js/background.js b/js/background.js index af370fd9a..411c15066 100644 --- a/js/background.js +++ b/js/background.js @@ -799,6 +799,12 @@ } }); + Whisper.events.on('showDevicePairingWordsDialog', async () => { + if (appView) { + appView.showDevicePairingWordsDialog(); + } + }); + Whisper.events.on('calculatingPoW', ({ pubKey, timestamp }) => { try { const conversation = ConversationController.get(pubKey); diff --git a/js/views/app_view.js b/js/views/app_view.js index f8cb68c13..4bf1ec5e0 100644 --- a/js/views/app_view.js +++ b/js/views/app_view.js @@ -224,6 +224,10 @@ }); this.el.append(dialog.el); }, + showDevicePairingWordsDialog() { + const dialog = new Whisper.DevicePairingWordsDialogView(); + this.el.append(dialog.el); + }, showAddServerDialog() { const dialog = new Whisper.AddServerDialogView(); this.el.append(dialog.el); diff --git a/js/views/device_pairing_words_dialog_view.js b/js/views/device_pairing_words_dialog_view.js new file mode 100644 index 000000000..afc0ca6b9 --- /dev/null +++ b/js/views/device_pairing_words_dialog_view.js @@ -0,0 +1,35 @@ +/* global Whisper, i18n, textsecure */ + +// eslint-disable-next-line func-names +(function() { + 'use strict'; + + window.Whisper = window.Whisper || {}; + + Whisper.DevicePairingWordsDialogView = Whisper.View.extend({ + className: 'loki-dialog device-pairing-words-dialog modal', + templateName: 'device-pairing-words-dialog', + initialize() { + const pubKey = textsecure.storage.user.getNumber(); + this.secretWords = window.mnemonic + .mn_encode(pubKey.slice(2), 'english') + .split(' ') + .slice(-3) + .join(' '); + this.render(); + }, + events: { + 'click #close': 'close', + }, + render_attributes() { + return { + title: i18n('showPairingWordsTitle'), + closeText: i18n('close'), + secretWords: this.secretWords, + }; + }, + close() { + this.remove(); + }, + }); +})(); diff --git a/ts/components/MainHeader.tsx b/ts/components/MainHeader.tsx index a63920946..84fd68a6f 100644 --- a/ts/components/MainHeader.tsx +++ b/ts/components/MainHeader.tsx @@ -381,6 +381,14 @@ export class MainHeader extends React.Component { trigger('showDevicePairingDialog'); }, }); + } else { + menuItems.push({ + id: 'showPairingWords', + name: 'Show Pairing Words', + onClick: () => { + trigger('showDevicePairingWordsDialog'); + }, + }); } this.setState({ menuItems });