1
0
mirror of https://github.com/Sonarr/Sonarr.git synced 2024-12-14 11:23:42 +02:00

Limit search input to first character matching when only one character is typed

This commit is contained in:
Mark McDowall 2019-04-27 20:14:44 -07:00
parent 2ee0ae1f9e
commit 5293349785
2 changed files with 28 additions and 2 deletions

View File

@ -154,8 +154,33 @@ class SeriesSearchInput extends Component {
}
onSuggestionsFetchRequested = ({ value }) => {
const fuse = new Fuse(this.props.series, fuseOptions);
const suggestions = fuse.search(value);
const { series } = this.props;
let suggestions = [];
if (value.length === 1) {
suggestions = series.reduce((acc, s) => {
if (s.firstCharacter === value.toLowerCase()) {
acc.push({
item: s,
indices: [
[0, 0]
],
matches: [
{
value: s.title,
key: 'title'
}
],
arrayIndex: 0
});
}
return acc;
}, []);
} else {
const fuse = new Fuse(series, fuseOptions);
suggestions = fuse.search(value);
}
this.setState({ suggestions });
}

View File

@ -26,6 +26,7 @@ function createCleanSeriesSelector() {
sortTitle,
images,
alternateTitles,
firstCharacter: title.charAt(0).toLowerCase(),
tags: tags.map((id) => {
return allTags.find((tag) => tag.id === id);
})