|
|
|
@ -17,7 +17,11 @@ interface Props {
|
|
|
|
|
onStartConversation: any;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
export class UserDetailsDialog extends React.Component<Props> {
|
|
|
|
|
interface State {
|
|
|
|
|
isEnlargeImageShown: boolean;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
export class UserDetailsDialog extends React.Component<Props, State> {
|
|
|
|
|
private modalRef: any;
|
|
|
|
|
|
|
|
|
|
constructor(props: any) {
|
|
|
|
@ -28,6 +32,7 @@ export class UserDetailsDialog extends React.Component<Props> {
|
|
|
|
|
this.onClickStartConversation = this.onClickStartConversation.bind(this);
|
|
|
|
|
window.addEventListener('keyup', this.onKeyUp);
|
|
|
|
|
this.modalRef = React.createRef();
|
|
|
|
|
this.state = { isEnlargeImageShown: false };
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public componentWillMount() {
|
|
|
|
@ -74,6 +79,7 @@ export class UserDetailsDialog extends React.Component<Props> {
|
|
|
|
|
private renderAvatar() {
|
|
|
|
|
const avatarPath = this.props.avatarPath;
|
|
|
|
|
const color = this.props.avatarColor;
|
|
|
|
|
const size = this.state.isEnlargeImageShown ? 300 : 80;
|
|
|
|
|
|
|
|
|
|
return (
|
|
|
|
|
<Avatar
|
|
|
|
@ -84,11 +90,17 @@ export class UserDetailsDialog extends React.Component<Props> {
|
|
|
|
|
name={this.props.profileName}
|
|
|
|
|
phoneNumber={this.props.pubkey}
|
|
|
|
|
profileName={this.props.profileName}
|
|
|
|
|
size={80}
|
|
|
|
|
size={size}
|
|
|
|
|
onAvatarClick={this.handleShowEnlargedDialog}
|
|
|
|
|
borderWidth={size / 2}
|
|
|
|
|
/>
|
|
|
|
|
);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
private readonly handleShowEnlargedDialog = () => {
|
|
|
|
|
this.setState({ isEnlargeImageShown: !this.state.isEnlargeImageShown });
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
private onKeyUp(event: any) {
|
|
|
|
|
switch (event.key) {
|
|
|
|
|
case 'Enter':
|
|
|
|
|