add Dialog on app start to ask to update SessionID
parent
1045bfeba8
commit
b0a229bf13
@ -0,0 +1,35 @@
|
||||
/* global Whisper */
|
||||
|
||||
// eslint-disable-next-line func-names
|
||||
(function() {
|
||||
'use strict';
|
||||
|
||||
window.Whisper = window.Whisper || {};
|
||||
|
||||
Whisper.SessionIDResetDialog = Whisper.View.extend({
|
||||
className: 'loki-dialog session-id-reset-dialog modal',
|
||||
initialize(options) {
|
||||
this.close = this.close.bind(this);
|
||||
this.theme = options.theme;
|
||||
this.render();
|
||||
},
|
||||
|
||||
render() {
|
||||
this.dialogView = new Whisper.ReactWrapperView({
|
||||
className: 'session-id-dialog-wrapper',
|
||||
Component: window.Signal.Components.SessionIDResetDialog,
|
||||
props: {
|
||||
onClose: this.close,
|
||||
theme: this.theme,
|
||||
},
|
||||
});
|
||||
|
||||
this.$el.append(this.dialogView.el);
|
||||
return this;
|
||||
},
|
||||
|
||||
close() {
|
||||
this.remove();
|
||||
},
|
||||
});
|
||||
})();
|
@ -1,35 +0,0 @@
|
||||
import React from 'react';
|
||||
|
||||
import { SessionModal } from './session/SessionModal';
|
||||
import { SessionButton } from './session/SessionButton';
|
||||
import { DefaultTheme } from 'styled-components';
|
||||
type Props = {
|
||||
titleText: string;
|
||||
messageText: string;
|
||||
okText: string;
|
||||
cancelText: string;
|
||||
onConfirm: any;
|
||||
onClose: any;
|
||||
theme: DefaultTheme;
|
||||
};
|
||||
|
||||
export const ConfirmDialog = (props: Props) => {
|
||||
return (
|
||||
<SessionModal
|
||||
title={props.titleText}
|
||||
onClose={props.onClose}
|
||||
onOk={() => null}
|
||||
theme={props.theme}
|
||||
>
|
||||
<div className="spacer-md" />
|
||||
<p className="messageText">{props.messageText}</p>
|
||||
<div className="spacer-md" />
|
||||
|
||||
<div className="session-modal__button-group">
|
||||
<SessionButton text={props.okText} onClick={props.onConfirm} />
|
||||
|
||||
<SessionButton text={props.cancelText} onClick={props.onClose} />
|
||||
</div>
|
||||
</SessionModal>
|
||||
);
|
||||
};
|
Loading…
Reference in New Issue