/* Copyright 2015, 2016 OpenMarket Ltd Copyright 2017 New Vector Ltd Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License. */ import React from 'react'; import PropTypes from 'prop-types'; import { _t } from '../../../languageHandler'; import sdk from '../../../index'; import { getAddressType } from '../../../Invite'; import createRoom from '../../../createRoom'; import MatrixClientPeg from '../../../MatrixClientPeg'; import DMRoomMap from '../../../utils/DMRoomMap'; import Modal from '../../../Modal'; import AccessibleButton from '../elements/AccessibleButton'; import Promise from 'bluebird'; import dis from '../../../dispatcher'; import { addressTypes, InviteAddressType } from '../../../Invite.js'; const TRUNCATE_QUERY_LIST = 40; const QUERY_USER_DIRECTORY_DEBOUNCE_MS = 200; module.exports = React.createClass({ displayName: "UserPickerDialog", propTypes: { title: PropTypes.string.isRequired, description: PropTypes.oneOfType([ PropTypes.element, PropTypes.string, ]), value: PropTypes.string, placeholder: PropTypes.string, roomId: PropTypes.string, button: PropTypes.string, focus: PropTypes.bool, validAddressTypes: PropTypes.arrayOf(PropTypes.oneOfType(addressTypes)), onFinished: PropTypes.func.isRequired, }, getDefaultProps: function() { return { value: "", focus: true, validAddressTypes: addressTypes, }; }, getInitialState: function() { return { error: false, // List of InviteAddressType objects representing // the list of addresses we're going to invite inviteList: [], // Whether a search is ongoing busy: false, // An error message generated during the user directory search searchError: null, // Whether the server supports the user_directory API serverSupportsUserDirectory: true, // The query being searched for query: "", // List of AddressTile.InviteAddressType objects representing // the set of auto-completion results for the current search // query. queryList: [], }; }, componentDidMount: function() { if (this.props.focus) { // Set the cursor at the end of the text input this.refs.textinput.value = this.props.value; } }, onButtonClick: function() { let inviteList = this.state.inviteList.slice(); // Check the text input field to see if user has an unconverted address // If there is and it's valid add it to the local inviteList if (this.refs.textinput.value !== '') { inviteList = this._addInputToList(); if (inviteList === null) return; } this.props.onFinished(true, inviteList); }, onCancel: function() { this.props.onFinished(false); }, onKeyDown: function(e) { if (e.keyCode === 27) { // escape e.stopPropagation(); e.preventDefault(); this.props.onFinished(false); } else if (e.keyCode === 38) { // up arrow e.stopPropagation(); e.preventDefault(); if (this.addressSelector) this.addressSelector.moveSelectionUp(); } else if (e.keyCode === 40) { // down arrow e.stopPropagation(); e.preventDefault(); if (this.addressSelector) this.addressSelector.moveSelectionDown(); } else if (this.state.queryList.length > 0 && (e.keyCode === 188 || e.keyCode === 13 || e.keyCode === 9)) { // comma or enter or tab e.stopPropagation(); e.preventDefault(); if (this.addressSelector) this.addressSelector.chooseSelection(); } else if (this.refs.textinput.value.length === 0 && this.state.inviteList.length && e.keyCode === 8) { // backspace e.stopPropagation(); e.preventDefault(); this.onDismissed(this.state.inviteList.length - 1)(); } else if (e.keyCode === 13) { // enter e.stopPropagation(); e.preventDefault(); if (this.refs.textinput.value == '') { // if there's nothing in the input box, submit the form this.onButtonClick(); } else { this._addInputToList(); } } else if (e.keyCode === 188 || e.keyCode === 9) { // comma or tab e.stopPropagation(); e.preventDefault(); this._addInputToList(); } }, onQueryChanged: function(ev) { const query = ev.target.value; if (this.queryChangedDebouncer) { clearTimeout(this.queryChangedDebouncer); } // Only do search if there is something to search if (query.length > 0 && query != '@' && query.length >= 2) { this.queryChangedDebouncer = setTimeout(() => { if (this.state.serverSupportsUserDirectory) { this._doUserDirectorySearch(query); } else { this._doLocalSearch(query); } }, QUERY_USER_DIRECTORY_DEBOUNCE_MS); } else { this.setState({ queryList: [], query: "", searchError: null, }); } }, onDismissed: function(index) { return () => { const inviteList = this.state.inviteList.slice(); inviteList.splice(index, 1); this.setState({ inviteList: inviteList, queryList: [], query: "", }); if (this._cancelThreepidLookup) this._cancelThreepidLookup(); }; }, onClick: function(index) { return () => { this.onSelected(index); }; }, onSelected: function(index) { const inviteList = this.state.inviteList.slice(); inviteList.push(this.state.queryList[index]); this.setState({ inviteList: inviteList, queryList: [], query: "", }); if (this._cancelThreepidLookup) this._cancelThreepidLookup(); }, _doUserDirectorySearch: function(query) { this.setState({ busy: true, query, searchError: null, }); MatrixClientPeg.get().searchUserDirectory({ term: query, }).then((resp) => { // The query might have changed since we sent the request, so ignore // responses for anything other than the latest query. if (this.state.query !== query) { return; } this._processResults(resp.results, query); }).catch((err) => { console.error('Error whilst searching user directory: ', err); this.setState({ searchError: err.errcode ? err.message : _t('Something went wrong!'), }); if (err.errcode === 'M_UNRECOGNIZED') { this.setState({ serverSupportsUserDirectory: false, }); // Do a local search immediately this._doLocalSearch(query); } }).done(() => { this.setState({ busy: false, }); }); }, _doLocalSearch: function(query) { this.setState({ query, searchError: null, }); const queryLowercase = query.toLowerCase(); const results = []; MatrixClientPeg.get().getUsers().forEach((user) => { if (user.userId.toLowerCase().indexOf(queryLowercase) === -1 && user.displayName.toLowerCase().indexOf(queryLowercase) === -1 ) { return; } // Put results in the format of the new API results.push({ user_id: user.userId, display_name: user.displayName, avatar_url: user.avatarUrl, }); }); this._processResults(results, query); }, _processResults: function(results, query) { const queryList = []; results.forEach((user) => { if (user.user_id === MatrixClientPeg.get().credentials.userId) { return; } // Return objects, structure of which is defined // by InviteAddressType queryList.push({ addressType: 'mx', address: user.user_id, displayName: user.display_name, avatarMxc: user.avatar_url, isKnown: true, }); }); // If the query is a valid address, add an entry for that // This is important, otherwise there's no way to invite // a perfectly valid address if there are close matches. const addrType = getAddressType(query); if (this.props.validAddressTypes.indexOf(addrType) !== -1) { queryList.unshift({ addressType: addrType, address: query, isKnown: false, }); if (this._cancelThreepidLookup) this._cancelThreepidLookup(); if (addrType == 'email') { this._lookupThreepid(addrType, query).done(); } } this.setState({ queryList, error: false, }, () => { if (this.addressSelector) this.addressSelector.moveSelectionTop(); }); }, _addInputToList: function() { const addressText = this.refs.textinput.value.trim(); const addrType = getAddressType(addressText); const addrObj = { addressType: addrType, address: addressText, isKnown: false, }; if (addrType == null) { this.setState({ error: true }); return null; } else if (addrType == 'mx') { const user = MatrixClientPeg.get().getUser(addrObj.address); if (user) { addrObj.displayName = user.displayName; addrObj.avatarMxc = user.avatarUrl; addrObj.isKnown = true; } } const inviteList = this.state.inviteList.slice(); inviteList.push(addrObj); this.setState({ inviteList: inviteList, queryList: [], query: "", }); if (this._cancelThreepidLookup) this._cancelThreepidLookup(); return inviteList; }, _lookupThreepid: function(medium, address) { let cancelled = false; // Note that we can't safely remove this after we're done // because we don't know that it's the same one, so we just // leave it: it's replacing the old one each time so it's // not like they leak. this._cancelThreepidLookup = function() { cancelled = true; } // wait a bit to let the user finish typing return Promise.delay(500).then(() => { if (cancelled) return null; return MatrixClientPeg.get().lookupThreePid(medium, address); }).then((res) => { if (res === null || !res.mxid) return null; if (cancelled) return null; return MatrixClientPeg.get().getProfileInfo(res.mxid); }).then((res) => { if (res === null) return null; if (cancelled) return null; this.setState({ queryList: [{ // an InviteAddressType addressType: medium, address: address, displayName: res.displayname, avatarMxc: res.avatar_url, isKnown: true, }], }); }); }, render: function() { const TintableSvg = sdk.getComponent("elements.TintableSvg"); const AddressSelector = sdk.getComponent("elements.AddressSelector"); this.scrollElement = null; let query = []; // create the invite list if (this.state.inviteList.length > 0) { const AddressTile = sdk.getComponent("elements.AddressTile"); for (let i = 0; i < this.state.inviteList.length; i++) { query.push( ); } } // Add the query at the end query.push( , ); let error; let addressSelector; if (this.state.error) { error =
{_t("You have entered an invalid contact. Try using their Matrix ID or email address.")}
; } else if (this.state.searchError) { error =
{this.state.searchError}
; } else if ( this.state.query.length > 0 && this.state.queryList.length === 0 && !this.state.busy ) { error =
{_t("No results")}
; } else { addressSelector = ( {this.addressSelector = ref;}} addressList={ this.state.queryList } onSelected={ this.onSelected } truncateAt={ TRUNCATE_QUERY_LIST } /> ); } return (
{this.props.title}
{ query }
{ error } { addressSelector }
); } });