parent
af58d52b0f
commit
9992a3da1d
@ -0,0 +1,53 @@
|
|||||||
|
/* global i18n, Whisper */
|
||||||
|
|
||||||
|
// eslint-disable-next-line func-names
|
||||||
|
(function() {
|
||||||
|
'use strict';
|
||||||
|
|
||||||
|
window.Whisper = window.Whisper || {};
|
||||||
|
|
||||||
|
Whisper.UserDetailsDialogView = Whisper.View.extend({
|
||||||
|
className: 'loki-dialog modal',
|
||||||
|
initialize({
|
||||||
|
profileName,
|
||||||
|
avatarPath,
|
||||||
|
avatarColor,
|
||||||
|
pubkey,
|
||||||
|
onOk,
|
||||||
|
onStartConversation,
|
||||||
|
}) {
|
||||||
|
this.close = this.close.bind(this);
|
||||||
|
|
||||||
|
this.profileName = profileName;
|
||||||
|
this.pubkey = pubkey;
|
||||||
|
this.avatarPath = avatarPath;
|
||||||
|
this.avatarColor = avatarColor;
|
||||||
|
this.onOk = onOk;
|
||||||
|
this.onStartConversation = onStartConversation;
|
||||||
|
|
||||||
|
this.$el.focus();
|
||||||
|
this.render();
|
||||||
|
},
|
||||||
|
render() {
|
||||||
|
this.dialogView = new Whisper.ReactWrapperView({
|
||||||
|
className: 'edit-profile-dialog',
|
||||||
|
Component: window.Signal.Components.UserDetailsDialog,
|
||||||
|
props: {
|
||||||
|
onOk: this.onOk,
|
||||||
|
onClose: this.close,
|
||||||
|
onStartConversation: this.onStartConversation,
|
||||||
|
profileName: this.profileName,
|
||||||
|
pubkey: this.pubkey,
|
||||||
|
avatarPath: this.avatarPath,
|
||||||
|
i18n,
|
||||||
|
},
|
||||||
|
});
|
||||||
|
|
||||||
|
this.$el.append(this.dialogView.el);
|
||||||
|
return this;
|
||||||
|
},
|
||||||
|
close() {
|
||||||
|
this.remove();
|
||||||
|
},
|
||||||
|
});
|
||||||
|
})();
|
@ -0,0 +1,99 @@
|
|||||||
|
import React from 'react';
|
||||||
|
import { Avatar } from './Avatar';
|
||||||
|
|
||||||
|
declare global {
|
||||||
|
interface Window {
|
||||||
|
displayNameRegex: any;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
interface Props {
|
||||||
|
i18n: any;
|
||||||
|
profileName: string;
|
||||||
|
avatarPath: string;
|
||||||
|
avatarColor: string;
|
||||||
|
pubkey: string;
|
||||||
|
onClose: any;
|
||||||
|
onStartConversation: any;
|
||||||
|
}
|
||||||
|
|
||||||
|
export class UserDetailsDialog extends React.Component<Props> {
|
||||||
|
constructor(props: any) {
|
||||||
|
super(props);
|
||||||
|
|
||||||
|
this.closeDialog = this.closeDialog.bind(this);
|
||||||
|
this.onKeyUp = this.onKeyUp.bind(this);
|
||||||
|
this.onClickStartConversation = this.onClickStartConversation.bind(this);
|
||||||
|
window.addEventListener('keyup', this.onKeyUp);
|
||||||
|
}
|
||||||
|
|
||||||
|
public render() {
|
||||||
|
const i18n = this.props.i18n;
|
||||||
|
|
||||||
|
const cancelText = i18n('cancel');
|
||||||
|
const startConversation = i18n('startConversation');
|
||||||
|
|
||||||
|
return (
|
||||||
|
<div className="content">
|
||||||
|
{this.renderAvatar()}
|
||||||
|
<span className="profile-name">{this.props.profileName}</span>
|
||||||
|
<div className="message">{this.props.pubkey}</div>
|
||||||
|
|
||||||
|
<div className="buttons">
|
||||||
|
<button className="cancel" tabIndex={0} onClick={this.closeDialog}>
|
||||||
|
{cancelText}
|
||||||
|
</button>
|
||||||
|
|
||||||
|
<button
|
||||||
|
className="ok"
|
||||||
|
tabIndex={0}
|
||||||
|
onClick={this.onClickStartConversation}
|
||||||
|
>
|
||||||
|
{startConversation}
|
||||||
|
</button>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
);
|
||||||
|
}
|
||||||
|
|
||||||
|
private renderAvatar() {
|
||||||
|
const avatarPath = this.props.avatarPath;
|
||||||
|
const color = this.props.avatarColor;
|
||||||
|
|
||||||
|
return (
|
||||||
|
<Avatar
|
||||||
|
avatarPath={avatarPath}
|
||||||
|
color={color}
|
||||||
|
conversationType="direct"
|
||||||
|
i18n={this.props.i18n}
|
||||||
|
name={this.props.profileName}
|
||||||
|
phoneNumber={this.props.pubkey}
|
||||||
|
profileName={this.props.profileName}
|
||||||
|
size={80}
|
||||||
|
/>
|
||||||
|
);
|
||||||
|
}
|
||||||
|
|
||||||
|
private onKeyUp(event: any) {
|
||||||
|
switch (event.key) {
|
||||||
|
case 'Enter':
|
||||||
|
this.onClickStartConversation();
|
||||||
|
break;
|
||||||
|
case 'Esc':
|
||||||
|
case 'Escape':
|
||||||
|
this.closeDialog();
|
||||||
|
break;
|
||||||
|
default:
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
private closeDialog() {
|
||||||
|
window.removeEventListener('keyup', this.onKeyUp);
|
||||||
|
this.props.onClose();
|
||||||
|
}
|
||||||
|
|
||||||
|
private onClickStartConversation() {
|
||||||
|
this.props.onStartConversation();
|
||||||
|
this.closeDialog();
|
||||||
|
}
|
||||||
|
}
|
Loading…
Reference in New Issue