mirror of
https://github.com/bpatrik/pigallery2.git
synced 2025-04-04 22:24:27 +02:00
Making autocomplete trigger for any positive number for km-from queries #587
This commit is contained in:
parent
9d0ea33059
commit
ef75247f79
@ -4,10 +4,7 @@ import { IAutoCompleteItem } from '../../../../../common/entities/AutoCompleteIt
|
||||
import {GalleryCacheService} from '../cache.gallery.service';
|
||||
import {SearchQueryParserService} from './search-query-parser.service';
|
||||
import {BehaviorSubject} from 'rxjs';
|
||||
import {
|
||||
SearchQueryTypes,
|
||||
TextSearchQueryTypes,
|
||||
} from '../../../../../common/entities/SearchQueryDTO';
|
||||
import {SearchQueryTypes, TextSearchQueryTypes,} from '../../../../../common/entities/SearchQueryDTO';
|
||||
import {QueryParams} from '../../../../../common/QueryParams';
|
||||
import {SearchQueryParser} from '../../../../../common/SearchQueryParser';
|
||||
|
||||
@ -40,12 +37,6 @@ export class AutoCompleteService {
|
||||
);
|
||||
}
|
||||
|
||||
for (let i = 0; i < 10; i++) {
|
||||
this.keywords.push(
|
||||
i + '-' + this.searchQueryParserService.keywords.kmFrom + ':'
|
||||
);
|
||||
}
|
||||
|
||||
this.keywords.push(
|
||||
this.searchQueryParserService.keywords.to +
|
||||
':' +
|
||||
@ -256,13 +247,25 @@ export class AutoCompleteService {
|
||||
return [];
|
||||
}
|
||||
}
|
||||
return this.keywords
|
||||
.filter((key) => key.startsWith(text.current.toLowerCase()))
|
||||
.map((key) => ({
|
||||
const generateMatch = (key: string) => ({
|
||||
text: key,
|
||||
queryHint: key,
|
||||
notSearchable: true,
|
||||
}));
|
||||
});
|
||||
|
||||
const ret = this.keywords
|
||||
.filter((key) => key.startsWith(text.current.toLowerCase()))
|
||||
.map(generateMatch);
|
||||
|
||||
// make KmFrom sensitive to all positive distances
|
||||
const starterNum = parseInt(text.current);
|
||||
if (starterNum > 0) {
|
||||
const key = starterNum + '-' + this.searchQueryParserService.keywords.kmFrom + ':';
|
||||
if (key.startsWith(text.current.toLowerCase())) {
|
||||
ret.push(generateMatch(key));
|
||||
}
|
||||
}
|
||||
return ret;
|
||||
}
|
||||
}
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user