2017-06-01 17:18:06 +03:00
|
|
|
/*
|
|
|
|
Copyright 2017 Vector Creations Ltd
|
|
|
|
|
|
|
|
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';
|
|
|
|
import Q from 'q';
|
2016-06-21 02:35:23 +03:00
|
|
|
import Fuse from 'fuse.js';
|
2016-08-17 14:57:19 +03:00
|
|
|
import {PillCompletion} from './Components';
|
|
|
|
import sdk from '../index';
|
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
|
|
|
|
2016-06-20 11:22:55 +03:00
|
|
|
let instance = null;
|
|
|
|
|
2016-06-12 14:32:46 +03:00
|
|
|
export default class UserProvider extends AutocompleteProvider {
|
|
|
|
constructor() {
|
2016-06-21 13:16:20 +03:00
|
|
|
super(USER_REGEX, {
|
2016-08-02 07:30:12 +03:00
|
|
|
keys: ['name', 'userId'],
|
2016-06-21 13:16:20 +03:00
|
|
|
});
|
2016-06-20 11:22:55 +03:00
|
|
|
this.users = [];
|
2016-06-21 02:35:23 +03:00
|
|
|
this.fuse = new Fuse([], {
|
2016-08-02 07:30:12 +03:00
|
|
|
keys: ['name', 'userId'],
|
2016-07-03 19:45:13 +03:00
|
|
|
});
|
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');
|
|
|
|
|
2016-06-12 14:32:46 +03:00
|
|
|
let completions = [];
|
2016-09-13 13:11:52 +03:00
|
|
|
let {command, range} = this.getCurrentCommand(query, selection, force);
|
2016-07-03 19:45:13 +03:00
|
|
|
if (command) {
|
2016-06-21 02:35:23 +03:00
|
|
|
this.fuse.set(this.users);
|
2016-06-21 13:16:20 +03:00
|
|
|
completions = this.fuse.search(command[0]).map(user => {
|
2016-09-13 14:59:17 +03:00
|
|
|
let displayName = (user.name || user.userId || '').replace(' (IRC)', ''); // FIXME when groups are done
|
|
|
|
let completion = displayName;
|
|
|
|
if (range.start === 0) {
|
|
|
|
completion += ': ';
|
|
|
|
} else {
|
|
|
|
completion += ' ';
|
|
|
|
}
|
2016-06-12 14:32:46 +03:00
|
|
|
return {
|
2016-09-13 14:59:17 +03:00
|
|
|
completion,
|
2016-07-03 19:45:13 +03:00
|
|
|
component: (
|
2016-08-17 14:57:19 +03:00
|
|
|
<PillCompletion
|
|
|
|
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
|
|
|
};
|
2016-06-21 02:35:23 +03:00
|
|
|
}).slice(0, 4);
|
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
|
|
|
|
|
|
|
setUserList(users) {
|
|
|
|
this.users = users;
|
|
|
|
}
|
|
|
|
|
|
|
|
static getInstance(): UserProvider {
|
2016-07-03 19:45:13 +03:00
|
|
|
if (instance == null) {
|
2016-06-20 11:22:55 +03:00
|
|
|
instance = new UserProvider();
|
2016-07-03 19:45:13 +03:00
|
|
|
}
|
2016-06-20 11:22:55 +03:00
|
|
|
return instance;
|
|
|
|
}
|
2016-08-17 14:57:19 +03:00
|
|
|
|
|
|
|
renderCompletions(completions: [React.Component]): ?React.Component {
|
2016-08-22 22:06:31 +03:00
|
|
|
return <div className="mx_Autocomplete_Completion_container_pill">
|
|
|
|
{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
|
|
|
}
|