2017-02-10 20:04:52 +03:00
|
|
|
//@flow
|
2017-06-01 17:18:06 +03:00
|
|
|
/*
|
2017-06-01 19:29:40 +03:00
|
|
|
Copyright 2016 Aviral Dasgupta
|
2017-06-01 17:18:06 +03:00
|
|
|
Copyright 2017 Vector Creations Ltd
|
2017-11-02 21:01:28 +03:00
|
|
|
Copyright 2017 New Vector Ltd
|
2017-06-01 17:18:06 +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.
|
|
|
|
*/
|
|
|
|
|
2016-07-03 19:45:13 +03:00
|
|
|
import React from 'react';
|
2017-05-25 13:39:08 +03:00
|
|
|
import { _t } from '../languageHandler';
|
2016-06-12 14:32:46 +03:00
|
|
|
import AutocompleteProvider from './AutocompleteProvider';
|
2016-08-17 14:57:19 +03:00
|
|
|
import {PillCompletion} from './Components';
|
|
|
|
import sdk from '../index';
|
2016-12-01 09:36:57 +03:00
|
|
|
import FuzzyMatcher from './FuzzyMatcher';
|
2017-02-10 20:04:52 +03:00
|
|
|
import _pull from 'lodash/pull';
|
|
|
|
import _sortBy from 'lodash/sortBy';
|
|
|
|
import MatrixClientPeg from '../MatrixClientPeg';
|
|
|
|
|
|
|
|
import type {Room, RoomMember} from 'matrix-js-sdk';
|
2016-06-12 14:32:46 +03:00
|
|
|
|
2016-09-16 13:08:29 +03:00
|
|
|
const USER_REGEX = /@\S*/g;
|
2016-06-12 14:32:46 +03:00
|
|
|
|
|
|
|
export default class UserProvider extends AutocompleteProvider {
|
2017-09-22 16:31:29 +03:00
|
|
|
users: Array<RoomMember> = null;
|
|
|
|
room: Room = null;
|
2017-02-10 20:04:52 +03:00
|
|
|
|
2017-11-02 20:51:08 +03:00
|
|
|
constructor(room) {
|
2016-06-21 13:16:20 +03:00
|
|
|
super(USER_REGEX, {
|
2017-07-04 18:24:59 +03:00
|
|
|
keys: ['name'],
|
2016-06-21 13:16:20 +03:00
|
|
|
});
|
2017-11-02 20:51:08 +03:00
|
|
|
this.room = room;
|
2016-12-01 09:36:57 +03:00
|
|
|
this.matcher = new FuzzyMatcher([], {
|
2017-08-15 16:08:26 +03:00
|
|
|
keys: ['name', 'userId'],
|
2017-07-04 18:24:59 +03:00
|
|
|
shouldMatchPrefix: true,
|
2016-07-03 19:45:13 +03:00
|
|
|
});
|
2017-11-02 20:51:08 +03:00
|
|
|
|
|
|
|
this._onRoomTimelineBound = this._onRoomTimeline.bind(this);
|
|
|
|
this._onRoomStateMemberBound = this._onRoomStateMember.bind(this);
|
|
|
|
|
|
|
|
MatrixClientPeg.get().on("Room.timeline", this._onRoomTimelineBound);
|
|
|
|
MatrixClientPeg.get().on("RoomState.members", this._onRoomStateMemberBound);
|
|
|
|
}
|
|
|
|
|
|
|
|
destroy() {
|
|
|
|
MatrixClientPeg.get().removeListener("Room.timeline", this._onRoomTimelineBound);
|
|
|
|
MatrixClientPeg.get().removeListener("RoomState.members", this._onRoomStateMemberBound);
|
|
|
|
}
|
|
|
|
|
|
|
|
_onRoomTimeline(ev, room, toStartOfTimeline, removed, data) {
|
|
|
|
if (!room) return;
|
2017-11-02 21:14:21 +03:00
|
|
|
if (removed) return;
|
2017-11-02 21:14:46 +03:00
|
|
|
if (room.roomId !== this.room.roomId) return;
|
2017-11-02 20:51:08 +03:00
|
|
|
|
|
|
|
// ignore events from filtered timelines
|
|
|
|
if (data.timeline.getTimelineSet() !== room.getUnfilteredTimelineSet()) return;
|
|
|
|
|
|
|
|
// ignore anything but real-time updates at the end of the room:
|
|
|
|
// updates from pagination will happen when the paginate completes.
|
|
|
|
if (toStartOfTimeline || !data || !data.liveEvent) return;
|
|
|
|
|
|
|
|
this.onUserSpoke(ev.sender);
|
|
|
|
}
|
|
|
|
|
|
|
|
_onRoomStateMember(ev, state, member) {
|
|
|
|
// ignore members in other rooms
|
|
|
|
if (member.roomId !== this.room.roomId) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
// blow away the users cache
|
|
|
|
this.users = null;
|
2016-06-12 14:32:46 +03:00
|
|
|
}
|
|
|
|
|
2016-09-13 13:11:52 +03:00
|
|
|
async getCompletions(query: string, selection: {start: number, end: number}, force = false) {
|
2016-08-17 14:57:19 +03:00
|
|
|
const MemberAvatar = sdk.getComponent('views.avatars.MemberAvatar');
|
|
|
|
|
2017-08-08 17:58:15 +03:00
|
|
|
// Disable autocompletions when composing commands because of various issues
|
|
|
|
// (see https://github.com/vector-im/riot-web/issues/4762)
|
|
|
|
if (/^(\/ban|\/unban|\/op|\/deop|\/invite|\/kick|\/verify)/.test(query)) {
|
|
|
|
return [];
|
|
|
|
}
|
|
|
|
|
2017-09-22 16:31:29 +03:00
|
|
|
// lazy-load user list into matcher
|
|
|
|
if (this.users === null) this._makeUsers();
|
|
|
|
|
2016-06-12 14:32:46 +03:00
|
|
|
let completions = [];
|
2017-10-11 19:56:17 +03:00
|
|
|
const {command, range} = this.getCurrentCommand(query, selection, force);
|
2016-07-03 19:45:13 +03:00
|
|
|
if (command) {
|
2017-07-17 17:53:29 +03:00
|
|
|
completions = this.matcher.match(command[0]).map((user) => {
|
|
|
|
const displayName = (user.name || user.userId || '').replace(' (IRC)', ''); // FIXME when groups are done
|
2016-06-12 14:32:46 +03:00
|
|
|
return {
|
2017-08-08 12:28:11 +03:00
|
|
|
// Length of completion should equal length of text in decorator. draft-js
|
|
|
|
// relies on the length of the entity === length of the text in the decoration.
|
2017-08-09 12:40:06 +03:00
|
|
|
completion: user.rawDisplayName.replace(' (IRC)', ''),
|
2017-07-20 13:45:25 +03:00
|
|
|
suffix: range.start === 0 ? ': ' : ' ',
|
2017-07-20 17:09:59 +03:00
|
|
|
href: 'https://matrix.to/#/' + user.userId,
|
2016-07-03 19:45:13 +03:00
|
|
|
component: (
|
2016-08-17 14:57:19 +03:00
|
|
|
<PillCompletion
|
2017-10-11 19:56:17 +03:00
|
|
|
initialComponent={<MemberAvatar member={user} width={24} height={24} />}
|
2016-08-02 07:30:12 +03:00
|
|
|
title={displayName}
|
2016-07-03 19:45:13 +03:00
|
|
|
description={user.userId} />
|
|
|
|
),
|
2016-09-13 13:11:52 +03:00
|
|
|
range,
|
2016-06-12 14:32:46 +03:00
|
|
|
};
|
2017-07-04 15:53:06 +03:00
|
|
|
});
|
2016-06-12 14:32:46 +03:00
|
|
|
}
|
2016-09-13 13:11:52 +03:00
|
|
|
return completions;
|
2016-06-12 14:32:46 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
getName() {
|
2017-05-23 17:16:31 +03:00
|
|
|
return '👥 ' + _t('Users');
|
2016-06-12 14:32:46 +03:00
|
|
|
}
|
2016-06-20 11:22:55 +03:00
|
|
|
|
2017-09-22 16:31:29 +03:00
|
|
|
_makeUsers() {
|
|
|
|
const events = this.room.getLiveTimeline().getEvents();
|
2017-02-10 20:04:52 +03:00
|
|
|
const lastSpoken = {};
|
|
|
|
|
2017-11-16 16:19:36 +03:00
|
|
|
for (const event of events) {
|
2017-02-10 20:04:52 +03:00
|
|
|
lastSpoken[event.getSender()] = event.getTs();
|
|
|
|
}
|
|
|
|
|
|
|
|
const currentUserId = MatrixClientPeg.get().credentials.userId;
|
2017-09-22 16:31:29 +03:00
|
|
|
this.users = this.room.getJoinedMembers().filter((member) => {
|
2017-02-10 20:04:52 +03:00
|
|
|
if (member.userId !== currentUserId) return true;
|
|
|
|
});
|
|
|
|
|
2017-07-07 21:43:30 +03:00
|
|
|
this.users = _sortBy(this.users, (member) =>
|
|
|
|
1E20 - lastSpoken[member.userId] || 1E20,
|
2017-07-04 15:53:06 +03:00
|
|
|
);
|
2017-02-10 20:04:52 +03:00
|
|
|
|
|
|
|
this.matcher.setObjects(this.users);
|
|
|
|
}
|
|
|
|
|
|
|
|
onUserSpoke(user: RoomMember) {
|
2017-09-22 18:55:47 +03:00
|
|
|
if (this.users === null) return;
|
2017-09-22 16:31:29 +03:00
|
|
|
if (user.userId === MatrixClientPeg.get().credentials.userId) return;
|
2017-02-10 20:04:52 +03:00
|
|
|
|
2017-07-11 12:42:02 +03:00
|
|
|
// Move the user that spoke to the front of the array
|
|
|
|
this.users.splice(
|
2017-07-04 15:53:06 +03:00
|
|
|
this.users.findIndex((user2) => user2.userId === user.userId), 1);
|
|
|
|
this.users = [user, ...this.users];
|
|
|
|
|
2016-12-01 09:36:57 +03:00
|
|
|
this.matcher.setObjects(this.users);
|
2016-06-20 11:22:55 +03:00
|
|
|
}
|
|
|
|
|
2016-08-17 14:57:19 +03:00
|
|
|
renderCompletions(completions: [React.Component]): ?React.Component {
|
2017-07-04 18:50:50 +03:00
|
|
|
return <div className="mx_Autocomplete_Completion_container_pill mx_Autocomplete_Completion_container_truncate">
|
2017-10-11 19:56:17 +03:00
|
|
|
{ completions }
|
2016-08-22 22:06:31 +03:00
|
|
|
</div>;
|
2016-08-17 14:57:19 +03:00
|
|
|
}
|
2016-09-13 13:11:52 +03:00
|
|
|
|
|
|
|
shouldForceComplete(): boolean {
|
|
|
|
return true;
|
|
|
|
}
|
2016-06-12 14:32:46 +03:00
|
|
|
}
|