/* Copyright 2015 OpenMarket 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. */ const DELAY_TIME_MS = 500; const KEY_TAB = 9; const KEY_SHIFT = 16; // word boundary -> 1 or more non-whitespace chars (group) -> end of line const MATCH_REGEX = /\b(\S+)$/; class TabComplete { constructor(opts) { opts.startingWordSuffix = opts.startingWordSuffix || ""; opts.wordSuffix = opts.wordSuffix || ""; opts.allowLooping = opts.allowLooping || false; this.opts = opts; this.completing = false; this.list = []; // full set of tab-completable things this.matchedList = []; // subset of completable things to loop over this.currentIndex = 0; // index in matchedList currently this.originalText = null; // original input text when tab was first hit this.textArea = opts.textArea; // DOMElement this.isFirstWord = false; // true if you tab-complete on the first word } /** * @param {TabComplete.Entry[]} completeList */ setCompletionList(completeList) { this.list = completeList; } /** * @param {DOMElement} */ setTextArea(textArea) { this.textArea = textArea; } /** * @return {Boolean} */ isTabCompleting() { return this.completing; } stopTabCompleting() { this.completing = false; this.currentIndex = 0; this._notifyStateChange(); } /** * @param {Number} numAheadToPeek Return *up to* this many elements. * @return {TabComplete.Entry[]} */ peek(numAheadToPeek) { if (this.matchedList.length === 0) { return []; } var peekList = []; // return the current match item and then one with an index higher, and // so on until we've reached the requested limit. If we hit the end of // the list of options we're done. for (var i = 0; i < numAheadToPeek; i++) { var nextIndex; if (this.opts.allowLooping) { nextIndex = (this.currentIndex + i) % this.matchedList.length; } else { nextIndex = this.currentIndex + i; if (nextIndex === this.matchedList.length) { break; } } peekList.push(this.matchedList[nextIndex]); } // console.log("Peek list(%s): %s", numAheadToPeek, JSON.stringify(peekList)); return peekList; } /** * @param {DOMEvent} e * @return {Boolean} True if the tab complete state changed as a result of * this event. */ onKeyDown(ev) { if (ev.keyCode !== KEY_TAB) { if (ev.keyCode !== KEY_SHIFT && this.completing) { // they're resuming typing; reset tab complete state vars. this.stopTabCompleting(); return true; } return false; } if (!this.textArea) { console.error("onKeyDown called before a