You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
217 lines
5.5 KiB
TypeScript
217 lines
5.5 KiB
TypeScript
import React from 'react';
|
|
import { Contact, MemberList } from './MemberList';
|
|
import { cleanSearchTerm } from '../../util/cleanSearchTerm';
|
|
import { DefaultTheme } from 'styled-components';
|
|
|
|
interface Props {
|
|
contactList: Array<any>;
|
|
chatName: string;
|
|
onSubmit: any;
|
|
onClose: any;
|
|
// theme: DefaultTheme;
|
|
}
|
|
|
|
interface State {
|
|
contactList: Array<Contact>;
|
|
inputBoxValue: string;
|
|
}
|
|
|
|
export class AddModeratorsDialog extends React.Component<Props, State> {
|
|
private readonly updateSearchBound: (
|
|
event: React.FormEvent<HTMLInputElement>
|
|
) => void;
|
|
private readonly inputRef: React.RefObject<HTMLInputElement>;
|
|
|
|
constructor(props: any) {
|
|
super(props);
|
|
|
|
this.updateSearchBound = this.updateSearch.bind(this);
|
|
this.onMemberClicked = this.onMemberClicked.bind(this);
|
|
this.add = this.add.bind(this);
|
|
this.closeDialog = this.closeDialog.bind(this);
|
|
this.onClickOK = this.onClickOK.bind(this);
|
|
this.onKeyUp = this.onKeyUp.bind(this);
|
|
this.inputRef = React.createRef();
|
|
|
|
let contacts = this.props.contactList;
|
|
contacts = contacts.map(d => {
|
|
const lokiProfile = d.getLokiProfile();
|
|
const name = lokiProfile ? lokiProfile.displayName : 'Anonymous';
|
|
|
|
// TODO: should take existing members into account
|
|
const existingMember = false;
|
|
|
|
return {
|
|
id: d.id,
|
|
authorPhoneNumber: d.id,
|
|
authorProfileName: name,
|
|
selected: false,
|
|
authorName: name,
|
|
checkmarked: false,
|
|
existingMember,
|
|
};
|
|
});
|
|
this.state = {
|
|
contactList: contacts,
|
|
inputBoxValue: '',
|
|
};
|
|
|
|
window.addEventListener('keyup', this.onKeyUp);
|
|
}
|
|
|
|
public updateSearch(event: React.FormEvent<HTMLInputElement>) {
|
|
const searchTerm = event.currentTarget.value;
|
|
|
|
const cleanedTerm = cleanSearchTerm(searchTerm);
|
|
if (!cleanedTerm) {
|
|
return;
|
|
}
|
|
|
|
this.setState(state => {
|
|
return {
|
|
...state,
|
|
inputBoxValue: searchTerm,
|
|
};
|
|
});
|
|
}
|
|
public add() {
|
|
// if we have valid data
|
|
if (this.state.inputBoxValue.length > 64) {
|
|
const weHave = this.state.contactList.some(
|
|
user => user.authorPhoneNumber === this.state.inputBoxValue
|
|
);
|
|
if (!weHave) {
|
|
// lookup to verify it's registered?
|
|
|
|
// convert pubKey into local object...
|
|
const contacts = this.state.contactList;
|
|
contacts.push({
|
|
id: this.state.inputBoxValue,
|
|
authorPhoneNumber: this.state.inputBoxValue,
|
|
authorProfileName: this.state.inputBoxValue,
|
|
authorAvatarPath: '',
|
|
selected: true,
|
|
authorName: this.state.inputBoxValue,
|
|
checkmarked: true,
|
|
existingMember: false,
|
|
});
|
|
this.setState(state => {
|
|
return {
|
|
...state,
|
|
contactList: contacts,
|
|
};
|
|
});
|
|
}
|
|
//
|
|
}
|
|
// clear
|
|
if (this.inputRef.current) {
|
|
this.inputRef.current.value = '';
|
|
}
|
|
this.setState(state => {
|
|
return {
|
|
...state,
|
|
inputBoxValue: '',
|
|
};
|
|
});
|
|
}
|
|
|
|
public render() {
|
|
const i18n = window.i18n;
|
|
|
|
const hasContacts = this.state.contactList.length !== 0;
|
|
|
|
return (
|
|
<div className="content">
|
|
<p className="titleText">
|
|
{i18n('addModerators')} <span>{this.props.chatName}</span>
|
|
</p>
|
|
<div className="addModeratorBox">
|
|
<p>Add Moderator:</p>
|
|
<input
|
|
type="text"
|
|
ref={this.inputRef}
|
|
className="module-main-header__search__input"
|
|
placeholder={i18n('search')}
|
|
dir="auto"
|
|
onChange={this.updateSearchBound}
|
|
/>
|
|
<button className="add" tabIndex={0} onClick={this.add}>
|
|
{i18n('add')}
|
|
</button>
|
|
</div>
|
|
<div className="moderatorList">
|
|
<p>From friends:</p>
|
|
<div className="contact-selection-list">
|
|
<MemberList
|
|
members={this.state.contactList}
|
|
selected={{}}
|
|
i18n={i18n}
|
|
onMemberClicked={this.onMemberClicked}
|
|
/>
|
|
</div>
|
|
{hasContacts ? null : (
|
|
<p className="no-friends">{i18n('noContactsToAdd')}</p>
|
|
)}
|
|
</div>
|
|
<div className="buttons">
|
|
<button className="cancel" tabIndex={0} onClick={this.closeDialog}>
|
|
{i18n('cancel')}
|
|
</button>
|
|
<button className="ok" tabIndex={0} onClick={this.onClickOK}>
|
|
{i18n('ok')}
|
|
</button>
|
|
</div>
|
|
</div>
|
|
);
|
|
}
|
|
|
|
private onClickOK() {
|
|
this.add(); // process inputBox
|
|
const selectedContacts = this.state.contactList
|
|
.filter(d => d.checkmarked)
|
|
.map(d => d.id);
|
|
if (selectedContacts.length > 0) {
|
|
this.props.onSubmit(selectedContacts);
|
|
}
|
|
|
|
this.closeDialog();
|
|
}
|
|
|
|
private onKeyUp(event: any) {
|
|
switch (event.key) {
|
|
case 'Enter':
|
|
this.onClickOK();
|
|
break;
|
|
case 'Esc':
|
|
case 'Escape':
|
|
this.closeDialog();
|
|
break;
|
|
default:
|
|
}
|
|
}
|
|
|
|
private closeDialog() {
|
|
window.removeEventListener('keyup', this.onKeyUp);
|
|
|
|
this.props.onClose();
|
|
}
|
|
|
|
private onMemberClicked(selected: any) {
|
|
const updatedContacts = this.state.contactList.map(member => {
|
|
if (member.id === selected.id) {
|
|
return { ...member, checkmarked: !member.checkmarked };
|
|
} else {
|
|
return member;
|
|
}
|
|
});
|
|
|
|
this.setState(state => {
|
|
return {
|
|
...state,
|
|
contactList: updatedContacts,
|
|
};
|
|
});
|
|
}
|
|
}
|