1
0
mirror of https://github.com/xuthus83/pigallery2.git synced 2024-11-03 21:04:03 +08:00
pigallery2/frontend/app/gallery/search/search.gallery.component.ts

151 lines
3.9 KiB
TypeScript
Raw Normal View History

2016-05-04 23:20:21 +08:00
import {Component} from "@angular/core";
import {AutoCompleteService} from "./autocomplete.service";
2016-05-16 17:03:11 +08:00
import {AutoCompleteItem, SearchTypes} from "../../../../common/entities/AutoCompleteItem";
2017-06-04 21:25:08 +08:00
import {ActivatedRoute, Params, RouterLink} from "@angular/router";
2016-05-10 03:43:52 +08:00
import {GalleryService} from "../gallery.service";
2017-06-04 21:25:08 +08:00
import {Config} from "../../../../common/config/public/Config";
@Component({
selector: 'gallery-search',
templateUrl: './search.gallery.component.html',
styleUrls: ['./search.gallery.component.css'],
providers: [AutoCompleteService, RouterLink]
})
export class GallerySearchComponent {
2016-05-09 23:04:56 +08:00
autoCompleteItems: Array<AutoCompleteRenderItem> = [];
public searchText: string = "";
private cache = {
lastAutocomplete: "",
lastInstantSearch: ""
};
2016-05-09 23:04:56 +08:00
SearchTypes: any = [];
2016-05-16 17:03:11 +08:00
2017-07-04 01:17:49 +08:00
private subscription = null;
constructor(private _autoCompleteService: AutoCompleteService,
private _galleryService: GalleryService,
private _route: ActivatedRoute) {
2016-05-16 17:03:11 +08:00
this.SearchTypes = SearchTypes;
2016-12-27 06:36:38 +08:00
2017-07-04 01:17:49 +08:00
this.subscription = this._route.params.subscribe((params: Params) => {
let searchText = params['searchText'];
if (searchText && searchText != "") {
this.searchText = searchText;
}
});
}
2017-07-04 01:17:49 +08:00
ngOnDestroy() {
if (this.subscription !== null) {
this.subscription.unsubscribe()
}
}
onSearchChange(event: KeyboardEvent) {
2016-05-10 03:43:52 +08:00
let searchText = (<HTMLInputElement>event.target).value.trim();
if (Config.Client.Search.autocompleteEnabled && this.cache.lastAutocomplete != searchText) {
this.cache.lastAutocomplete = searchText;
this.autocomplete(searchText);
}
if (Config.Client.Search.instantSearchEnabled && this.cache.lastInstantSearch != searchText) {
this.cache.lastInstantSearch = searchText;
this._galleryService.instantSearch(searchText);
2016-05-10 03:43:52 +08:00
}
}
public onSearch() {
if (Config.Client.Search.searchEnabled) {
this._galleryService.search(this.searchText);
}
}
public search(item: AutoCompleteItem) {
console.log("clicked");
this.searchText = item.text;
this.onSearch();
}
2016-05-09 23:04:56 +08:00
mouseOverAutoComplete: boolean = false;
2016-12-27 06:36:38 +08:00
public setMouseOverAutoComplete(value: boolean) {
this.mouseOverAutoComplete = value;
}
public onFocusLost() {
if (this.mouseOverAutoComplete == false) {
this.autoCompleteItems = [];
}
}
public onFocus() {
this.autocomplete(this.searchText);
}
private emptyAutoComplete() {
this.autoCompleteItems = [];
}
2017-07-04 01:17:49 +08:00
private async autocomplete(searchText: string) {
if (!Config.Client.Search.autocompleteEnabled) {
return
}
2017-07-08 06:18:24 +08:00
if (searchText.trim() == ".") {
return;
}
2017-07-04 01:17:49 +08:00
if (searchText.trim().length > 0) {
2017-07-04 01:17:49 +08:00
try {
const items = await this._autoCompleteService.autoComplete(searchText);
this.showSuggestions(items, searchText);
} catch (error) {
console.error(error);
}
} else {
this.emptyAutoComplete();
}
}
private showSuggestions(suggestions: Array<AutoCompleteItem>, searchText: string) {
this.emptyAutoComplete();
suggestions.forEach((item: AutoCompleteItem) => {
let renderItem = new AutoCompleteRenderItem(item.text, searchText, item.type);
this.autoCompleteItems.push(renderItem);
});
}
public setSearchText(searchText: string) {
this.searchText = searchText;
}
2016-05-16 17:03:11 +08:00
}
2016-05-09 23:04:56 +08:00
class AutoCompleteRenderItem {
public preText: string = "";
public highLightText: string = "";
public postText: string = "";
public type: SearchTypes;
constructor(public text: string, searchText: string, type: SearchTypes) {
let preIndex = text.toLowerCase().indexOf(searchText.toLowerCase());
if (preIndex > -1) {
this.preText = text.substring(0, preIndex);
this.highLightText = text.substring(preIndex, preIndex + searchText.length);
this.postText = text.substring(preIndex + searchText.length);
} else {
this.postText = text;
}
this.type = type;
}
}