2018-06-19 13:52:48 +03:00
|
|
|
/*
|
|
|
|
Copyright 2018 New Vector Ltd
|
2018-06-25 11:32:51 +03:00
|
|
|
Copyright 2018 Michael Telatynski <7t3chguy@gmail.com>
|
2018-06-19 13:52:48 +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';
|
2020-04-20 21:00:54 +03:00
|
|
|
import Group from "matrix-js-sdk/src/models/group";
|
2018-06-19 13:52:48 +03:00
|
|
|
import { _t } from '../languageHandler';
|
|
|
|
import AutocompleteProvider from './AutocompleteProvider';
|
2021-06-29 15:11:58 +03:00
|
|
|
import { MatrixClientPeg } from '../MatrixClientPeg';
|
2018-08-13 21:15:42 +03:00
|
|
|
import QueryMatcher from './QueryMatcher';
|
2021-06-29 15:11:58 +03:00
|
|
|
import { PillCompletion } from './Components';
|
2019-12-20 04:19:56 +03:00
|
|
|
import * as sdk from '../index';
|
2021-06-29 15:11:58 +03:00
|
|
|
import { sortBy } from "lodash";
|
|
|
|
import { makeGroupPermalink } from "../utils/permalinks/Permalinks";
|
|
|
|
import { ICompletion, ISelectionRange } from "./Autocompleter";
|
2018-06-19 13:52:48 +03:00
|
|
|
import FlairStore from "../stores/FlairStore";
|
2021-06-29 15:11:58 +03:00
|
|
|
import { mediaFromMxc } from "../customisations/Media";
|
2018-06-19 13:52:48 +03:00
|
|
|
|
2018-06-25 11:32:51 +03:00
|
|
|
const COMMUNITY_REGEX = /\B\+\S*/g;
|
2018-06-19 13:52:48 +03:00
|
|
|
|
|
|
|
function score(query, space) {
|
|
|
|
const index = space.indexOf(query);
|
|
|
|
if (index === -1) {
|
|
|
|
return Infinity;
|
|
|
|
} else {
|
|
|
|
return index;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
export default class CommunityProvider extends AutocompleteProvider {
|
2020-04-20 21:00:54 +03:00
|
|
|
matcher: QueryMatcher<Group>;
|
|
|
|
|
2018-06-19 13:52:48 +03:00
|
|
|
constructor() {
|
|
|
|
super(COMMUNITY_REGEX);
|
2018-08-13 21:15:42 +03:00
|
|
|
this.matcher = new QueryMatcher([], {
|
2018-06-19 13:52:48 +03:00
|
|
|
keys: ['groupId', 'name', 'shortDescription'],
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
2021-05-12 14:18:56 +03:00
|
|
|
async getCompletions(
|
|
|
|
query: string,
|
|
|
|
selection: ISelectionRange,
|
|
|
|
force = false,
|
|
|
|
limit = -1,
|
|
|
|
): Promise<ICompletion[]> {
|
2018-06-19 13:52:48 +03:00
|
|
|
const BaseAvatar = sdk.getComponent('views.avatars.BaseAvatar');
|
|
|
|
|
|
|
|
// Disable autocompletions when composing commands because of various issues
|
2020-08-03 18:02:26 +03:00
|
|
|
// (see https://github.com/vector-im/element-web/issues/4762)
|
2018-06-19 13:52:48 +03:00
|
|
|
if (/^(\/join|\/leave)/.test(query)) {
|
|
|
|
return [];
|
|
|
|
}
|
|
|
|
|
|
|
|
const cli = MatrixClientPeg.get();
|
|
|
|
let completions = [];
|
2021-06-29 15:11:58 +03:00
|
|
|
const { command, range } = this.getCurrentCommand(query, selection, force);
|
2018-06-19 13:52:48 +03:00
|
|
|
if (command) {
|
2021-06-29 15:11:58 +03:00
|
|
|
const joinedGroups = cli.getGroups().filter(({ myMembership }) => myMembership === 'join');
|
2018-06-19 13:52:48 +03:00
|
|
|
|
2021-06-29 15:11:58 +03:00
|
|
|
const groups = (await Promise.all(joinedGroups.map(async ({ groupId }) => {
|
2018-06-19 13:52:48 +03:00
|
|
|
try {
|
|
|
|
return FlairStore.getGroupProfileCached(cli, groupId);
|
2018-06-22 14:05:46 +03:00
|
|
|
} catch (e) { // if FlairStore failed, fall back to just groupId
|
2018-06-19 13:52:48 +03:00
|
|
|
return Promise.resolve({
|
2018-06-22 14:05:46 +03:00
|
|
|
name: '',
|
2018-06-19 13:52:48 +03:00
|
|
|
groupId,
|
2018-06-22 14:05:46 +03:00
|
|
|
avatarUrl: '',
|
|
|
|
shortDescription: '',
|
2018-06-19 13:52:48 +03:00
|
|
|
});
|
|
|
|
}
|
|
|
|
})));
|
|
|
|
|
|
|
|
this.matcher.setObjects(groups);
|
|
|
|
|
|
|
|
const matchedString = command[0];
|
2021-05-12 14:18:56 +03:00
|
|
|
completions = this.matcher.match(matchedString, limit);
|
2020-08-28 20:53:43 +03:00
|
|
|
completions = sortBy(completions, [
|
2018-06-19 13:52:48 +03:00
|
|
|
(c) => score(matchedString, c.groupId),
|
|
|
|
(c) => c.groupId.length,
|
2021-06-29 15:11:58 +03:00
|
|
|
]).map(({ avatarUrl, groupId, name }) => ({
|
2018-06-19 13:52:48 +03:00
|
|
|
completion: groupId,
|
|
|
|
suffix: ' ',
|
2019-09-23 15:39:19 +03:00
|
|
|
type: "community",
|
2018-06-19 13:52:48 +03:00
|
|
|
href: makeGroupPermalink(groupId),
|
|
|
|
component: (
|
2020-05-30 15:30:59 +03:00
|
|
|
<PillCompletion title={name} description={groupId}>
|
2020-08-29 03:11:08 +03:00
|
|
|
<BaseAvatar
|
|
|
|
name={name || groupId}
|
|
|
|
width={24}
|
|
|
|
height={24}
|
2021-03-04 05:06:46 +03:00
|
|
|
url={avatarUrl ? mediaFromMxc(avatarUrl).getSquareThumbnailHttp(24) : null} />
|
2020-05-30 15:30:59 +03:00
|
|
|
</PillCompletion>
|
2018-06-19 13:52:48 +03:00
|
|
|
),
|
|
|
|
range,
|
2020-08-29 03:11:08 +03:00
|
|
|
})).slice(0, 4);
|
2018-06-19 13:52:48 +03:00
|
|
|
}
|
|
|
|
return completions;
|
|
|
|
}
|
|
|
|
|
|
|
|
getName() {
|
|
|
|
return '💬 ' + _t('Communities');
|
|
|
|
}
|
|
|
|
|
2020-04-20 21:00:54 +03:00
|
|
|
renderCompletions(completions: React.ReactNode[]): React.ReactNode {
|
2019-09-30 16:04:39 +03:00
|
|
|
return (
|
|
|
|
<div
|
|
|
|
className="mx_Autocomplete_Completion_container_pill mx_Autocomplete_Completion_container_truncate"
|
|
|
|
role="listbox"
|
|
|
|
aria-label={_t("Community Autocomplete")}
|
|
|
|
>
|
|
|
|
{ completions }
|
|
|
|
</div>
|
|
|
|
);
|
2018-06-19 13:52:48 +03:00
|
|
|
}
|
|
|
|
}
|