2017-02-10 18:04:52 +01:00
|
|
|
//@flow
|
2017-06-23 19:30:16 +02:00
|
|
|
/*
|
|
|
|
Copyright 2017 Aviral Dasgupta
|
|
|
|
|
|
|
|
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.
|
|
|
|
*/
|
2017-02-10 18:04:52 +01:00
|
|
|
|
|
|
|
import _at from 'lodash/at';
|
|
|
|
import _flatMap from 'lodash/flatMap';
|
|
|
|
import _sortBy from 'lodash/sortBy';
|
|
|
|
import _sortedUniq from 'lodash/sortedUniq';
|
|
|
|
import _keys from 'lodash/keys';
|
|
|
|
|
|
|
|
class KeyMap {
|
|
|
|
keys: Array<String>;
|
|
|
|
objectMap: {[String]: Array<Object>};
|
|
|
|
priorityMap = new Map();
|
|
|
|
}
|
|
|
|
|
|
|
|
export default class QueryMatcher {
|
|
|
|
/**
|
2017-06-23 18:35:07 +02:00
|
|
|
* @param {object[]} objects the objects to perform a match on
|
|
|
|
* @param {string[]} keys an array of keys within each object to match on
|
2017-02-10 18:04:52 +01:00
|
|
|
* Keys can refer to object properties by name and as in JavaScript (for nested properties)
|
|
|
|
*
|
|
|
|
* To use, simply presort objects by required criteria, run through this function and create a QueryMatcher with the
|
|
|
|
* resulting KeyMap.
|
|
|
|
*
|
|
|
|
* TODO: Handle arrays and objects (Fuse did this, RoomProvider uses it)
|
2017-06-23 18:35:07 +02:00
|
|
|
* @return {KeyMap}
|
2017-02-10 18:04:52 +01:00
|
|
|
*/
|
|
|
|
static valuesToKeyMap(objects: Array<Object>, keys: Array<String>): KeyMap {
|
|
|
|
const keyMap = new KeyMap();
|
|
|
|
const map = {};
|
|
|
|
|
|
|
|
objects.forEach((object, i) => {
|
|
|
|
const keyValues = _at(object, keys);
|
|
|
|
for (const keyValue of keyValues) {
|
|
|
|
if (!map.hasOwnProperty(keyValue)) {
|
|
|
|
map[keyValue] = [];
|
|
|
|
}
|
|
|
|
map[keyValue].push(object);
|
|
|
|
}
|
|
|
|
keyMap.priorityMap.set(object, i);
|
|
|
|
});
|
|
|
|
|
|
|
|
keyMap.objectMap = map;
|
|
|
|
keyMap.keys = _keys(map);
|
|
|
|
return keyMap;
|
|
|
|
}
|
|
|
|
|
|
|
|
constructor(objects: Array<Object>, options: {[Object]: Object} = {}) {
|
|
|
|
this.options = options;
|
|
|
|
this.keys = options.keys;
|
|
|
|
this.setObjects(objects);
|
2017-06-29 12:29:55 +02:00
|
|
|
|
|
|
|
// By default, we remove any non-alphanumeric characters ([^A-Za-z0-9_]) from the
|
|
|
|
// query and the value being queried before matching
|
|
|
|
if (this.options.shouldMatchWordsOnly === undefined) {
|
|
|
|
this.options.shouldMatchWordsOnly = true;
|
|
|
|
}
|
2017-02-10 18:04:52 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
setObjects(objects: Array<Object>) {
|
|
|
|
this.keyMap = QueryMatcher.valuesToKeyMap(objects, this.keys);
|
|
|
|
}
|
|
|
|
|
|
|
|
match(query: String): Array<Object> {
|
2017-06-29 12:29:55 +02:00
|
|
|
query = query.toLowerCase();
|
|
|
|
if (this.options.shouldMatchWordsOnly) {
|
|
|
|
query = query.replace(/[^\w]/g, '');
|
|
|
|
}
|
2017-07-04 14:53:06 +02:00
|
|
|
const results = [];
|
|
|
|
this.keyMap.keys.forEach((key) => {
|
2017-06-29 12:29:55 +02:00
|
|
|
let resultKey = key.toLowerCase();
|
|
|
|
if (this.options.shouldMatchWordsOnly) {
|
|
|
|
resultKey = resultKey.replace(/[^\w]/g, '');
|
|
|
|
}
|
2017-07-04 14:53:06 +02:00
|
|
|
const index = resultKey.indexOf(query);
|
|
|
|
if (index !== -1) {
|
|
|
|
results.push({key, index});
|
|
|
|
}
|
|
|
|
});
|
|
|
|
|
|
|
|
return _sortedUniq(_flatMap(_sortBy(results, (candidate) => {
|
|
|
|
return candidate.index;
|
|
|
|
}).map((candidate) => {
|
|
|
|
// return an array of objects (those given to setObjects) that have the given
|
|
|
|
// key as a property.
|
|
|
|
return this.keyMap.objectMap[candidate.key];
|
|
|
|
})));
|
2017-02-10 18:04:52 +01:00
|
|
|
}
|
|
|
|
}
|