remove qrDialogView unused
parent
1eb8f8e6b1
commit
a03132f088
@ -1,36 +0,0 @@
|
||||
/* global Whisper */
|
||||
|
||||
// eslint-disable-next-line func-names
|
||||
(function() {
|
||||
'use strict';
|
||||
|
||||
window.Whisper = window.Whisper || {};
|
||||
|
||||
Whisper.QRDialogView = Whisper.View.extend({
|
||||
className: 'loki-dialog qr-dialog modal',
|
||||
initialize(options) {
|
||||
this.value = options.value || '';
|
||||
this.close = this.close.bind(this);
|
||||
|
||||
this.render();
|
||||
},
|
||||
|
||||
render() {
|
||||
this.dialogView = new Whisper.ReactWrapperView({
|
||||
className: 'qr-dialog-wrapper',
|
||||
Component: window.Signal.Components.SessionQRModal,
|
||||
props: {
|
||||
value: this.value,
|
||||
onClose: this.close,
|
||||
},
|
||||
});
|
||||
|
||||
this.$el.append(this.dialogView.el);
|
||||
return this;
|
||||
},
|
||||
|
||||
close() {
|
||||
this.remove();
|
||||
},
|
||||
});
|
||||
})();
|
@ -1,48 +0,0 @@
|
||||
import React from 'react';
|
||||
import { QRCode } from 'react-qr-svg';
|
||||
|
||||
import { SessionModal } from './SessionModal';
|
||||
import { SessionButton } from './SessionButton';
|
||||
import { SessionHtmlRenderer } from './SessionHTMLRenderer';
|
||||
|
||||
interface Props {
|
||||
value: string;
|
||||
onClose: any;
|
||||
}
|
||||
|
||||
export class SessionQRModal extends React.Component<Props> {
|
||||
constructor(props: any) {
|
||||
super(props);
|
||||
}
|
||||
public render() {
|
||||
const { value, onClose } = this.props;
|
||||
|
||||
// Foreground equivalent to .session-modal background color
|
||||
const bgColor = '#FFFFFF';
|
||||
const fgColor = '#1B1B1B';
|
||||
|
||||
return (
|
||||
<SessionModal
|
||||
title={window.i18n('QRCodeTitle')}
|
||||
onOk={() => null}
|
||||
onClose={onClose}
|
||||
>
|
||||
<div className="spacer-sm" />
|
||||
|
||||
<div className="qr-dialog__description subtle">
|
||||
<SessionHtmlRenderer html={window.i18n('QRCodeDescription')} />
|
||||
</div>
|
||||
<div className="spacer-lg" />
|
||||
|
||||
<div id="qr">
|
||||
<QRCode value={value} bgColor={bgColor} fgColor={fgColor} level="L" />
|
||||
</div>
|
||||
|
||||
<div className="spacer-lg" />
|
||||
<div className="session-modal__button-group">
|
||||
<SessionButton text={window.i18n('close')} onClick={onClose} />
|
||||
</div>
|
||||
</SessionModal>
|
||||
);
|
||||
}
|
||||
}
|
Loading…
Reference in New Issue