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
|
2018-06-19 14:06:13 +03:00
|
|
|
Copyright 2017, 2018 New Vector Ltd
|
2018-06-25 11:32:51 +03:00
|
|
|
Copyright 2018 Michael Telatynski <7t3chguy@gmail.com>
|
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.
|
|
|
|
*/
|
|
|
|
|
2020-04-21 12:01:05 +03:00
|
|
|
import React from 'react';
|
2021-06-17 16:24:53 +03:00
|
|
|
import { sortBy } from 'lodash';
|
|
|
|
import { MatrixEvent } from "matrix-js-sdk/src/models/event";
|
|
|
|
import { Room } from "matrix-js-sdk/src/models/room";
|
2021-06-17 16:06:03 +03:00
|
|
|
import { RoomMember } from "matrix-js-sdk/src/models/room-member";
|
2021-06-17 16:24:53 +03:00
|
|
|
import { RoomState } from "matrix-js-sdk/src/models/room-state";
|
|
|
|
import { EventTimeline } from "matrix-js-sdk/src/models/event-timeline";
|
2021-10-23 01:23:32 +03:00
|
|
|
|
|
|
|
import { MatrixClientPeg } from '../MatrixClientPeg';
|
|
|
|
import QueryMatcher from './QueryMatcher';
|
|
|
|
import { PillCompletion } from './Components';
|
|
|
|
import AutocompleteProvider from './AutocompleteProvider';
|
|
|
|
import { _t } from '../languageHandler';
|
2021-06-17 16:24:53 +03:00
|
|
|
import { makeUserPermalink } from "../utils/permalinks/Permalinks";
|
|
|
|
import { ICompletion, ISelectionRange } from "./Autocompleter";
|
2021-07-02 18:08:27 +03:00
|
|
|
import MemberAvatar from '../components/views/avatars/MemberAvatar';
|
2021-11-18 15:47:11 +03:00
|
|
|
import { TimelineRenderingType } from '../contexts/RoomContext';
|
2016-06-12 14:32:46 +03:00
|
|
|
|
2018-06-25 11:32:51 +03:00
|
|
|
const USER_REGEX = /\B@\S*/g;
|
2016-06-12 14:32:46 +03:00
|
|
|
|
2018-05-13 05:04:40 +03:00
|
|
|
// used when you hit 'tab' - we allow some separator chars at the beginning
|
|
|
|
// to allow you to tab-complete /mat into /(matthew)
|
|
|
|
const FORCED_USER_REGEX = /[^/,:; \t\n]\S*/g;
|
2016-06-12 14:32:46 +03:00
|
|
|
|
2020-04-20 21:00:54 +03:00
|
|
|
interface IRoomTimelineData {
|
|
|
|
timeline: EventTimeline;
|
|
|
|
liveEvent?: boolean;
|
|
|
|
}
|
|
|
|
|
2016-06-12 14:32:46 +03:00
|
|
|
export default class UserProvider extends AutocompleteProvider {
|
2020-04-20 21:00:54 +03:00
|
|
|
matcher: QueryMatcher<RoomMember>;
|
|
|
|
users: RoomMember[];
|
|
|
|
room: Room;
|
2017-02-10 20:04:52 +03:00
|
|
|
|
2021-11-18 15:47:11 +03:00
|
|
|
constructor(room: Room, renderingType?: TimelineRenderingType) {
|
|
|
|
super({
|
|
|
|
commandRegex: USER_REGEX,
|
|
|
|
forcedCommandRegex: FORCED_USER_REGEX,
|
|
|
|
renderingType,
|
|
|
|
});
|
2017-11-02 20:51:08 +03:00
|
|
|
this.room = room;
|
2018-08-13 21:15:42 +03:00
|
|
|
this.matcher = new QueryMatcher([], {
|
2018-10-11 20:34:01 +03:00
|
|
|
keys: ['name'],
|
|
|
|
funcs: [obj => obj.userId.slice(1)], // index by user id minus the leading '@'
|
2018-06-23 04:00:36 +03:00
|
|
|
shouldMatchWordsOnly: false,
|
2016-07-03 19:45:13 +03:00
|
|
|
});
|
2017-11-02 20:51:08 +03:00
|
|
|
|
2020-04-21 12:01:05 +03:00
|
|
|
MatrixClientPeg.get().on("Room.timeline", this.onRoomTimeline);
|
|
|
|
MatrixClientPeg.get().on("RoomState.members", this.onRoomStateMember);
|
2017-11-02 20:51:08 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
destroy() {
|
2017-12-05 14:14:55 +03:00
|
|
|
if (MatrixClientPeg.get()) {
|
2020-04-21 12:01:05 +03:00
|
|
|
MatrixClientPeg.get().removeListener("Room.timeline", this.onRoomTimeline);
|
|
|
|
MatrixClientPeg.get().removeListener("RoomState.members", this.onRoomStateMember);
|
2017-12-05 14:14:55 +03:00
|
|
|
}
|
2017-11-02 20:51:08 +03:00
|
|
|
}
|
|
|
|
|
2020-08-29 03:11:08 +03:00
|
|
|
private onRoomTimeline = (
|
|
|
|
ev: MatrixEvent,
|
|
|
|
room: Room,
|
|
|
|
toStartOfTimeline: boolean,
|
|
|
|
removed: boolean,
|
|
|
|
data: IRoomTimelineData,
|
|
|
|
) => {
|
2017-11-02 20:51:08 +03:00
|
|
|
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;
|
|
|
|
|
2018-03-16 04:21:46 +03:00
|
|
|
// TODO: lazyload if we have no ev.sender room member?
|
2017-11-02 20:51:08 +03:00
|
|
|
this.onUserSpoke(ev.sender);
|
2020-04-20 21:00:54 +03:00
|
|
|
};
|
2017-11-02 20:51:08 +03:00
|
|
|
|
2020-04-21 12:01:05 +03:00
|
|
|
private onRoomStateMember = (ev: MatrixEvent, state: RoomState, member: RoomMember) => {
|
2017-11-02 20:51:08 +03:00
|
|
|
// ignore members in other rooms
|
|
|
|
if (member.roomId !== this.room.roomId) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
// blow away the users cache
|
|
|
|
this.users = null;
|
2020-04-20 21:00:54 +03:00
|
|
|
};
|
2016-06-12 14:32:46 +03:00
|
|
|
|
2021-05-12 14:18:56 +03:00
|
|
|
async getCompletions(
|
|
|
|
rawQuery: string,
|
|
|
|
selection: ISelectionRange,
|
|
|
|
force = false,
|
|
|
|
limit = -1,
|
|
|
|
): Promise<ICompletion[]> {
|
2017-09-22 16:31:29 +03:00
|
|
|
// lazy-load user list into matcher
|
2021-07-20 00:43:11 +03:00
|
|
|
if (!this.users) this.makeUsers();
|
2017-09-22 16:31:29 +03:00
|
|
|
|
2016-06-12 14:32:46 +03:00
|
|
|
let completions = [];
|
2021-06-29 15:11:58 +03:00
|
|
|
const { command, range } = this.getCurrentCommand(rawQuery, selection, force);
|
2018-04-24 15:59:18 +03:00
|
|
|
|
|
|
|
if (!command) return completions;
|
|
|
|
|
|
|
|
const fullMatch = command[0];
|
|
|
|
// Don't search if the query is a single "@"
|
|
|
|
if (fullMatch && fullMatch !== '@') {
|
2018-08-13 21:15:42 +03:00
|
|
|
// Don't include the '@' in our search query - it's only used as a way to trigger completion
|
|
|
|
const query = fullMatch.startsWith('@') ? fullMatch.substring(1) : fullMatch;
|
2021-05-12 14:18:56 +03:00
|
|
|
completions = this.matcher.match(query, limit).map((user) => {
|
2018-10-03 21:39:47 +03:00
|
|
|
const displayName = (user.name || user.userId || '');
|
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.
|
2018-10-03 21:34:06 +03:00
|
|
|
completion: user.rawDisplayName,
|
2018-05-12 22:04:58 +03:00
|
|
|
completionId: user.userId,
|
2019-09-23 15:39:19 +03:00
|
|
|
type: "user",
|
2018-07-17 13:56:24 +03:00
|
|
|
suffix: (selection.beginning && range.start === 0) ? ': ' : ' ',
|
2017-12-13 02:33:40 +03:00
|
|
|
href: makeUserPermalink(user.userId),
|
2016-07-03 19:45:13 +03:00
|
|
|
component: (
|
2020-05-30 15:30:59 +03:00
|
|
|
<PillCompletion title={displayName} description={user.userId}>
|
|
|
|
<MemberAvatar member={user} width={24} height={24} />
|
|
|
|
</PillCompletion>
|
2016-07-03 19:45:13 +03:00
|
|
|
),
|
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
|
|
|
}
|
|
|
|
|
2018-06-23 04:00:36 +03:00
|
|
|
getName(): string {
|
2020-07-31 15:14:37 +03:00
|
|
|
return _t('Users');
|
2016-06-12 14:32:46 +03:00
|
|
|
}
|
2016-06-20 11:22:55 +03:00
|
|
|
|
2021-07-20 00:43:11 +03:00
|
|
|
private makeUsers() {
|
2017-09-22 16:31:29 +03:00
|
|
|
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;
|
2021-06-29 15:11:58 +03:00
|
|
|
this.users = this.room.getJoinedMembers().filter(({ userId }) => userId !== currentUserId);
|
2021-02-26 00:01:46 +03:00
|
|
|
this.users = this.users.concat(this.room.getMembersWithMembership("invite"));
|
2017-02-10 20:04:52 +03:00
|
|
|
|
2020-08-28 20:53:43 +03:00
|
|
|
this.users = sortBy(this.users, (member) => 1E20 - lastSpoken[member.userId] || 1E20);
|
2017-02-10 20:04:52 +03:00
|
|
|
|
|
|
|
this.matcher.setObjects(this.users);
|
|
|
|
}
|
|
|
|
|
|
|
|
onUserSpoke(user: RoomMember) {
|
2020-04-22 15:18:54 +03:00
|
|
|
if (!this.users) return;
|
2018-03-16 04:21:46 +03:00
|
|
|
if (!user) 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
|
|
|
}
|
|
|
|
|
2020-04-20 21:00:54 +03:00
|
|
|
renderCompletions(completions: React.ReactNode[]): React.ReactNode {
|
2019-09-30 16:32:42 +03:00
|
|
|
return (
|
2020-08-29 03:11:08 +03:00
|
|
|
<div
|
|
|
|
className="mx_Autocomplete_Completion_container_pill"
|
2021-02-18 13:55:24 +03:00
|
|
|
role="presentation"
|
2020-08-29 03:11:08 +03:00
|
|
|
aria-label={_t("User Autocomplete")}
|
|
|
|
>
|
2019-09-30 16:32:42 +03:00
|
|
|
{ completions }
|
|
|
|
</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
|
|
|
}
|