remove SessionResetConfirm dialog as unused

pull/1315/head
Audric Ackermann 5 years ago
parent 291982c2aa
commit 9041a408fd
No known key found for this signature in database
GPG Key ID: 999F434D76324AD4

@ -1097,12 +1097,6 @@
}
});
Whisper.events.on('showSessionRestoreConfirmation', options => {
if (appView) {
appView.showSessionRestoreConfirmation(options);
}
});
Whisper.events.on('showNicknameDialog', options => {
if (appView) {
appView.showNicknameDialog(options);

@ -229,10 +229,6 @@
const dialog = new Whisper.UpdateGroupMembersDialogView(groupConvo);
this.el.append(dialog.el);
},
showSessionRestoreConfirmation(options) {
const dialog = new Whisper.ConfirmSessionResetView(options);
this.el.append(dialog.el);
},
showLeaveGroupDialog(groupConvo) {
let title = i18n('deleteContact');
let message = i18n('deleteContactConfirmation');

@ -1,50 +0,0 @@
/* global Whisper, i18n */
// eslint-disable-next-line func-names
(function() {
'use strict';
window.Whisper = window.Whisper || {};
Whisper.ConfirmSessionResetView = Whisper.View.extend({
className: 'loki-dialog modal',
initialize({ pubkey, onOk }) {
this.title = i18n('couldNotDecryptMessage');
this.onOk = onOk;
this.messageText = i18n('confirmSessionRestore', pubkey);
this.okText = i18n('yes');
this.cancelText = i18n('cancel');
this.close = this.close.bind(this);
this.confirm = this.confirm.bind(this);
this.$el.focus();
this.render();
},
render() {
this.dialogView = new Whisper.ReactWrapperView({
className: 'leave-group-dialog',
Component: window.Signal.Components.ConfirmDialog,
props: {
titleText: this.title,
messageText: this.messageText,
okText: this.okText,
cancelText: this.cancelText,
onConfirm: this.confirm,
onClose: this.close,
},
});
this.$el.append(this.dialogView.el);
return this;
},
async confirm() {
this.onOk();
this.close();
},
close() {
this.remove();
},
});
})();

@ -1,35 +1,5 @@
@import 'themes.scss';
.leave-group-dialog {
.content {
max-width: 100% !important;
}
.titleText {
font-size: large;
text-align: center;
margin: 2px;
}
.ok {
background-color: orangered;
min-width: 70px;
border: none;
&:hover {
background-color: red;
}
}
.cancel {
border: none;
min-width: 70px;
}
}
.member-preview {
margin-left: 10px;
}
/* remove scroll bars */
.loki-dialog .add-moderators-dialog .content {

@ -13,7 +13,6 @@
@import 'recorder';
@import 'emoji';
@import 'mentions';
@import 'settings';
// Build the main view
@import 'index';

Loading…
Cancel
Save