2016-07-03 19:45:13 +03:00
|
|
|
import React from 'react';
|
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-07-03 19:45:13 +03:00
|
|
|
import {TextualCompletion} from './Components';
|
2016-06-12 14:32:46 +03:00
|
|
|
|
2016-06-21 13:16:20 +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-07-03 19:45:13 +03:00
|
|
|
keys: ['displayName', '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-07-03 19:45:13 +03:00
|
|
|
keys: ['displayName', 'userId'],
|
|
|
|
});
|
2016-06-12 14:32:46 +03:00
|
|
|
}
|
|
|
|
|
2016-06-21 13:16:20 +03:00
|
|
|
getCompletions(query: string, selection: {start: number, end: number}) {
|
2016-06-12 14:32:46 +03:00
|
|
|
let completions = [];
|
2016-07-03 19:45:13 +03:00
|
|
|
let {command, range} = this.getCurrentCommand(query, selection);
|
|
|
|
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-06-12 14:32:46 +03:00
|
|
|
return {
|
2016-07-03 19:45:13 +03:00
|
|
|
completion: user.userId,
|
|
|
|
component: (
|
|
|
|
<TextualCompletion
|
|
|
|
title={user.displayName || user.userId}
|
|
|
|
description={user.userId} />
|
|
|
|
),
|
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
|
|
|
}
|
|
|
|
return Q.when(completions);
|
|
|
|
}
|
|
|
|
|
|
|
|
getName() {
|
|
|
|
return 'Users';
|
|
|
|
}
|
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-06-12 14:32:46 +03:00
|
|
|
}
|