parent
963c832241
commit
624ee1daa4
@ -0,0 +1,62 @@
|
|||||||
|
import Fuse from 'fuse.js';
|
||||||
|
|
||||||
|
const fuseOptions = {
|
||||||
|
shouldSort: true,
|
||||||
|
includeMatches: true,
|
||||||
|
threshold: 0.3,
|
||||||
|
location: 0,
|
||||||
|
distance: 100,
|
||||||
|
maxPatternLength: 32,
|
||||||
|
minMatchCharLength: 1,
|
||||||
|
keys: [
|
||||||
|
'artistName',
|
||||||
|
'tags.label'
|
||||||
|
]
|
||||||
|
};
|
||||||
|
|
||||||
|
function getSuggestions(artists, value) {
|
||||||
|
const limit = 10;
|
||||||
|
let suggestions = [];
|
||||||
|
|
||||||
|
if (value.length === 1) {
|
||||||
|
for (let i = 0; i < artists.length; i++) {
|
||||||
|
const s = artists[i];
|
||||||
|
if (s.firstCharacter === value.toLowerCase()) {
|
||||||
|
suggestions.push({
|
||||||
|
item: artists[i],
|
||||||
|
indices: [
|
||||||
|
[0, 0]
|
||||||
|
],
|
||||||
|
matches: [
|
||||||
|
{
|
||||||
|
value: s.title,
|
||||||
|
key: 'title'
|
||||||
|
}
|
||||||
|
],
|
||||||
|
arrayIndex: 0
|
||||||
|
});
|
||||||
|
if (suggestions.length > limit) {
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
} else {
|
||||||
|
const fuse = new Fuse(artists, fuseOptions);
|
||||||
|
suggestions = fuse.search(value, { limit });
|
||||||
|
}
|
||||||
|
|
||||||
|
return suggestions;
|
||||||
|
}
|
||||||
|
|
||||||
|
self.addEventListener('message', (e) => {
|
||||||
|
if (!e) {
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
const {
|
||||||
|
artists,
|
||||||
|
value
|
||||||
|
} = e.data;
|
||||||
|
|
||||||
|
self.postMessage(getSuggestions(artists, value));
|
||||||
|
});
|
@ -0,0 +1,2 @@
|
|||||||
|
/* eslint no-undef: 0 */
|
||||||
|
__webpack_public_path__ = `${window.Lidarr.urlBase}/`;
|
Loading…
Reference in new issue