2016-06-21 12:16:20 +02:00
|
|
|
import Q from 'q';
|
|
|
|
|
2016-06-01 13:24:21 +02:00
|
|
|
export default class AutocompleteProvider {
|
2016-06-21 12:16:20 +02:00
|
|
|
constructor(commandRegex?: RegExp, fuseOpts?: any) {
|
|
|
|
if(commandRegex) {
|
|
|
|
if(!commandRegex.global) {
|
|
|
|
throw new Error('commandRegex must have global flag set');
|
|
|
|
}
|
|
|
|
this.commandRegex = commandRegex;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Of the matched commands in the query, returns the first that contains or is contained by the selection, or null.
|
|
|
|
*/
|
|
|
|
getCurrentCommand(query: string, selection: {start: number, end: number}): ?Array<string> {
|
|
|
|
if(this.commandRegex == null)
|
|
|
|
return null;
|
|
|
|
|
|
|
|
let match = null;
|
|
|
|
while((match = this.commandRegex.exec(query)) != null) {
|
|
|
|
let matchStart = match.index,
|
|
|
|
matchEnd = matchStart + match[0].length;
|
|
|
|
|
|
|
|
console.log(match);
|
|
|
|
|
|
|
|
if(selection.start <= matchEnd && selection.end >= matchStart) {
|
|
|
|
return match;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
this.commandRegex.lastIndex = 0;
|
|
|
|
return null;
|
|
|
|
}
|
|
|
|
|
|
|
|
getCompletions(query: String, selection: {start: number, end: number}) {
|
|
|
|
return Q.when([]);
|
|
|
|
}
|
|
|
|
|
2016-06-12 13:32:46 +02:00
|
|
|
getName(): string {
|
|
|
|
return 'Default Provider';
|
|
|
|
}
|
2016-06-01 13:24:21 +02:00
|
|
|
}
|