2016-09-05 14:03:16 +03:00
|
|
|
/*
|
|
|
|
Copyright 2015, 2016 OpenMarket Ltd
|
2019-04-03 18:27:45 +03:00
|
|
|
Copyright 2017, 2018, 2019 New Vector Ltd
|
2019-07-25 23:45:32 +03:00
|
|
|
Copyright 2019 Michael Telatynski <7t3chguy@gmail.com>
|
2019-07-29 13:58:47 +03:00
|
|
|
Copyright 2019 The Matrix.org Foundation C.I.C.
|
2016-09-05 14:03:16 +03:00
|
|
|
|
|
|
|
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.
|
|
|
|
*/
|
|
|
|
|
2019-12-08 15:16:17 +03:00
|
|
|
import React, {createRef} from 'react';
|
2017-08-14 19:43:00 +03:00
|
|
|
import PropTypes from 'prop-types';
|
2019-08-24 13:59:46 +03:00
|
|
|
import createReactClass from 'create-react-class';
|
2019-07-29 13:58:47 +03:00
|
|
|
|
2018-06-21 02:37:37 +03:00
|
|
|
import { _t, _td } from '../../../languageHandler';
|
2017-01-25 21:51:28 +03:00
|
|
|
import sdk from '../../../index';
|
|
|
|
import MatrixClientPeg from '../../../MatrixClientPeg';
|
2019-08-29 17:20:14 +03:00
|
|
|
import dis from '../../../dispatcher';
|
2017-08-15 15:42:23 +03:00
|
|
|
import { addressTypes, getAddressType } from '../../../UserAddress.js';
|
2018-05-01 13:18:45 +03:00
|
|
|
import GroupStore from '../../../stores/GroupStore';
|
2019-07-29 13:58:47 +03:00
|
|
|
import * as Email from '../../../email';
|
|
|
|
import IdentityAuthClient from '../../../IdentityAuthClient';
|
2019-08-29 17:20:14 +03:00
|
|
|
import { getDefaultIdentityServerUrl, useDefaultIdentityServer } from '../../../utils/IdentityServerUtils';
|
|
|
|
import { abbreviateUrl } from '../../../utils/UrlUtils';
|
2019-11-12 14:46:58 +03:00
|
|
|
import {sleep} from "../../../utils/promise";
|
2016-09-05 14:03:16 +03:00
|
|
|
|
2016-09-06 17:46:58 +03:00
|
|
|
const TRUNCATE_QUERY_LIST = 40;
|
2017-06-07 17:58:21 +03:00
|
|
|
const QUERY_USER_DIRECTORY_DEBOUNCE_MS = 200;
|
2016-09-05 19:28:08 +03:00
|
|
|
|
2018-06-21 02:37:37 +03:00
|
|
|
const addressTypeName = {
|
|
|
|
'mx-user-id': _td("Matrix ID"),
|
|
|
|
'mx-room-id': _td("Matrix Room ID"),
|
|
|
|
'email': _td("email address"),
|
|
|
|
};
|
|
|
|
|
|
|
|
|
2019-08-24 13:59:46 +03:00
|
|
|
module.exports = createReactClass({
|
2017-09-21 18:53:10 +03:00
|
|
|
displayName: "AddressPickerDialog",
|
2017-08-14 19:43:00 +03:00
|
|
|
|
2016-09-05 14:03:16 +03:00
|
|
|
propTypes: {
|
2017-08-14 19:43:00 +03:00
|
|
|
title: PropTypes.string.isRequired,
|
2017-08-15 12:57:24 +03:00
|
|
|
description: PropTypes.node,
|
2017-11-07 21:51:41 +03:00
|
|
|
// Extra node inserted after picker input, dropdown and errors
|
|
|
|
extraNode: PropTypes.node,
|
2017-08-14 19:43:00 +03:00
|
|
|
value: PropTypes.string,
|
2019-09-27 14:18:19 +03:00
|
|
|
placeholder: PropTypes.oneOfType([PropTypes.string, PropTypes.func]),
|
2017-08-14 19:43:00 +03:00
|
|
|
roomId: PropTypes.string,
|
|
|
|
button: PropTypes.string,
|
|
|
|
focus: PropTypes.bool,
|
2017-08-21 18:30:49 +03:00
|
|
|
validAddressTypes: PropTypes.arrayOf(PropTypes.oneOf(addressTypes)),
|
2017-08-14 19:43:00 +03:00
|
|
|
onFinished: PropTypes.func.isRequired,
|
2017-09-20 17:29:31 +03:00
|
|
|
groupId: PropTypes.string,
|
2017-09-27 13:04:41 +03:00
|
|
|
// The type of entity to search for. Default: 'user'.
|
2017-09-21 18:53:10 +03:00
|
|
|
pickerType: PropTypes.oneOf(['user', 'room']),
|
2017-09-27 13:52:05 +03:00
|
|
|
// Whether the current user should be included in the addresses returned. Only
|
|
|
|
// applicable when pickerType is `user`. Default: false.
|
|
|
|
includeSelf: PropTypes.bool,
|
2016-09-05 14:03:16 +03:00
|
|
|
},
|
|
|
|
|
|
|
|
getDefaultProps: function() {
|
|
|
|
return {
|
|
|
|
value: "",
|
2017-06-07 17:58:21 +03:00
|
|
|
focus: true,
|
2017-08-14 19:43:00 +03:00
|
|
|
validAddressTypes: addressTypes,
|
2017-09-21 18:53:10 +03:00
|
|
|
pickerType: 'user',
|
2017-09-27 13:52:05 +03:00
|
|
|
includeSelf: false,
|
2016-09-05 14:03:16 +03:00
|
|
|
};
|
|
|
|
},
|
|
|
|
|
2016-09-05 19:28:08 +03:00
|
|
|
getInitialState: function() {
|
2019-09-09 17:03:00 +03:00
|
|
|
let validAddressTypes = this.props.validAddressTypes;
|
|
|
|
// Remove email from validAddressTypes if no IS is configured. It may be added at a later stage by the user
|
|
|
|
if (!MatrixClientPeg.get().getIdentityServerUrl() && validAddressTypes.includes("email")) {
|
2019-09-17 16:56:55 +03:00
|
|
|
validAddressTypes = validAddressTypes.filter(type => type !== "email");
|
2019-09-09 17:03:00 +03:00
|
|
|
}
|
|
|
|
|
2016-09-05 19:28:08 +03:00
|
|
|
return {
|
2019-07-30 12:29:41 +03:00
|
|
|
// Whether to show an error message because of an invalid address
|
|
|
|
invalidAddressError: false,
|
2017-08-15 12:57:24 +03:00
|
|
|
// List of UserAddressType objects representing
|
2017-01-25 18:23:50 +03:00
|
|
|
// the list of addresses we're going to invite
|
2018-06-21 14:13:27 +03:00
|
|
|
selectedList: [],
|
2017-06-07 17:58:21 +03:00
|
|
|
// Whether a search is ongoing
|
|
|
|
busy: false,
|
2017-06-07 19:33:15 +03:00
|
|
|
// An error message generated during the user directory search
|
|
|
|
searchError: null,
|
2017-06-07 19:40:09 +03:00
|
|
|
// Whether the server supports the user_directory API
|
|
|
|
serverSupportsUserDirectory: true,
|
2017-06-07 17:58:21 +03:00
|
|
|
// The query being searched for
|
|
|
|
query: "",
|
2018-06-21 14:13:27 +03:00
|
|
|
// List of UserAddressType objects representing the set of
|
|
|
|
// auto-completion results for the current search query.
|
|
|
|
suggestedList: [],
|
2019-08-29 17:20:14 +03:00
|
|
|
// List of address types initialised from props, but may change while the
|
2019-09-09 17:03:00 +03:00
|
|
|
// dialog is open and represents the supported list of address types at this time.
|
|
|
|
validAddressTypes,
|
2016-09-05 19:28:08 +03:00
|
|
|
};
|
|
|
|
},
|
|
|
|
|
2019-12-08 15:16:17 +03:00
|
|
|
UNSAFE_componentWillMount: function() {
|
|
|
|
this._textinput = createRef();
|
|
|
|
},
|
|
|
|
|
2016-09-05 14:03:16 +03:00
|
|
|
componentDidMount: function() {
|
|
|
|
if (this.props.focus) {
|
|
|
|
// Set the cursor at the end of the text input
|
2019-12-08 15:16:17 +03:00
|
|
|
this._textinput.current.value = this.props.value;
|
2016-09-05 14:03:16 +03:00
|
|
|
}
|
|
|
|
},
|
|
|
|
|
2019-08-29 17:20:14 +03:00
|
|
|
getPlaceholder() {
|
|
|
|
const { placeholder } = this.props;
|
|
|
|
if (typeof placeholder === "string") {
|
|
|
|
return placeholder;
|
|
|
|
}
|
|
|
|
// Otherwise it's a function, as checked by prop types.
|
|
|
|
return placeholder(this.state.validAddressTypes);
|
|
|
|
},
|
|
|
|
|
2016-09-13 14:07:49 +03:00
|
|
|
onButtonClick: function() {
|
2018-06-21 14:13:27 +03:00
|
|
|
let selectedList = this.state.selectedList.slice();
|
2016-09-14 17:09:23 +03:00
|
|
|
// Check the text input field to see if user has an unconverted address
|
2018-06-21 14:13:27 +03:00
|
|
|
// If there is and it's valid add it to the local selectedList
|
2019-12-08 15:16:17 +03:00
|
|
|
if (this._textinput.current.value !== '') {
|
|
|
|
selectedList = this._addAddressesToList([this._textinput.current.value]);
|
2018-06-21 14:13:27 +03:00
|
|
|
if (selectedList === null) return;
|
2016-09-14 17:09:23 +03:00
|
|
|
}
|
2018-06-21 14:13:27 +03:00
|
|
|
this.props.onFinished(true, selectedList);
|
2016-09-05 16:16:21 +03:00
|
|
|
},
|
|
|
|
|
2016-09-05 19:28:08 +03:00
|
|
|
onCancel: function() {
|
|
|
|
this.props.onFinished(false);
|
|
|
|
},
|
|
|
|
|
|
|
|
onKeyDown: function(e) {
|
|
|
|
if (e.keyCode === 27) { // escape
|
|
|
|
e.stopPropagation();
|
|
|
|
e.preventDefault();
|
|
|
|
this.props.onFinished(false);
|
2016-09-06 15:07:06 +03:00
|
|
|
} else if (e.keyCode === 38) { // up arrow
|
2016-09-05 19:28:08 +03:00
|
|
|
e.stopPropagation();
|
|
|
|
e.preventDefault();
|
2017-06-07 17:58:21 +03:00
|
|
|
if (this.addressSelector) this.addressSelector.moveSelectionUp();
|
2016-09-06 15:07:06 +03:00
|
|
|
} else if (e.keyCode === 40) { // down arrow
|
|
|
|
e.stopPropagation();
|
|
|
|
e.preventDefault();
|
2017-06-07 17:58:21 +03:00
|
|
|
if (this.addressSelector) this.addressSelector.moveSelectionDown();
|
2018-06-21 14:13:27 +03:00
|
|
|
} else if (this.state.suggestedList.length > 0 && (e.keyCode === 188 || e.keyCode === 13 || e.keyCode === 9)) { // comma or enter or tab
|
2016-09-06 15:07:06 +03:00
|
|
|
e.stopPropagation();
|
|
|
|
e.preventDefault();
|
2017-06-07 17:58:21 +03:00
|
|
|
if (this.addressSelector) this.addressSelector.chooseSelection();
|
2019-12-08 15:16:17 +03:00
|
|
|
} else if (this._textinput.current.value.length === 0 && this.state.selectedList.length && e.keyCode === 8) { // backspace
|
2016-09-17 17:21:08 +03:00
|
|
|
e.stopPropagation();
|
|
|
|
e.preventDefault();
|
2018-06-21 14:13:27 +03:00
|
|
|
this.onDismissed(this.state.selectedList.length - 1)();
|
2016-09-15 14:17:32 +03:00
|
|
|
} else if (e.keyCode === 13) { // enter
|
|
|
|
e.stopPropagation();
|
|
|
|
e.preventDefault();
|
2019-12-08 15:16:17 +03:00
|
|
|
if (this._textinput.current.value === '') {
|
2017-01-19 19:35:40 +03:00
|
|
|
// if there's nothing in the input box, submit the form
|
|
|
|
this.onButtonClick();
|
2017-01-18 21:32:38 +03:00
|
|
|
} else {
|
2019-12-08 15:16:17 +03:00
|
|
|
this._addAddressesToList([this._textinput.current.value]);
|
2017-01-18 21:32:38 +03:00
|
|
|
}
|
2016-09-17 17:21:08 +03:00
|
|
|
} else if (e.keyCode === 188 || e.keyCode === 9) { // comma or tab
|
2016-09-12 19:06:43 +03:00
|
|
|
e.stopPropagation();
|
|
|
|
e.preventDefault();
|
2019-12-08 15:16:17 +03:00
|
|
|
this._addAddressesToList([this._textinput.current.value]);
|
2016-09-05 19:28:08 +03:00
|
|
|
}
|
|
|
|
},
|
|
|
|
|
|
|
|
onQueryChanged: function(ev) {
|
2017-06-20 17:46:54 +03:00
|
|
|
const query = ev.target.value;
|
2017-02-23 12:03:20 +03:00
|
|
|
if (this.queryChangedDebouncer) {
|
|
|
|
clearTimeout(this.queryChangedDebouncer);
|
|
|
|
}
|
2017-06-07 17:58:21 +03:00
|
|
|
// Only do search if there is something to search
|
2018-06-21 02:37:37 +03:00
|
|
|
if (query.length > 0 && query !== '@' && query.length >= 2) {
|
2017-06-07 17:58:21 +03:00
|
|
|
this.queryChangedDebouncer = setTimeout(() => {
|
2017-09-21 18:53:10 +03:00
|
|
|
if (this.props.pickerType === 'user') {
|
|
|
|
if (this.props.groupId) {
|
|
|
|
this._doNaiveGroupSearch(query);
|
|
|
|
} else if (this.state.serverSupportsUserDirectory) {
|
|
|
|
this._doUserDirectorySearch(query);
|
|
|
|
} else {
|
|
|
|
this._doLocalSearch(query);
|
|
|
|
}
|
|
|
|
} else if (this.props.pickerType === 'room') {
|
|
|
|
if (this.props.groupId) {
|
|
|
|
this._doNaiveGroupRoomSearch(query);
|
|
|
|
} else {
|
2017-09-26 16:49:13 +03:00
|
|
|
this._doRoomSearch(query);
|
2017-09-21 18:53:10 +03:00
|
|
|
}
|
2017-06-07 19:40:09 +03:00
|
|
|
} else {
|
2017-09-21 18:53:10 +03:00
|
|
|
console.error('Unknown pickerType', this.props.pickerType);
|
2017-06-07 19:40:09 +03:00
|
|
|
}
|
2017-06-07 17:58:21 +03:00
|
|
|
}, QUERY_USER_DIRECTORY_DEBOUNCE_MS);
|
|
|
|
} else {
|
2017-02-23 12:03:20 +03:00
|
|
|
this.setState({
|
2018-06-21 14:13:27 +03:00
|
|
|
suggestedList: [],
|
2017-06-07 17:58:21 +03:00
|
|
|
query: "",
|
2017-06-07 19:33:15 +03:00
|
|
|
searchError: null,
|
2017-02-23 12:03:20 +03:00
|
|
|
});
|
2017-06-07 17:58:21 +03:00
|
|
|
}
|
2016-09-05 19:28:08 +03:00
|
|
|
},
|
|
|
|
|
2016-09-12 17:04:32 +03:00
|
|
|
onDismissed: function(index) {
|
2017-06-07 17:58:21 +03:00
|
|
|
return () => {
|
2018-06-21 14:13:27 +03:00
|
|
|
const selectedList = this.state.selectedList.slice();
|
|
|
|
selectedList.splice(index, 1);
|
2017-08-14 19:43:00 +03:00
|
|
|
this.setState({
|
2018-06-21 14:13:27 +03:00
|
|
|
selectedList,
|
|
|
|
suggestedList: [],
|
2017-06-07 17:58:21 +03:00
|
|
|
query: "",
|
2016-09-12 17:04:32 +03:00
|
|
|
});
|
2017-01-26 13:54:07 +03:00
|
|
|
if (this._cancelThreepidLookup) this._cancelThreepidLookup();
|
2017-01-20 17:22:27 +03:00
|
|
|
};
|
2016-09-05 19:28:08 +03:00
|
|
|
},
|
|
|
|
|
2016-09-07 18:18:50 +03:00
|
|
|
onClick: function(index) {
|
2017-08-14 19:43:00 +03:00
|
|
|
return () => {
|
|
|
|
this.onSelected(index);
|
2016-09-07 18:18:50 +03:00
|
|
|
};
|
|
|
|
},
|
|
|
|
|
2016-09-12 15:00:44 +03:00
|
|
|
onSelected: function(index) {
|
2018-06-21 14:13:27 +03:00
|
|
|
const selectedList = this.state.selectedList.slice();
|
2019-06-07 02:00:38 +03:00
|
|
|
selectedList.push(this._getFilteredSuggestions()[index]);
|
2016-09-12 15:00:44 +03:00
|
|
|
this.setState({
|
2018-06-21 14:13:27 +03:00
|
|
|
selectedList,
|
|
|
|
suggestedList: [],
|
2017-06-07 17:58:21 +03:00
|
|
|
query: "",
|
2016-09-12 15:00:44 +03:00
|
|
|
});
|
2017-01-26 13:54:07 +03:00
|
|
|
if (this._cancelThreepidLookup) this._cancelThreepidLookup();
|
2016-09-08 15:09:54 +03:00
|
|
|
},
|
|
|
|
|
2017-09-20 17:29:31 +03:00
|
|
|
_doNaiveGroupSearch: function(query) {
|
2017-09-21 12:52:28 +03:00
|
|
|
const lowerCaseQuery = query.toLowerCase();
|
2017-09-20 17:29:31 +03:00
|
|
|
this.setState({
|
|
|
|
busy: true,
|
|
|
|
query,
|
|
|
|
searchError: null,
|
|
|
|
});
|
|
|
|
MatrixClientPeg.get().getGroupUsers(this.props.groupId).then((resp) => {
|
2017-09-21 12:52:28 +03:00
|
|
|
const results = [];
|
|
|
|
resp.chunk.forEach((u) => {
|
|
|
|
const userIdMatch = u.user_id.toLowerCase().includes(lowerCaseQuery);
|
|
|
|
const displayNameMatch = (u.displayname || '').toLowerCase().includes(lowerCaseQuery);
|
|
|
|
if (!(userIdMatch || displayNameMatch)) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
results.push({
|
2017-09-20 18:32:02 +03:00
|
|
|
user_id: u.user_id,
|
|
|
|
avatar_url: u.avatar_url,
|
|
|
|
display_name: u.displayname,
|
2017-09-21 12:52:28 +03:00
|
|
|
});
|
2017-09-20 18:32:02 +03:00
|
|
|
});
|
|
|
|
this._processResults(results, query);
|
2017-09-21 18:53:10 +03:00
|
|
|
}).catch((err) => {
|
|
|
|
console.error('Error whilst searching group rooms: ', err);
|
|
|
|
this.setState({
|
|
|
|
searchError: err.errcode ? err.message : _t('Something went wrong!'),
|
|
|
|
});
|
2019-11-18 13:03:05 +03:00
|
|
|
}).then(() => {
|
2017-09-21 18:53:10 +03:00
|
|
|
this.setState({
|
|
|
|
busy: false,
|
|
|
|
});
|
|
|
|
});
|
|
|
|
},
|
|
|
|
|
|
|
|
_doNaiveGroupRoomSearch: function(query) {
|
|
|
|
const lowerCaseQuery = query.toLowerCase();
|
2017-10-05 16:30:04 +03:00
|
|
|
const results = [];
|
2018-05-01 13:18:45 +03:00
|
|
|
GroupStore.getGroupRooms(this.props.groupId).forEach((r) => {
|
2017-10-05 16:30:04 +03:00
|
|
|
const nameMatch = (r.name || '').toLowerCase().includes(lowerCaseQuery);
|
|
|
|
const topicMatch = (r.topic || '').toLowerCase().includes(lowerCaseQuery);
|
|
|
|
const aliasMatch = (r.canonical_alias || '').toLowerCase().includes(lowerCaseQuery);
|
|
|
|
if (!(nameMatch || topicMatch || aliasMatch)) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
results.push({
|
|
|
|
room_id: r.room_id,
|
|
|
|
avatar_url: r.avatar_url,
|
|
|
|
name: r.name || r.canonical_alias,
|
2017-09-20 17:29:31 +03:00
|
|
|
});
|
|
|
|
});
|
2017-10-05 16:30:04 +03:00
|
|
|
this._processResults(results, query);
|
|
|
|
this.setState({
|
|
|
|
busy: false,
|
|
|
|
});
|
2017-09-20 17:29:31 +03:00
|
|
|
},
|
|
|
|
|
2017-09-26 16:49:13 +03:00
|
|
|
_doRoomSearch: function(query) {
|
2017-09-26 19:11:54 +03:00
|
|
|
const lowerCaseQuery = query.toLowerCase();
|
|
|
|
const rooms = MatrixClientPeg.get().getRooms();
|
|
|
|
const results = [];
|
|
|
|
rooms.forEach((room) => {
|
2017-11-08 13:47:45 +03:00
|
|
|
let rank = Infinity;
|
2017-09-26 19:11:54 +03:00
|
|
|
const nameEvent = room.currentState.getStateEvents('m.room.name', '');
|
|
|
|
const name = nameEvent ? nameEvent.getContent().name : '';
|
|
|
|
const canonicalAlias = room.getCanonicalAlias();
|
2017-10-25 14:42:58 +03:00
|
|
|
const aliasEvents = room.currentState.getStateEvents('m.room.aliases');
|
|
|
|
const aliases = aliasEvents.map((ev) => ev.getContent().aliases).reduce((a, b) => {
|
|
|
|
return a.concat(b);
|
|
|
|
}, []);
|
2017-09-26 19:11:54 +03:00
|
|
|
|
|
|
|
const nameMatch = (name || '').toLowerCase().includes(lowerCaseQuery);
|
2017-11-08 13:47:45 +03:00
|
|
|
let aliasMatch = false;
|
|
|
|
let shortestMatchingAliasLength = Infinity;
|
|
|
|
aliases.forEach((alias) => {
|
|
|
|
if ((alias || '').toLowerCase().includes(lowerCaseQuery)) {
|
|
|
|
aliasMatch = true;
|
|
|
|
if (shortestMatchingAliasLength > alias.length) {
|
|
|
|
shortestMatchingAliasLength = alias.length;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
});
|
|
|
|
|
2017-11-08 13:32:48 +03:00
|
|
|
if (!(nameMatch || aliasMatch)) {
|
2017-09-26 19:11:54 +03:00
|
|
|
return;
|
|
|
|
}
|
2017-11-08 13:47:45 +03:00
|
|
|
|
|
|
|
if (aliasMatch) {
|
|
|
|
// A shorter matching alias will give a better rank
|
|
|
|
rank = shortestMatchingAliasLength;
|
|
|
|
}
|
|
|
|
|
2017-09-26 19:11:54 +03:00
|
|
|
const avatarEvent = room.currentState.getStateEvents('m.room.avatar', '');
|
|
|
|
const avatarUrl = avatarEvent ? avatarEvent.getContent().url : undefined;
|
2017-10-25 14:37:27 +03:00
|
|
|
|
2017-09-26 19:11:54 +03:00
|
|
|
results.push({
|
2017-11-08 13:47:45 +03:00
|
|
|
rank,
|
2017-09-26 19:11:54 +03:00
|
|
|
room_id: room.roomId,
|
|
|
|
avatar_url: avatarUrl,
|
2017-10-25 14:37:27 +03:00
|
|
|
name: name || canonicalAlias || aliases[0] || _t('Unnamed Room'),
|
2017-09-26 16:49:13 +03:00
|
|
|
});
|
|
|
|
});
|
2017-11-08 13:47:45 +03:00
|
|
|
|
|
|
|
// Sort by rank ascending (a high rank being less relevant)
|
|
|
|
const sortedResults = results.sort((a, b) => {
|
|
|
|
return a.rank - b.rank;
|
|
|
|
});
|
|
|
|
|
|
|
|
this._processResults(sortedResults, query);
|
2017-09-26 19:11:54 +03:00
|
|
|
this.setState({
|
|
|
|
busy: false,
|
|
|
|
});
|
2017-09-26 16:49:13 +03:00
|
|
|
},
|
|
|
|
|
2017-06-07 19:40:09 +03:00
|
|
|
_doUserDirectorySearch: function(query) {
|
|
|
|
this.setState({
|
|
|
|
busy: true,
|
|
|
|
query,
|
|
|
|
searchError: null,
|
|
|
|
});
|
|
|
|
MatrixClientPeg.get().searchUserDirectory({
|
|
|
|
term: query,
|
|
|
|
}).then((resp) => {
|
2017-06-13 13:03:22 +03:00
|
|
|
// 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;
|
|
|
|
}
|
2017-06-07 19:40:09 +03:00
|
|
|
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);
|
|
|
|
}
|
2019-11-18 13:03:05 +03:00
|
|
|
}).then(() => {
|
2017-06-07 19:40:09 +03:00
|
|
|
this.setState({
|
|
|
|
busy: false,
|
|
|
|
});
|
|
|
|
});
|
|
|
|
},
|
|
|
|
|
|
|
|
_doLocalSearch: function(query) {
|
|
|
|
this.setState({
|
|
|
|
query,
|
|
|
|
searchError: null,
|
|
|
|
});
|
2017-06-20 17:46:54 +03:00
|
|
|
const queryLowercase = query.toLowerCase();
|
2017-06-07 19:40:09 +03:00
|
|
|
const results = [];
|
|
|
|
MatrixClientPeg.get().getUsers().forEach((user) => {
|
2017-06-20 17:46:54 +03:00
|
|
|
if (user.userId.toLowerCase().indexOf(queryLowercase) === -1 &&
|
|
|
|
user.displayName.toLowerCase().indexOf(queryLowercase) === -1
|
2017-06-07 19:40:09 +03:00
|
|
|
) {
|
|
|
|
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) {
|
2018-06-21 14:13:27 +03:00
|
|
|
const suggestedList = [];
|
2017-09-21 18:53:10 +03:00
|
|
|
results.forEach((result) => {
|
|
|
|
if (result.room_id) {
|
2019-01-11 00:44:19 +03:00
|
|
|
const client = MatrixClientPeg.get();
|
|
|
|
const room = client.getRoom(result.room_id);
|
|
|
|
if (room) {
|
|
|
|
const tombstone = room.currentState.getStateEvents('m.room.tombstone', '');
|
|
|
|
if (tombstone && tombstone.getContent() && tombstone.getContent()["replacement_room"]) {
|
|
|
|
const replacementRoom = client.getRoom(tombstone.getContent()["replacement_room"]);
|
|
|
|
|
|
|
|
// Skip rooms with tombstones where we are also aware of the replacement room.
|
|
|
|
if (replacementRoom) return;
|
|
|
|
}
|
|
|
|
}
|
2018-06-21 14:13:27 +03:00
|
|
|
suggestedList.push({
|
2017-09-27 17:30:58 +03:00
|
|
|
addressType: 'mx-room-id',
|
2017-09-21 18:53:10 +03:00
|
|
|
address: result.room_id,
|
|
|
|
displayName: result.name,
|
|
|
|
avatarMxc: result.avatar_url,
|
|
|
|
isKnown: true,
|
|
|
|
});
|
2017-06-07 19:40:09 +03:00
|
|
|
return;
|
|
|
|
}
|
2017-09-27 13:52:05 +03:00
|
|
|
if (!this.props.includeSelf &&
|
2017-09-27 13:04:41 +03:00
|
|
|
result.user_id === MatrixClientPeg.get().credentials.userId
|
|
|
|
) {
|
2017-09-21 18:53:10 +03:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2017-06-07 19:40:09 +03:00
|
|
|
// Return objects, structure of which is defined
|
2017-08-15 12:57:24 +03:00
|
|
|
// by UserAddressType
|
2018-06-21 14:13:27 +03:00
|
|
|
suggestedList.push({
|
2017-09-27 17:30:58 +03:00
|
|
|
addressType: 'mx-user-id',
|
2017-09-21 18:53:10 +03:00
|
|
|
address: result.user_id,
|
|
|
|
displayName: result.display_name,
|
|
|
|
avatarMxc: result.avatar_url,
|
2017-06-07 19:40:09 +03:00
|
|
|
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);
|
2019-08-29 17:20:14 +03:00
|
|
|
if (this.state.validAddressTypes.includes(addrType)) {
|
2018-12-08 01:03:58 +03:00
|
|
|
if (addrType === 'email' && !Email.looksValid(query)) {
|
|
|
|
this.setState({searchError: _t("That doesn't look like a valid email address")});
|
|
|
|
return;
|
|
|
|
}
|
2018-06-21 14:13:27 +03:00
|
|
|
suggestedList.unshift({
|
2017-06-07 19:40:09 +03:00
|
|
|
addressType: addrType,
|
|
|
|
address: query,
|
|
|
|
isKnown: false,
|
|
|
|
});
|
|
|
|
if (this._cancelThreepidLookup) this._cancelThreepidLookup();
|
2018-06-21 02:37:37 +03:00
|
|
|
if (addrType === 'email') {
|
2019-07-24 20:38:09 +03:00
|
|
|
this._lookupThreepid(addrType, query);
|
2017-06-07 19:40:09 +03:00
|
|
|
}
|
|
|
|
}
|
|
|
|
this.setState({
|
2018-06-21 14:13:27 +03:00
|
|
|
suggestedList,
|
2019-07-30 12:29:41 +03:00
|
|
|
invalidAddressError: false,
|
2017-06-07 19:40:09 +03:00
|
|
|
}, () => {
|
|
|
|
if (this.addressSelector) this.addressSelector.moveSelectionTop();
|
|
|
|
});
|
|
|
|
},
|
|
|
|
|
2019-07-25 23:45:32 +03:00
|
|
|
_addAddressesToList: function(addressTexts) {
|
|
|
|
const selectedList = this.state.selectedList.slice();
|
|
|
|
|
2019-07-25 23:49:22 +03:00
|
|
|
let hasError = false;
|
2019-07-25 23:45:32 +03:00
|
|
|
addressTexts.forEach((addressText) => {
|
|
|
|
addressText = addressText.trim();
|
|
|
|
const addrType = getAddressType(addressText);
|
|
|
|
const addrObj = {
|
|
|
|
addressType: addrType,
|
|
|
|
address: addressText,
|
|
|
|
isKnown: false,
|
|
|
|
};
|
|
|
|
|
2019-08-29 17:20:14 +03:00
|
|
|
if (!this.state.validAddressTypes.includes(addrType)) {
|
2019-07-25 23:49:22 +03:00
|
|
|
hasError = true;
|
2019-07-25 23:45:32 +03:00
|
|
|
} else if (addrType === 'mx-user-id') {
|
|
|
|
const user = MatrixClientPeg.get().getUser(addrObj.address);
|
|
|
|
if (user) {
|
|
|
|
addrObj.displayName = user.displayName;
|
|
|
|
addrObj.avatarMxc = user.avatarUrl;
|
|
|
|
addrObj.isKnown = true;
|
|
|
|
}
|
|
|
|
} else if (addrType === 'mx-room-id') {
|
|
|
|
const room = MatrixClientPeg.get().getRoom(addrObj.address);
|
|
|
|
if (room) {
|
|
|
|
addrObj.displayName = room.name;
|
|
|
|
addrObj.avatarMxc = room.avatarUrl;
|
|
|
|
addrObj.isKnown = true;
|
|
|
|
}
|
2017-09-27 17:30:58 +03:00
|
|
|
}
|
2017-01-24 21:23:34 +03:00
|
|
|
|
2019-07-25 23:45:32 +03:00
|
|
|
selectedList.push(addrObj);
|
|
|
|
});
|
|
|
|
|
2017-01-24 21:23:34 +03:00
|
|
|
this.setState({
|
2018-06-21 14:13:27 +03:00
|
|
|
selectedList,
|
|
|
|
suggestedList: [],
|
2017-06-07 17:58:21 +03:00
|
|
|
query: "",
|
2019-07-30 12:29:41 +03:00
|
|
|
invalidAddressError: hasError ? true : this.state.invalidAddressError,
|
2017-01-24 21:23:34 +03:00
|
|
|
});
|
2017-01-26 13:54:07 +03:00
|
|
|
if (this._cancelThreepidLookup) this._cancelThreepidLookup();
|
2019-07-25 23:49:22 +03:00
|
|
|
return hasError ? null : selectedList;
|
2017-01-19 20:03:16 +03:00
|
|
|
},
|
|
|
|
|
2019-07-24 20:38:09 +03:00
|
|
|
_lookupThreepid: async function(medium, address) {
|
2017-01-26 13:54:07 +03:00
|
|
|
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;
|
2017-08-15 11:10:13 +03:00
|
|
|
};
|
2017-01-26 13:54:07 +03:00
|
|
|
|
2017-01-25 21:51:28 +03:00
|
|
|
// wait a bit to let the user finish typing
|
2019-11-12 14:46:58 +03:00
|
|
|
await sleep(500);
|
2019-07-24 20:38:09 +03:00
|
|
|
if (cancelled) return null;
|
|
|
|
|
|
|
|
try {
|
2019-07-29 13:58:47 +03:00
|
|
|
const authClient = new IdentityAuthClient();
|
2019-07-30 12:05:57 +03:00
|
|
|
const identityAccessToken = await authClient.getAccessToken();
|
2019-07-25 13:06:46 +03:00
|
|
|
if (cancelled) return null;
|
|
|
|
|
2019-07-29 17:08:54 +03:00
|
|
|
const lookup = await MatrixClientPeg.get().lookupThreePid(
|
|
|
|
medium,
|
|
|
|
address,
|
|
|
|
undefined /* callback */,
|
2019-07-30 12:05:57 +03:00
|
|
|
identityAccessToken,
|
2019-07-29 17:08:54 +03:00
|
|
|
);
|
2019-07-24 20:38:09 +03:00
|
|
|
if (cancelled || lookup === null || !lookup.mxid) return null;
|
|
|
|
|
|
|
|
const profile = await MatrixClientPeg.get().getProfileInfo(lookup.mxid);
|
|
|
|
if (cancelled || profile === null) return null;
|
|
|
|
|
2017-01-26 13:08:44 +03:00
|
|
|
this.setState({
|
2018-06-21 14:13:27 +03:00
|
|
|
suggestedList: [{
|
2017-08-15 12:57:24 +03:00
|
|
|
// a UserAddressType
|
2017-01-26 13:08:44 +03:00
|
|
|
addressType: medium,
|
|
|
|
address: address,
|
2019-07-24 20:38:09 +03:00
|
|
|
displayName: profile.displayname,
|
|
|
|
avatarMxc: profile.avatar_url,
|
2017-01-26 13:08:44 +03:00
|
|
|
isKnown: true,
|
2017-06-07 17:58:21 +03:00
|
|
|
}],
|
2017-01-26 13:08:44 +03:00
|
|
|
});
|
2019-07-24 20:38:09 +03:00
|
|
|
} catch (e) {
|
|
|
|
console.error(e);
|
2019-07-30 12:29:41 +03:00
|
|
|
this.setState({
|
|
|
|
searchError: _t('Something went wrong!'),
|
|
|
|
});
|
2019-07-24 20:38:09 +03:00
|
|
|
}
|
2017-01-25 21:51:28 +03:00
|
|
|
},
|
|
|
|
|
2019-06-07 02:00:38 +03:00
|
|
|
_getFilteredSuggestions: function() {
|
2018-06-21 02:47:21 +03:00
|
|
|
// map addressType => set of addresses to avoid O(n*m) operation
|
|
|
|
const selectedAddresses = {};
|
2018-06-21 14:13:27 +03:00
|
|
|
this.state.selectedList.forEach(({address, addressType}) => {
|
2018-06-21 02:47:21 +03:00
|
|
|
if (!selectedAddresses[addressType]) selectedAddresses[addressType] = new Set();
|
|
|
|
selectedAddresses[addressType].add(address);
|
|
|
|
});
|
|
|
|
|
2018-06-21 14:14:16 +03:00
|
|
|
// Filter out any addresses in the above already selected addresses (matching both type and address)
|
2019-06-07 02:00:38 +03:00
|
|
|
return this.state.suggestedList.filter(({address, addressType}) => {
|
2018-06-21 14:14:16 +03:00
|
|
|
return !(selectedAddresses[addressType] && selectedAddresses[addressType].has(address));
|
2018-06-21 02:47:21 +03:00
|
|
|
});
|
2019-06-07 02:00:38 +03:00
|
|
|
},
|
|
|
|
|
2019-07-25 23:45:32 +03:00
|
|
|
_onPaste: function(e) {
|
2019-07-30 00:27:31 +03:00
|
|
|
// Prevent the text being pasted into the textarea
|
|
|
|
e.preventDefault();
|
2019-07-25 23:45:32 +03:00
|
|
|
const text = e.clipboardData.getData("text");
|
2019-07-30 00:27:31 +03:00
|
|
|
// Process it as a list of addresses to add instead
|
2019-07-25 23:45:32 +03:00
|
|
|
this._addAddressesToList(text.split(/[\s,]+/));
|
|
|
|
},
|
|
|
|
|
2019-08-29 17:20:14 +03:00
|
|
|
onUseDefaultIdentityServerClick(e) {
|
|
|
|
e.preventDefault();
|
|
|
|
|
|
|
|
// Update the IS in account data. Actually using it may trigger terms.
|
2019-10-07 18:52:50 +03:00
|
|
|
// eslint-disable-next-line react-hooks/rules-of-hooks
|
2019-08-29 17:20:14 +03:00
|
|
|
useDefaultIdentityServer();
|
|
|
|
|
|
|
|
// Add email as a valid address type.
|
|
|
|
const { validAddressTypes } = this.state;
|
|
|
|
validAddressTypes.push('email');
|
|
|
|
this.setState({ validAddressTypes });
|
|
|
|
},
|
|
|
|
|
|
|
|
onManageSettingsClick(e) {
|
|
|
|
e.preventDefault();
|
|
|
|
dis.dispatch({ action: 'view_user_settings' });
|
|
|
|
this.onCancel();
|
|
|
|
},
|
|
|
|
|
2019-06-07 02:00:38 +03:00
|
|
|
render: function() {
|
|
|
|
const BaseDialog = sdk.getComponent('views.dialogs.BaseDialog');
|
|
|
|
const DialogButtons = sdk.getComponent('views.elements.DialogButtons');
|
|
|
|
const AddressSelector = sdk.getComponent("elements.AddressSelector");
|
|
|
|
this.scrollElement = null;
|
2018-06-21 02:33:24 +03:00
|
|
|
|
2019-08-28 17:12:00 +03:00
|
|
|
let inputLabel;
|
|
|
|
if (this.props.description) {
|
|
|
|
inputLabel = <div className="mx_AddressPickerDialog_label">
|
|
|
|
<label htmlFor="textinput">{this.props.description}</label>
|
|
|
|
</div>;
|
|
|
|
}
|
|
|
|
|
2017-08-15 11:10:13 +03:00
|
|
|
const query = [];
|
2016-09-12 17:21:17 +03:00
|
|
|
// create the invite list
|
2018-06-21 14:13:27 +03:00
|
|
|
if (this.state.selectedList.length > 0) {
|
2017-08-14 19:43:00 +03:00
|
|
|
const AddressTile = sdk.getComponent("elements.AddressTile");
|
2018-06-21 14:13:27 +03:00
|
|
|
for (let i = 0; i < this.state.selectedList.length; i++) {
|
2016-09-12 17:04:32 +03:00
|
|
|
query.push(
|
2017-10-17 20:02:35 +03:00
|
|
|
<AddressTile
|
|
|
|
key={i}
|
2018-06-21 14:13:27 +03:00
|
|
|
address={this.state.selectedList[i]}
|
2017-10-17 20:02:35 +03:00
|
|
|
canDismiss={true}
|
|
|
|
onDismissed={this.onDismissed(i)}
|
|
|
|
showAddress={this.props.pickerType === 'user'} />,
|
2016-09-12 17:04:32 +03:00
|
|
|
);
|
|
|
|
}
|
2016-09-05 19:28:08 +03:00
|
|
|
}
|
2016-09-13 13:02:59 +03:00
|
|
|
|
2016-09-12 17:21:17 +03:00
|
|
|
// Add the query at the end
|
|
|
|
query.push(
|
2019-07-25 23:45:32 +03:00
|
|
|
<textarea
|
|
|
|
key={this.state.selectedList.length}
|
|
|
|
onPaste={this._onPaste}
|
2016-09-12 17:21:17 +03:00
|
|
|
rows="1"
|
|
|
|
id="textinput"
|
2019-12-08 15:16:17 +03:00
|
|
|
ref={this._textinput}
|
2019-04-03 18:27:45 +03:00
|
|
|
className="mx_AddressPickerDialog_input"
|
2016-09-12 17:21:17 +03:00
|
|
|
onChange={this.onQueryChanged}
|
2019-08-29 17:20:14 +03:00
|
|
|
placeholder={this.getPlaceholder()}
|
2016-09-12 17:21:17 +03:00
|
|
|
defaultValue={this.props.value}
|
|
|
|
autoFocus={this.props.focus}>
|
2017-06-07 17:58:21 +03:00
|
|
|
</textarea>,
|
2016-09-12 17:21:17 +03:00
|
|
|
);
|
2016-09-05 19:28:08 +03:00
|
|
|
|
2019-06-07 02:00:38 +03:00
|
|
|
const filteredSuggestedList = this._getFilteredSuggestions();
|
|
|
|
|
2017-06-07 17:58:21 +03:00
|
|
|
let error;
|
|
|
|
let addressSelector;
|
2019-07-30 12:29:41 +03:00
|
|
|
if (this.state.invalidAddressError) {
|
2019-08-29 17:20:14 +03:00
|
|
|
const validTypeDescriptions = this.state.validAddressTypes.map((t) => _t(addressTypeName[t]));
|
2019-04-03 18:27:45 +03:00
|
|
|
error = <div className="mx_AddressPickerDialog_error">
|
2017-09-28 13:21:06 +03:00
|
|
|
{ _t("You have entered an invalid address.") }
|
2017-09-27 19:11:30 +03:00
|
|
|
<br />
|
2018-06-21 02:37:37 +03:00
|
|
|
{ _t("Try using one of the following valid address types: %(validTypesList)s.", {
|
|
|
|
validTypesList: validTypeDescriptions.join(", "),
|
|
|
|
}) }
|
2017-08-15 11:10:13 +03:00
|
|
|
</div>;
|
2017-06-07 19:33:15 +03:00
|
|
|
} else if (this.state.searchError) {
|
2019-04-03 18:27:45 +03:00
|
|
|
error = <div className="mx_AddressPickerDialog_error">{ this.state.searchError }</div>;
|
2018-06-21 14:13:27 +03:00
|
|
|
} else if (this.state.query.length > 0 && filteredSuggestedList.length === 0 && !this.state.busy) {
|
2019-04-03 18:27:45 +03:00
|
|
|
error = <div className="mx_AddressPickerDialog_error">{ _t("No results") }</div>;
|
2016-09-13 13:02:59 +03:00
|
|
|
} else {
|
|
|
|
addressSelector = (
|
2017-01-20 17:22:27 +03:00
|
|
|
<AddressSelector ref={(ref) => {this.addressSelector = ref;}}
|
2018-06-21 14:13:27 +03:00
|
|
|
addressList={filteredSuggestedList}
|
2017-10-17 20:02:35 +03:00
|
|
|
showAddress={this.props.pickerType === 'user'}
|
2017-09-28 13:21:06 +03:00
|
|
|
onSelected={this.onSelected}
|
|
|
|
truncateAt={TRUNCATE_QUERY_LIST}
|
2017-01-17 17:48:50 +03:00
|
|
|
/>
|
2016-09-13 13:02:59 +03:00
|
|
|
);
|
|
|
|
}
|
|
|
|
|
2019-08-29 17:20:14 +03:00
|
|
|
let identityServer;
|
2019-09-09 17:03:00 +03:00
|
|
|
// If picker cannot currently accept e-mail but should be able to
|
|
|
|
if (this.props.pickerType === 'user' && !this.state.validAddressTypes.includes('email')
|
|
|
|
&& this.props.validAddressTypes.includes('email')) {
|
2019-08-29 17:20:14 +03:00
|
|
|
const defaultIdentityServerUrl = getDefaultIdentityServerUrl();
|
|
|
|
if (defaultIdentityServerUrl) {
|
|
|
|
identityServer = <div className="mx_AddressPickerDialog_identityServer">{_t(
|
|
|
|
"Use an identity server to invite by email. " +
|
|
|
|
"<default>Use the default (%(defaultIdentityServerName)s)</default> " +
|
|
|
|
"or manage in <settings>Settings</settings>.",
|
|
|
|
{
|
|
|
|
defaultIdentityServerName: abbreviateUrl(defaultIdentityServerUrl),
|
|
|
|
},
|
|
|
|
{
|
|
|
|
default: sub => <a href="#" onClick={this.onUseDefaultIdentityServerClick}>{sub}</a>,
|
|
|
|
settings: sub => <a href="#" onClick={this.onManageSettingsClick}>{sub}</a>,
|
|
|
|
},
|
|
|
|
)}</div>;
|
|
|
|
} else {
|
|
|
|
identityServer = <div className="mx_AddressPickerDialog_identityServer">{_t(
|
|
|
|
"Use an identity server to invite by email. " +
|
|
|
|
"Manage in <settings>Settings</settings>.",
|
|
|
|
{}, {
|
|
|
|
settings: sub => <a href="#" onClick={this.onManageSettingsClick}>{sub}</a>,
|
|
|
|
},
|
|
|
|
)}</div>;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-09-05 14:03:16 +03:00
|
|
|
return (
|
2019-04-03 18:27:45 +03:00
|
|
|
<BaseDialog className="mx_AddressPickerDialog" onKeyDown={this.onKeyDown}
|
2017-12-18 12:36:12 +03:00
|
|
|
onFinished={this.props.onFinished} title={this.props.title}>
|
2019-08-28 17:12:00 +03:00
|
|
|
{inputLabel}
|
2016-09-05 14:03:16 +03:00
|
|
|
<div className="mx_Dialog_content">
|
2019-04-03 18:27:45 +03:00
|
|
|
<div className="mx_AddressPickerDialog_inputContainer">{ query }</div>
|
2016-09-13 13:02:59 +03:00
|
|
|
{ error }
|
|
|
|
{ addressSelector }
|
2017-11-07 21:51:41 +03:00
|
|
|
{ this.props.extraNode }
|
2019-08-29 17:20:14 +03:00
|
|
|
{ identityServer }
|
2016-09-05 14:03:16 +03:00
|
|
|
</div>
|
2017-12-23 00:12:47 +03:00
|
|
|
<DialogButtons primaryButton={this.props.button}
|
|
|
|
onPrimaryButtonClick={this.onButtonClick}
|
|
|
|
onCancel={this.onCancel} />
|
2017-12-18 12:36:12 +03:00
|
|
|
</BaseDialog>
|
2016-09-05 14:03:16 +03:00
|
|
|
);
|
2017-08-15 11:10:13 +03:00
|
|
|
},
|
2016-09-05 14:03:16 +03:00
|
|
|
});
|