2018-04-12 01:58:04 +03:00
|
|
|
/*
|
|
|
|
Copyright 2015, 2016 OpenMarket Ltd
|
2019-07-31 14:19:29 +03:00
|
|
|
Copyright 2019 Michael Telatynski <7t3chguy@gmail.com>
|
2020-07-10 21:07:11 +03:00
|
|
|
Copyright 2019, 2020 The Matrix.org Foundation C.I.C.
|
2018-04-12 01:58:04 +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-08-30 12:34:59 +03:00
|
|
|
import React from 'react';
|
|
|
|
import createReactClass from 'create-react-class';
|
2019-12-21 00:13:46 +03:00
|
|
|
import {MatrixClientPeg} from "../../MatrixClientPeg";
|
2019-12-21 00:41:07 +03:00
|
|
|
import * as sdk from "../../index";
|
2020-05-14 05:41:41 +03:00
|
|
|
import dis from "../../dispatcher/dispatcher";
|
2019-12-21 00:41:07 +03:00
|
|
|
import Modal from "../../Modal";
|
2019-02-01 00:35:58 +03:00
|
|
|
import { linkifyAndSanitizeHtml } from '../../HtmlUtils';
|
2019-07-31 14:19:29 +03:00
|
|
|
import PropTypes from 'prop-types';
|
2018-04-13 02:43:44 +03:00
|
|
|
import { _t } from '../../languageHandler';
|
2020-07-10 21:07:11 +03:00
|
|
|
import SdkConfig from '../../SdkConfig';
|
2019-03-27 17:54:18 +03:00
|
|
|
import { instanceForInstanceId, protocolNameForInstanceId } from '../../utils/DirectoryUtils';
|
|
|
|
import Analytics from '../../Analytics';
|
2020-01-03 22:29:22 +03:00
|
|
|
import {getHttpUriForMxc} from "matrix-js-sdk/src/content-repo";
|
2020-03-13 03:02:50 +03:00
|
|
|
import {ALL_ROOMS} from "../views/directory/NetworkDropdown";
|
2020-08-22 00:56:54 +03:00
|
|
|
import SettingsStore from "../../settings/SettingsStore";
|
|
|
|
import TagOrderStore from "../../stores/TagOrderStore";
|
|
|
|
import GroupStore from "../../stores/GroupStore";
|
|
|
|
import FlairStore from "../../stores/FlairStore";
|
2018-04-12 01:58:04 +03:00
|
|
|
|
2019-01-13 17:47:08 +03:00
|
|
|
const MAX_NAME_LENGTH = 80;
|
|
|
|
const MAX_TOPIC_LENGTH = 160;
|
|
|
|
|
2019-03-27 17:54:18 +03:00
|
|
|
function track(action) {
|
|
|
|
Analytics.trackEvent('RoomDirectory', action);
|
|
|
|
}
|
|
|
|
|
2019-12-20 03:45:24 +03:00
|
|
|
export default createReactClass({
|
2018-04-12 01:58:04 +03:00
|
|
|
displayName: 'RoomDirectory',
|
|
|
|
|
|
|
|
propTypes: {
|
2019-07-31 14:19:29 +03:00
|
|
|
onFinished: PropTypes.func.isRequired,
|
2018-04-12 01:58:04 +03:00
|
|
|
},
|
|
|
|
|
|
|
|
getInitialState: function() {
|
2020-08-22 00:56:54 +03:00
|
|
|
const selectedCommunityId = TagOrderStore.getSelectedTags()[0];
|
2018-04-12 01:58:04 +03:00
|
|
|
return {
|
|
|
|
publicRooms: [],
|
|
|
|
loading: true,
|
|
|
|
protocolsLoading: true,
|
2019-03-27 17:54:18 +03:00
|
|
|
error: null,
|
2020-03-13 03:02:50 +03:00
|
|
|
instanceId: undefined,
|
|
|
|
roomServer: MatrixClientPeg.getHomeserverName(),
|
2018-04-12 01:58:04 +03:00
|
|
|
filterString: null,
|
2020-08-22 00:56:54 +03:00
|
|
|
selectedCommunityId: SettingsStore.getValue("feature_communities_v2_prototypes")
|
|
|
|
? selectedCommunityId
|
|
|
|
: null,
|
|
|
|
communityName: null,
|
2018-10-27 06:50:35 +03:00
|
|
|
};
|
2018-04-12 01:58:04 +03:00
|
|
|
},
|
|
|
|
|
2020-04-01 20:05:49 +03:00
|
|
|
// TODO: [REACT-WARNING] Move this to constructor
|
|
|
|
UNSAFE_componentWillMount: function() {
|
2018-04-12 01:58:04 +03:00
|
|
|
this._unmounted = false;
|
|
|
|
this.nextBatch = null;
|
|
|
|
this.filterTimeout = null;
|
|
|
|
this.scrollPanel = null;
|
|
|
|
this.protocols = null;
|
|
|
|
|
|
|
|
this.setState({protocolsLoading: true});
|
2019-02-11 15:12:47 +03:00
|
|
|
if (!MatrixClientPeg.get()) {
|
|
|
|
// We may not have a client yet when invoked from welcome page
|
|
|
|
this.setState({protocolsLoading: false});
|
|
|
|
return;
|
|
|
|
}
|
2020-08-22 00:56:54 +03:00
|
|
|
|
|
|
|
if (!this.state.selectedCommunityId) {
|
|
|
|
MatrixClientPeg.get().getThirdpartyProtocols().then((response) => {
|
|
|
|
this.protocols = response;
|
|
|
|
this.setState({protocolsLoading: false});
|
|
|
|
}, (err) => {
|
|
|
|
console.warn(`error loading third party protocols: ${err}`);
|
|
|
|
this.setState({protocolsLoading: false});
|
|
|
|
if (MatrixClientPeg.get().isGuest()) {
|
|
|
|
// Guests currently aren't allowed to use this API, so
|
|
|
|
// ignore this as otherwise this error is literally the
|
|
|
|
// thing you see when loading the client!
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
track('Failed to get protocol list from homeserver');
|
|
|
|
const brand = SdkConfig.get().brand;
|
|
|
|
this.setState({
|
|
|
|
error: _t(
|
|
|
|
'%(brand)s failed to get the protocol list from the homeserver. ' +
|
|
|
|
'The homeserver may be too old to support third party networks.',
|
|
|
|
{brand},
|
|
|
|
),
|
|
|
|
});
|
|
|
|
});
|
|
|
|
} else {
|
|
|
|
// We don't use the protocols in the communities v2 prototype experience
|
2018-04-12 01:58:04 +03:00
|
|
|
this.setState({protocolsLoading: false});
|
2020-08-22 00:56:54 +03:00
|
|
|
|
|
|
|
// Grab the profile info async
|
|
|
|
FlairStore.getGroupProfileCached(MatrixClientPeg.get(), this.state.selectedCommunityId).then(profile => {
|
|
|
|
this.setState({communityName: profile.name});
|
2018-04-12 01:58:04 +03:00
|
|
|
});
|
2020-08-22 00:56:54 +03:00
|
|
|
}
|
2018-04-12 01:58:04 +03:00
|
|
|
|
2020-03-13 03:02:50 +03:00
|
|
|
this.refreshRoomList();
|
|
|
|
},
|
|
|
|
|
2018-04-12 01:58:04 +03:00
|
|
|
componentWillUnmount: function() {
|
|
|
|
if (this.filterTimeout) {
|
|
|
|
clearTimeout(this.filterTimeout);
|
|
|
|
}
|
|
|
|
this._unmounted = true;
|
|
|
|
},
|
|
|
|
|
|
|
|
refreshRoomList: function() {
|
2020-08-22 00:56:54 +03:00
|
|
|
if (this.state.selectedCommunityId) {
|
|
|
|
this.setState({
|
|
|
|
publicRooms: GroupStore.getGroupRooms(this.state.selectedCommunityId).map(r => {
|
|
|
|
return {
|
|
|
|
// Translate all the group properties to the directory format
|
|
|
|
room_id: r.roomId,
|
|
|
|
name: r.name,
|
|
|
|
topic: r.topic,
|
|
|
|
canonical_alias: r.canonicalAlias,
|
|
|
|
num_joined_members: r.numJoinedMembers,
|
|
|
|
avatarUrl: r.avatarUrl,
|
|
|
|
world_readable: r.worldReadable,
|
|
|
|
guest_can_join: r.guestsCanJoin,
|
|
|
|
};
|
|
|
|
}).filter(r => {
|
|
|
|
const filterString = this.state.filterString;
|
|
|
|
if (filterString) {
|
|
|
|
const containedIn = (s: string) => (s || "").toLowerCase().includes(filterString.toLowerCase());
|
|
|
|
return containedIn(r.name) || containedIn(r.topic) || containedIn(r.canonical_alias);
|
|
|
|
}
|
|
|
|
return true;
|
|
|
|
}),
|
|
|
|
loading: false,
|
|
|
|
});
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2018-04-12 01:58:04 +03:00
|
|
|
this.nextBatch = null;
|
|
|
|
this.setState({
|
|
|
|
publicRooms: [],
|
|
|
|
loading: true,
|
|
|
|
});
|
2019-11-18 13:03:05 +03:00
|
|
|
this.getMoreRooms();
|
2018-04-12 01:58:04 +03:00
|
|
|
},
|
|
|
|
|
|
|
|
getMoreRooms: function() {
|
2020-08-22 00:56:54 +03:00
|
|
|
if (this.state.selectedCommunityId) return Promise.resolve(); // no more rooms
|
2018-04-12 01:58:04 +03:00
|
|
|
if (!MatrixClientPeg.get()) return Promise.resolve();
|
|
|
|
|
2019-09-11 13:52:39 +03:00
|
|
|
this.setState({
|
|
|
|
loading: true,
|
|
|
|
});
|
|
|
|
|
2018-04-12 01:58:04 +03:00
|
|
|
const my_filter_string = this.state.filterString;
|
|
|
|
const my_server = this.state.roomServer;
|
|
|
|
// remember the next batch token when we sent the request
|
|
|
|
// too. If it's changed, appending to the list will corrupt it.
|
|
|
|
const my_next_batch = this.nextBatch;
|
|
|
|
const opts = {limit: 20};
|
2019-07-08 20:55:00 +03:00
|
|
|
if (my_server != MatrixClientPeg.getHomeserverName()) {
|
2018-04-12 01:58:04 +03:00
|
|
|
opts.server = my_server;
|
|
|
|
}
|
2020-03-13 03:02:50 +03:00
|
|
|
if (this.state.instanceId === ALL_ROOMS) {
|
2018-04-12 01:58:04 +03:00
|
|
|
opts.include_all_networks = true;
|
2020-03-13 03:02:50 +03:00
|
|
|
} else if (this.state.instanceId) {
|
|
|
|
opts.third_party_instance_id = this.state.instanceId;
|
2018-04-12 01:58:04 +03:00
|
|
|
}
|
|
|
|
if (this.nextBatch) opts.since = this.nextBatch;
|
2018-10-27 06:50:35 +03:00
|
|
|
if (my_filter_string) opts.filter = { generic_search_term: my_filter_string };
|
2018-04-12 01:58:04 +03:00
|
|
|
return MatrixClientPeg.get().publicRooms(opts).then((data) => {
|
|
|
|
if (
|
|
|
|
my_filter_string != this.state.filterString ||
|
|
|
|
my_server != this.state.roomServer ||
|
2018-10-27 06:50:35 +03:00
|
|
|
my_next_batch != this.nextBatch) {
|
2018-04-12 01:58:04 +03:00
|
|
|
// if the filter or server has changed since this request was sent,
|
|
|
|
// throw away the result (don't even clear the busy flag
|
|
|
|
// since we must still have a request in flight)
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (this._unmounted) {
|
|
|
|
// if we've been unmounted, we don't care either.
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
this.nextBatch = data.next_batch;
|
|
|
|
this.setState((s) => {
|
2020-02-03 18:49:18 +03:00
|
|
|
s.publicRooms.push(...(data.chunk || []));
|
2018-04-12 01:58:04 +03:00
|
|
|
s.loading = false;
|
|
|
|
return s;
|
|
|
|
});
|
|
|
|
return Boolean(data.next_batch);
|
|
|
|
}, (err) => {
|
|
|
|
if (
|
|
|
|
my_filter_string != this.state.filterString ||
|
|
|
|
my_server != this.state.roomServer ||
|
2018-10-27 06:50:35 +03:00
|
|
|
my_next_batch != this.nextBatch) {
|
2018-04-12 01:58:04 +03:00
|
|
|
// as above: we don't care about errors for old
|
|
|
|
// requests either
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (this._unmounted) {
|
|
|
|
// if we've been unmounted, we don't care either.
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
console.error("Failed to get publicRooms: %s", JSON.stringify(err));
|
2019-03-27 17:54:18 +03:00
|
|
|
track('Failed to get public room list');
|
2020-07-10 21:07:11 +03:00
|
|
|
const brand = SdkConfig.get().brand;
|
2019-03-27 17:54:18 +03:00
|
|
|
this.setState({
|
|
|
|
loading: false,
|
2020-07-10 21:07:11 +03:00
|
|
|
error: (
|
|
|
|
_t('%(brand)s failed to get the public room list.', { brand }) +
|
|
|
|
(err && err.message) ? err.message : _t('The homeserver may be unavailable or overloaded.')
|
|
|
|
),
|
2018-04-12 01:58:04 +03:00
|
|
|
});
|
|
|
|
});
|
|
|
|
},
|
|
|
|
|
|
|
|
/**
|
|
|
|
* A limited interface for removing rooms from the directory.
|
|
|
|
* Will set the room to not be publicly visible and delete the
|
|
|
|
* default alias. In the long term, it would be better to allow
|
|
|
|
* HS admins to do this through the RoomSettings interface, but
|
|
|
|
* this needs SPEC-417.
|
|
|
|
*/
|
|
|
|
removeFromDirectory: function(room) {
|
2018-10-27 06:50:35 +03:00
|
|
|
const alias = get_display_alias_for_room(room);
|
|
|
|
const name = room.name || alias || _t('Unnamed room');
|
2018-04-12 01:58:04 +03:00
|
|
|
|
2018-10-27 06:50:35 +03:00
|
|
|
const QuestionDialog = sdk.getComponent("dialogs.QuestionDialog");
|
|
|
|
const ErrorDialog = sdk.getComponent("dialogs.ErrorDialog");
|
2018-04-12 01:58:04 +03:00
|
|
|
|
2018-10-27 06:50:35 +03:00
|
|
|
let desc;
|
2018-04-12 01:58:04 +03:00
|
|
|
if (alias) {
|
2020-04-14 12:06:57 +03:00
|
|
|
desc = _t('Delete the room address %(alias)s and remove %(name)s from the directory?', {alias, name});
|
2018-04-12 01:58:04 +03:00
|
|
|
} else {
|
|
|
|
desc = _t('Remove %(name)s from the directory?', {name: name});
|
|
|
|
}
|
|
|
|
|
|
|
|
Modal.createTrackedDialog('Remove from Directory', '', QuestionDialog, {
|
|
|
|
title: _t('Remove from Directory'),
|
|
|
|
description: desc,
|
|
|
|
onFinished: (should_delete) => {
|
|
|
|
if (!should_delete) return;
|
|
|
|
|
2018-10-27 06:50:35 +03:00
|
|
|
const Loader = sdk.getComponent("elements.Spinner");
|
|
|
|
const modal = Modal.createDialog(Loader);
|
|
|
|
let step = _t('remove %(name)s from the directory.', {name: name});
|
2018-04-12 01:58:04 +03:00
|
|
|
|
|
|
|
MatrixClientPeg.get().setRoomDirectoryVisibility(room.room_id, 'private').then(() => {
|
|
|
|
if (!alias) return;
|
2020-04-14 12:06:57 +03:00
|
|
|
step = _t('delete the address.');
|
2018-04-12 01:58:04 +03:00
|
|
|
return MatrixClientPeg.get().deleteAlias(alias);
|
2019-11-18 13:03:05 +03:00
|
|
|
}).then(() => {
|
2018-04-12 01:58:04 +03:00
|
|
|
modal.close();
|
|
|
|
this.refreshRoomList();
|
|
|
|
}, (err) => {
|
|
|
|
modal.close();
|
|
|
|
this.refreshRoomList();
|
|
|
|
console.error("Failed to " + step + ": " + err);
|
|
|
|
Modal.createTrackedDialog('Remove from Directory Error', '', ErrorDialog, {
|
|
|
|
title: _t('Error'),
|
2018-10-27 06:50:35 +03:00
|
|
|
description: ((err && err.message) ? err.message : _t('The server may be unavailable or overloaded')),
|
2018-04-12 01:58:04 +03:00
|
|
|
});
|
|
|
|
});
|
2018-10-27 06:50:35 +03:00
|
|
|
},
|
2018-04-12 01:58:04 +03:00
|
|
|
});
|
|
|
|
},
|
|
|
|
|
|
|
|
onRoomClicked: function(room, ev) {
|
2020-08-22 00:56:54 +03:00
|
|
|
if (ev.shiftKey && !this.state.selectedCommunityId) {
|
2018-04-12 01:58:04 +03:00
|
|
|
ev.preventDefault();
|
|
|
|
this.removeFromDirectory(room);
|
|
|
|
} else {
|
|
|
|
this.showRoom(room);
|
|
|
|
}
|
|
|
|
},
|
|
|
|
|
2020-03-13 03:02:50 +03:00
|
|
|
onOptionChange: function(server, instanceId) {
|
2018-04-12 01:58:04 +03:00
|
|
|
// clear next batch so we don't try to load more rooms
|
|
|
|
this.nextBatch = null;
|
|
|
|
this.setState({
|
|
|
|
// Clear the public rooms out here otherwise we needlessly
|
|
|
|
// spend time filtering lots of rooms when we're about to
|
|
|
|
// to clear the list anyway.
|
|
|
|
publicRooms: [],
|
|
|
|
roomServer: server,
|
|
|
|
instanceId: instanceId,
|
2019-12-17 02:47:33 +03:00
|
|
|
error: null,
|
2018-04-12 01:58:04 +03:00
|
|
|
}, this.refreshRoomList);
|
|
|
|
// We also refresh the room list each time even though this
|
|
|
|
// filtering is client-side. It hopefully won't be client side
|
|
|
|
// for very long, and we may have fetched a thousand rooms to
|
|
|
|
// find the five gitter ones, at which point we do not want
|
|
|
|
// to render all those rooms when switching back to 'all networks'.
|
|
|
|
// Easiest to just blow away the state & re-fetch.
|
|
|
|
},
|
|
|
|
|
|
|
|
onFillRequest: function(backwards) {
|
|
|
|
if (backwards || !this.nextBatch) return Promise.resolve(false);
|
|
|
|
|
|
|
|
return this.getMoreRooms();
|
|
|
|
},
|
|
|
|
|
|
|
|
onFilterChange: function(alias) {
|
|
|
|
this.setState({
|
|
|
|
filterString: alias || null,
|
|
|
|
});
|
|
|
|
|
|
|
|
// don't send the request for a little bit,
|
|
|
|
// no point hammering the server with a
|
|
|
|
// request for every keystroke, let the
|
|
|
|
// user finish typing.
|
|
|
|
if (this.filterTimeout) {
|
|
|
|
clearTimeout(this.filterTimeout);
|
|
|
|
}
|
|
|
|
this.filterTimeout = setTimeout(() => {
|
|
|
|
this.filterTimeout = null;
|
|
|
|
this.refreshRoomList();
|
|
|
|
}, 700);
|
|
|
|
},
|
|
|
|
|
|
|
|
onFilterClear: function() {
|
|
|
|
// update immediately
|
|
|
|
this.setState({
|
|
|
|
filterString: null,
|
|
|
|
}, this.refreshRoomList);
|
|
|
|
|
|
|
|
if (this.filterTimeout) {
|
|
|
|
clearTimeout(this.filterTimeout);
|
|
|
|
}
|
|
|
|
},
|
|
|
|
|
2019-09-10 17:07:01 +03:00
|
|
|
onJoinFromSearchClick: function(alias) {
|
2018-04-12 01:58:04 +03:00
|
|
|
// If we don't have a particular instance id selected, just show that rooms alias
|
2020-03-13 03:02:50 +03:00
|
|
|
if (!this.state.instanceId || this.state.instanceId === ALL_ROOMS) {
|
2018-04-12 01:58:04 +03:00
|
|
|
// If the user specified an alias without a domain, add on whichever server is selected
|
|
|
|
// in the dropdown
|
|
|
|
if (alias.indexOf(':') == -1) {
|
|
|
|
alias = alias + ':' + this.state.roomServer;
|
|
|
|
}
|
2019-06-25 12:18:47 +03:00
|
|
|
this.showRoomAlias(alias, true);
|
2018-04-12 01:58:04 +03:00
|
|
|
} else {
|
|
|
|
// This is a 3rd party protocol. Let's see if we can join it
|
|
|
|
const protocolName = protocolNameForInstanceId(this.protocols, this.state.instanceId);
|
|
|
|
const instance = instanceForInstanceId(this.protocols, this.state.instanceId);
|
|
|
|
const fields = protocolName ? this._getFieldsForThirdPartyLocation(alias, this.protocols[protocolName], instance) : null;
|
|
|
|
if (!fields) {
|
|
|
|
const ErrorDialog = sdk.getComponent("dialogs.ErrorDialog");
|
2020-07-10 21:07:11 +03:00
|
|
|
const brand = SdkConfig.get().brand;
|
2018-04-12 01:58:04 +03:00
|
|
|
Modal.createTrackedDialog('Unable to join network', '', ErrorDialog, {
|
|
|
|
title: _t('Unable to join network'),
|
2020-07-10 21:07:11 +03:00
|
|
|
description: _t('%(brand)s does not know how to join a room on this network', { brand }),
|
2018-04-12 01:58:04 +03:00
|
|
|
});
|
|
|
|
return;
|
|
|
|
}
|
2019-11-18 13:03:05 +03:00
|
|
|
MatrixClientPeg.get().getThirdpartyLocation(protocolName, fields).then((resp) => {
|
2018-04-12 01:58:04 +03:00
|
|
|
if (resp.length > 0 && resp[0].alias) {
|
2019-06-25 12:18:47 +03:00
|
|
|
this.showRoomAlias(resp[0].alias, true);
|
2018-04-12 01:58:04 +03:00
|
|
|
} else {
|
|
|
|
const ErrorDialog = sdk.getComponent("dialogs.ErrorDialog");
|
|
|
|
Modal.createTrackedDialog('Room not found', '', ErrorDialog, {
|
|
|
|
title: _t('Room not found'),
|
|
|
|
description: _t('Couldn\'t find a matching Matrix room'),
|
|
|
|
});
|
|
|
|
}
|
|
|
|
}, (e) => {
|
|
|
|
const ErrorDialog = sdk.getComponent("dialogs.ErrorDialog");
|
|
|
|
Modal.createTrackedDialog('Fetching third party location failed', '', ErrorDialog, {
|
|
|
|
title: _t('Fetching third party location failed'),
|
|
|
|
description: _t('Unable to look up room ID from server'),
|
|
|
|
});
|
|
|
|
});
|
|
|
|
}
|
|
|
|
},
|
|
|
|
|
2019-09-13 15:33:09 +03:00
|
|
|
onPreviewClick: function(ev, room) {
|
2019-09-10 17:07:01 +03:00
|
|
|
this.props.onFinished();
|
|
|
|
dis.dispatch({
|
|
|
|
action: 'view_room',
|
|
|
|
room_id: room.room_id,
|
|
|
|
should_peek: true,
|
|
|
|
});
|
2019-09-13 15:33:09 +03:00
|
|
|
ev.stopPropagation();
|
2019-09-10 17:07:01 +03:00
|
|
|
},
|
|
|
|
|
2019-09-13 15:33:09 +03:00
|
|
|
onViewClick: function(ev, room) {
|
2019-09-10 17:07:01 +03:00
|
|
|
this.props.onFinished();
|
|
|
|
dis.dispatch({
|
|
|
|
action: 'view_room',
|
|
|
|
room_id: room.room_id,
|
|
|
|
should_peek: false,
|
|
|
|
});
|
2019-09-13 15:33:09 +03:00
|
|
|
ev.stopPropagation();
|
2019-09-10 17:07:01 +03:00
|
|
|
},
|
|
|
|
|
2019-09-13 15:33:09 +03:00
|
|
|
onJoinClick: function(ev, room) {
|
2019-09-15 23:25:36 +03:00
|
|
|
this.showRoom(room, null, true);
|
2019-09-13 15:33:09 +03:00
|
|
|
ev.stopPropagation();
|
2019-09-10 17:07:01 +03:00
|
|
|
},
|
|
|
|
|
2019-09-11 16:36:29 +03:00
|
|
|
onCreateRoomClick: function(room) {
|
|
|
|
this.props.onFinished();
|
2020-05-12 12:55:46 +03:00
|
|
|
dis.dispatch({
|
|
|
|
action: 'view_create_room',
|
|
|
|
public: true,
|
|
|
|
});
|
2019-09-11 16:36:29 +03:00
|
|
|
},
|
|
|
|
|
2019-06-25 12:18:47 +03:00
|
|
|
showRoomAlias: function(alias, autoJoin=false) {
|
|
|
|
this.showRoom(null, alias, autoJoin);
|
2018-04-12 01:58:04 +03:00
|
|
|
},
|
|
|
|
|
2019-06-25 12:18:47 +03:00
|
|
|
showRoom: function(room, room_alias, autoJoin=false) {
|
2019-01-29 17:34:58 +03:00
|
|
|
this.props.onFinished();
|
2019-06-24 00:39:04 +03:00
|
|
|
const payload = {
|
|
|
|
action: 'view_room',
|
2019-06-25 12:18:47 +03:00
|
|
|
auto_join: autoJoin,
|
2019-06-24 00:39:04 +03:00
|
|
|
};
|
2018-04-12 01:58:04 +03:00
|
|
|
if (room) {
|
|
|
|
// Don't let the user view a room they won't be able to either
|
|
|
|
// peek or join: fail earlier so they don't have to click back
|
|
|
|
// to the directory.
|
|
|
|
if (MatrixClientPeg.get().isGuest()) {
|
|
|
|
if (!room.world_readable && !room.guest_can_join) {
|
2018-09-05 20:08:49 +03:00
|
|
|
dis.dispatch({action: 'require_registration'});
|
2018-04-12 01:58:04 +03:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!room_alias) {
|
|
|
|
room_alias = get_display_alias_for_room(room);
|
|
|
|
}
|
|
|
|
|
|
|
|
payload.oob_data = {
|
|
|
|
avatarUrl: room.avatar_url,
|
|
|
|
// XXX: This logic is duplicated from the JS SDK which
|
|
|
|
// would normally decide what the name is.
|
|
|
|
name: room.name || room_alias || _t('Unnamed room'),
|
|
|
|
};
|
2020-03-13 12:21:37 +03:00
|
|
|
|
|
|
|
if (this.state.roomServer) {
|
|
|
|
payload.opts = {
|
|
|
|
viaServers: [this.state.roomServer],
|
|
|
|
};
|
|
|
|
}
|
2018-04-12 01:58:04 +03:00
|
|
|
}
|
|
|
|
// It's not really possible to join Matrix rooms by ID because the HS has no way to know
|
|
|
|
// which servers to start querying. However, there's no other way to join rooms in
|
|
|
|
// this list without aliases at present, so if roomAlias isn't set here we have no
|
|
|
|
// choice but to supply the ID.
|
|
|
|
if (room_alias) {
|
|
|
|
payload.room_alias = room_alias;
|
|
|
|
} else {
|
|
|
|
payload.room_id = room.room_id;
|
|
|
|
}
|
|
|
|
dis.dispatch(payload);
|
|
|
|
},
|
|
|
|
|
2019-09-10 17:07:01 +03:00
|
|
|
getRow(room) {
|
|
|
|
const client = MatrixClientPeg.get();
|
|
|
|
const clientRoom = client.getRoom(room.room_id);
|
|
|
|
const hasJoinedRoom = clientRoom && clientRoom.getMyMembership() === "join";
|
|
|
|
const isGuest = client.isGuest();
|
2018-10-27 06:50:35 +03:00
|
|
|
const BaseAvatar = sdk.getComponent('avatars.BaseAvatar');
|
2019-09-10 17:07:01 +03:00
|
|
|
const AccessibleButton = sdk.getComponent('elements.AccessibleButton');
|
|
|
|
let previewButton;
|
|
|
|
let joinOrViewButton;
|
2018-04-12 01:58:04 +03:00
|
|
|
|
2019-09-10 17:07:01 +03:00
|
|
|
if (room.world_readable && !hasJoinedRoom) {
|
|
|
|
previewButton = (
|
2019-09-13 15:33:09 +03:00
|
|
|
<AccessibleButton kind="secondary" onClick={(ev) => this.onPreviewClick(ev, room)}>{_t("Preview")}</AccessibleButton>
|
2019-09-10 17:07:01 +03:00
|
|
|
);
|
|
|
|
}
|
|
|
|
if (hasJoinedRoom) {
|
|
|
|
joinOrViewButton = (
|
2019-09-13 15:33:09 +03:00
|
|
|
<AccessibleButton kind="secondary" onClick={(ev) => this.onViewClick(ev, room)}>{_t("View")}</AccessibleButton>
|
2019-09-10 17:07:01 +03:00
|
|
|
);
|
|
|
|
} else if (!isGuest || room.guest_can_join) {
|
|
|
|
joinOrViewButton = (
|
2019-09-13 15:33:09 +03:00
|
|
|
<AccessibleButton kind="primary" onClick={(ev) => this.onJoinClick(ev, room)}>{_t("Join")}</AccessibleButton>
|
2019-09-10 17:07:01 +03:00
|
|
|
);
|
|
|
|
}
|
2018-04-12 01:58:04 +03:00
|
|
|
|
2019-09-10 17:07:01 +03:00
|
|
|
let name = room.name || get_display_alias_for_room(room) || _t('Unnamed room');
|
|
|
|
if (name.length > MAX_NAME_LENGTH) {
|
|
|
|
name = `${name.substring(0, MAX_NAME_LENGTH)}...`;
|
|
|
|
}
|
2019-01-13 17:47:08 +03:00
|
|
|
|
2019-09-10 17:07:01 +03:00
|
|
|
let topic = room.topic || '';
|
|
|
|
if (topic.length > MAX_TOPIC_LENGTH) {
|
|
|
|
topic = `${topic.substring(0, MAX_TOPIC_LENGTH)}...`;
|
2018-04-12 01:58:04 +03:00
|
|
|
}
|
2019-09-10 17:07:01 +03:00
|
|
|
topic = linkifyAndSanitizeHtml(topic);
|
2020-01-03 22:29:22 +03:00
|
|
|
const avatarUrl = getHttpUriForMxc(
|
2019-09-11 17:18:34 +03:00
|
|
|
MatrixClientPeg.get().getHomeserverUrl(),
|
2019-09-11 16:36:29 +03:00
|
|
|
room.avatar_url, 32, 32, "crop",
|
2019-09-11 17:18:34 +03:00
|
|
|
);
|
2019-09-10 17:07:01 +03:00
|
|
|
return (
|
|
|
|
<tr key={ room.room_id }
|
2019-09-13 12:09:02 +03:00
|
|
|
onClick={(ev) => this.onRoomClicked(room, ev)}
|
2019-09-10 17:07:01 +03:00
|
|
|
// cancel onMouseDown otherwise shift-clicking highlights text
|
|
|
|
onMouseDown={(ev) => {ev.preventDefault();}}
|
|
|
|
>
|
|
|
|
<td className="mx_RoomDirectory_roomAvatar">
|
2019-09-11 16:36:29 +03:00
|
|
|
<BaseAvatar width={32} height={32} resizeMethod='crop'
|
2019-09-10 17:07:01 +03:00
|
|
|
name={ name } idName={ name }
|
2019-09-11 17:18:34 +03:00
|
|
|
url={ avatarUrl } />
|
2019-09-10 17:07:01 +03:00
|
|
|
</td>
|
|
|
|
<td className="mx_RoomDirectory_roomDescription">
|
|
|
|
<div className="mx_RoomDirectory_name">{ name }</div>
|
|
|
|
<div className="mx_RoomDirectory_topic"
|
2019-09-11 17:18:34 +03:00
|
|
|
onClick={ (ev) => { ev.stopPropagation(); } }
|
|
|
|
dangerouslySetInnerHTML={{ __html: topic }} />
|
2019-09-10 17:07:01 +03:00
|
|
|
<div className="mx_RoomDirectory_alias">{ get_display_alias_for_room(room) }</div>
|
|
|
|
</td>
|
|
|
|
<td className="mx_RoomDirectory_roomMemberCount">
|
|
|
|
{ room.num_joined_members }
|
|
|
|
</td>
|
|
|
|
<td className="mx_RoomDirectory_preview">{previewButton}</td>
|
|
|
|
<td className="mx_RoomDirectory_join">{joinOrViewButton}</td>
|
|
|
|
</tr>
|
|
|
|
);
|
2018-04-12 01:58:04 +03:00
|
|
|
},
|
|
|
|
|
|
|
|
collectScrollPanel: function(element) {
|
|
|
|
this.scrollPanel = element;
|
|
|
|
},
|
|
|
|
|
|
|
|
_stringLooksLikeId: function(s, field_type) {
|
|
|
|
let pat = /^#[^\s]+:[^\s]/;
|
|
|
|
if (field_type && field_type.regexp) {
|
|
|
|
pat = new RegExp(field_type.regexp);
|
|
|
|
}
|
|
|
|
|
|
|
|
return pat.test(s);
|
|
|
|
},
|
|
|
|
|
|
|
|
_getFieldsForThirdPartyLocation: function(userInput, protocol, instance) {
|
|
|
|
// make an object with the fields specified by that protocol. We
|
|
|
|
// require that the values of all but the last field come from the
|
|
|
|
// instance. The last is the user input.
|
|
|
|
const requiredFields = protocol.location_fields;
|
|
|
|
if (!requiredFields) return null;
|
|
|
|
const fields = {};
|
|
|
|
for (let i = 0; i < requiredFields.length - 1; ++i) {
|
|
|
|
const thisField = requiredFields[i];
|
|
|
|
if (instance.fields[thisField] === undefined) return null;
|
|
|
|
fields[thisField] = instance.fields[thisField];
|
|
|
|
}
|
|
|
|
fields[requiredFields[requiredFields.length - 1]] = userInput;
|
|
|
|
return fields;
|
|
|
|
},
|
|
|
|
|
|
|
|
/**
|
|
|
|
* called by the parent component when PageUp/Down/etc is pressed.
|
|
|
|
*
|
|
|
|
* We pass it down to the scroll panel.
|
|
|
|
*/
|
|
|
|
handleScrollKey: function(ev) {
|
|
|
|
if (this.scrollPanel) {
|
|
|
|
this.scrollPanel.handleScrollKey(ev);
|
|
|
|
}
|
|
|
|
},
|
|
|
|
|
|
|
|
render: function() {
|
|
|
|
const Loader = sdk.getComponent("elements.Spinner");
|
2019-01-29 17:34:58 +03:00
|
|
|
const BaseDialog = sdk.getComponent('views.dialogs.BaseDialog');
|
|
|
|
const AccessibleButton = sdk.getComponent('elements.AccessibleButton');
|
2018-04-12 01:58:04 +03:00
|
|
|
|
|
|
|
let content;
|
2019-03-27 17:54:18 +03:00
|
|
|
if (this.state.error) {
|
|
|
|
content = this.state.error;
|
2019-09-11 13:52:39 +03:00
|
|
|
} else if (this.state.protocolsLoading) {
|
2019-03-27 17:17:24 +03:00
|
|
|
content = <Loader />;
|
2018-04-12 01:58:04 +03:00
|
|
|
} else {
|
2019-09-10 17:07:01 +03:00
|
|
|
const rows = (this.state.publicRooms || []).map(room => this.getRow(room));
|
2018-04-12 01:58:04 +03:00
|
|
|
// we still show the scrollpanel, at least for now, because
|
|
|
|
// otherwise we don't fetch more because we don't get a fill
|
|
|
|
// request from the scrollpanel because there isn't one
|
2019-09-11 13:52:39 +03:00
|
|
|
|
|
|
|
let spinner;
|
|
|
|
if (this.state.loading) {
|
|
|
|
spinner = <Loader />;
|
|
|
|
}
|
|
|
|
|
2018-04-12 01:58:04 +03:00
|
|
|
let scrollpanel_content;
|
2019-09-11 13:52:39 +03:00
|
|
|
if (rows.length === 0 && !this.state.loading) {
|
2018-04-12 01:58:04 +03:00
|
|
|
scrollpanel_content = <i>{ _t('No rooms to show') }</i>;
|
|
|
|
} else {
|
2019-12-08 15:12:06 +03:00
|
|
|
scrollpanel_content = <table className="mx_RoomDirectory_table">
|
2018-04-12 01:58:04 +03:00
|
|
|
<tbody>
|
2019-09-10 17:07:01 +03:00
|
|
|
{ rows }
|
2018-04-12 01:58:04 +03:00
|
|
|
</tbody>
|
|
|
|
</table>;
|
|
|
|
}
|
|
|
|
const ScrollPanel = sdk.getComponent("structures.ScrollPanel");
|
|
|
|
content = <ScrollPanel ref={this.collectScrollPanel}
|
|
|
|
className="mx_RoomDirectory_tableWrapper"
|
|
|
|
onFillRequest={ this.onFillRequest }
|
|
|
|
stickyBottom={false}
|
|
|
|
startAtBottom={false}
|
|
|
|
>
|
|
|
|
{ scrollpanel_content }
|
2019-09-11 13:52:39 +03:00
|
|
|
{ spinner }
|
2018-04-12 01:58:04 +03:00
|
|
|
</ScrollPanel>;
|
|
|
|
}
|
|
|
|
|
2019-03-27 17:17:24 +03:00
|
|
|
let listHeader;
|
|
|
|
if (!this.state.protocolsLoading) {
|
|
|
|
const NetworkDropdown = sdk.getComponent('directory.NetworkDropdown');
|
|
|
|
const DirectorySearchBox = sdk.getComponent('elements.DirectorySearchBox');
|
|
|
|
|
|
|
|
const protocolName = protocolNameForInstanceId(this.protocols, this.state.instanceId);
|
|
|
|
let instance_expected_field_type;
|
|
|
|
if (
|
|
|
|
protocolName &&
|
|
|
|
this.protocols &&
|
|
|
|
this.protocols[protocolName] &&
|
|
|
|
this.protocols[protocolName].location_fields.length > 0 &&
|
|
|
|
this.protocols[protocolName].field_types
|
|
|
|
) {
|
|
|
|
const last_field = this.protocols[protocolName].location_fields.slice(-1)[0];
|
|
|
|
instance_expected_field_type = this.protocols[protocolName].field_types[last_field];
|
|
|
|
}
|
2018-04-12 01:58:04 +03:00
|
|
|
|
2019-09-11 16:36:29 +03:00
|
|
|
let placeholder = _t('Find a room…');
|
2020-03-13 03:02:50 +03:00
|
|
|
if (!this.state.instanceId || this.state.instanceId === ALL_ROOMS) {
|
2019-09-11 16:36:29 +03:00
|
|
|
placeholder = _t("Find a room… (e.g. %(exampleRoom)s)", {exampleRoom: "#example:" + this.state.roomServer});
|
2019-03-27 17:17:24 +03:00
|
|
|
} else if (instance_expected_field_type) {
|
|
|
|
placeholder = instance_expected_field_type.placeholder;
|
|
|
|
}
|
2018-04-12 01:58:04 +03:00
|
|
|
|
2019-03-27 17:17:24 +03:00
|
|
|
let showJoinButton = this._stringLooksLikeId(this.state.filterString, instance_expected_field_type);
|
|
|
|
if (protocolName) {
|
|
|
|
const instance = instanceForInstanceId(this.protocols, this.state.instanceId);
|
|
|
|
if (this._getFieldsForThirdPartyLocation(this.state.filterString, this.protocols[protocolName], instance) === null) {
|
|
|
|
showJoinButton = false;
|
|
|
|
}
|
2018-04-12 01:58:04 +03:00
|
|
|
}
|
2019-03-27 17:17:24 +03:00
|
|
|
|
2020-08-22 00:56:54 +03:00
|
|
|
let dropdown = (
|
|
|
|
<NetworkDropdown
|
|
|
|
protocols={this.protocols}
|
|
|
|
onOptionChange={this.onOptionChange}
|
|
|
|
selectedServerName={this.state.roomServer}
|
|
|
|
selectedInstanceId={this.state.instanceId}
|
|
|
|
/>
|
|
|
|
);
|
|
|
|
if (this.state.selectedCommunityId) {
|
|
|
|
dropdown = null;
|
|
|
|
}
|
|
|
|
|
2019-03-27 17:17:24 +03:00
|
|
|
listHeader = <div className="mx_RoomDirectory_listheader">
|
|
|
|
<DirectorySearchBox
|
|
|
|
className="mx_RoomDirectory_searchbox"
|
2020-03-13 03:02:50 +03:00
|
|
|
onChange={this.onFilterChange}
|
|
|
|
onClear={this.onFilterClear}
|
|
|
|
onJoinClick={this.onJoinFromSearchClick}
|
|
|
|
placeholder={placeholder}
|
|
|
|
showJoinButton={showJoinButton}
|
|
|
|
/>
|
2020-08-22 00:56:54 +03:00
|
|
|
{dropdown}
|
2019-03-27 17:17:24 +03:00
|
|
|
</div>;
|
2018-04-12 01:58:04 +03:00
|
|
|
}
|
2019-09-11 16:36:29 +03:00
|
|
|
const explanation =
|
|
|
|
_t("If you can't find the room you're looking for, ask for an invite or <a>Create a new room</a>.", null,
|
|
|
|
{a: sub => {
|
|
|
|
return (<AccessibleButton
|
|
|
|
kind="secondary"
|
|
|
|
onClick={this.onCreateRoomClick}
|
|
|
|
>{sub}</AccessibleButton>);
|
|
|
|
}},
|
|
|
|
);
|
2018-04-12 01:58:04 +03:00
|
|
|
|
2020-08-22 00:56:54 +03:00
|
|
|
const title = this.state.selectedCommunityId
|
|
|
|
? _t("Explore rooms in %(communityName)s", {
|
|
|
|
communityName: this.state.communityName || this.state.selectedCommunityId,
|
|
|
|
}) : _t("Explore rooms");
|
2018-04-12 01:58:04 +03:00
|
|
|
return (
|
2019-01-29 17:34:58 +03:00
|
|
|
<BaseDialog
|
|
|
|
className={'mx_RoomDirectory_dialog'}
|
|
|
|
hasCancel={true}
|
|
|
|
onFinished={this.props.onFinished}
|
2020-08-22 00:56:54 +03:00
|
|
|
title={title}
|
2019-01-29 17:34:58 +03:00
|
|
|
>
|
|
|
|
<div className="mx_RoomDirectory">
|
2020-03-11 02:11:48 +03:00
|
|
|
{explanation}
|
2019-01-29 17:34:58 +03:00
|
|
|
<div className="mx_RoomDirectory_list">
|
2019-03-27 17:17:24 +03:00
|
|
|
{listHeader}
|
2019-01-29 17:34:58 +03:00
|
|
|
{content}
|
2018-04-12 01:58:04 +03:00
|
|
|
</div>
|
|
|
|
</div>
|
2019-01-29 17:34:58 +03:00
|
|
|
</BaseDialog>
|
2018-04-12 01:58:04 +03:00
|
|
|
);
|
2018-10-27 06:50:35 +03:00
|
|
|
},
|
2018-04-12 01:58:04 +03:00
|
|
|
});
|
|
|
|
|
|
|
|
// Similar to matrix-react-sdk's MatrixTools.getDisplayAliasForRoom
|
|
|
|
// but works with the objects we get from the public room list
|
|
|
|
function get_display_alias_for_room(room) {
|
2018-10-27 06:50:35 +03:00
|
|
|
return room.canonical_alias || (room.aliases ? room.aliases[0] : "");
|
2018-04-12 01:58:04 +03:00
|
|
|
}
|