2016-05-04 03:04:57 +08:00
|
|
|
///<reference path="../../../browser.d.ts"/>
|
|
|
|
|
2016-05-04 23:20:21 +08:00
|
|
|
import {Component} from "@angular/core";
|
2016-05-04 03:04:57 +08:00
|
|
|
import {AutoCompleteService} from "./autocomplete.service";
|
2016-05-05 00:34:54 +08:00
|
|
|
import {AutoCompleteItem} from "../../../../common/entities/AutoCompleteItem";
|
|
|
|
import {Message} from "../../../../common/entities/Message";
|
2016-05-10 03:43:52 +08:00
|
|
|
import {GalleryService} from "../gallery.service";
|
|
|
|
import {FORM_DIRECTIVES} from "@angular/common";
|
2016-05-04 03:04:57 +08:00
|
|
|
|
|
|
|
@Component({
|
|
|
|
selector: 'gallery-search',
|
|
|
|
templateUrl: 'app/gallery/search/search.gallery.component.html',
|
|
|
|
styleUrls: ['app/gallery/search/search.gallery.component.css'],
|
2016-05-10 03:43:52 +08:00
|
|
|
providers: [AutoCompleteService],
|
|
|
|
directives: [FORM_DIRECTIVES]
|
2016-05-04 03:04:57 +08:00
|
|
|
})
|
|
|
|
export class GallerySearchComponent {
|
2016-05-09 23:04:56 +08:00
|
|
|
|
2016-05-05 00:34:54 +08:00
|
|
|
autoCompleteItems:Array<AutoCompleteRenderItem> = [];
|
2016-05-10 03:43:52 +08:00
|
|
|
private searchText:string = "";
|
2016-05-09 23:04:56 +08:00
|
|
|
|
2016-05-10 03:43:52 +08:00
|
|
|
constructor(private _autoCompleteService:AutoCompleteService, private _galleryService:GalleryService) {
|
2016-05-04 03:04:57 +08:00
|
|
|
}
|
|
|
|
|
2016-05-10 03:43:52 +08:00
|
|
|
onSearchChange(event:KeyboardEvent) {
|
2016-05-10 16:59:12 +08:00
|
|
|
|
2016-05-09 23:04:56 +08:00
|
|
|
let searchText = (<HTMLInputElement>event.target).value;
|
2016-05-10 16:59:12 +08:00
|
|
|
this.autocomplete(searchText);
|
2016-05-10 03:43:52 +08:00
|
|
|
|
|
|
|
this._galleryService.instantSearch(searchText);
|
2016-05-04 03:04:57 +08:00
|
|
|
}
|
|
|
|
|
2016-05-10 03:43:52 +08:00
|
|
|
public onSearch() {
|
|
|
|
this._galleryService.search(this.searchText);
|
|
|
|
}
|
2016-05-10 16:59:12 +08:00
|
|
|
|
|
|
|
public search(item:AutoCompleteItem) {
|
|
|
|
console.log("clicked");
|
|
|
|
this.searchText = item.text;
|
|
|
|
this.onSearch();
|
|
|
|
}
|
|
|
|
|
2016-05-09 23:04:56 +08:00
|
|
|
private showSuggestions(suggestions:Array<AutoCompleteItem>, searchText:string) {
|
2016-05-05 00:57:31 +08:00
|
|
|
this.emptyAutoComplete();
|
2016-05-09 23:04:56 +08:00
|
|
|
suggestions.forEach((item)=> {
|
2016-05-10 16:59:12 +08:00
|
|
|
let renderItem = new AutoCompleteRenderItem(item.text, searchText);
|
2016-05-05 00:34:54 +08:00
|
|
|
this.autoCompleteItems.push(renderItem);
|
2016-05-04 03:04:57 +08:00
|
|
|
});
|
|
|
|
}
|
2016-05-09 23:04:56 +08:00
|
|
|
|
|
|
|
public onFocusLost(event) {
|
2016-05-05 00:57:31 +08:00
|
|
|
this.autoCompleteItems = [];
|
|
|
|
}
|
2016-05-04 03:04:57 +08:00
|
|
|
|
2016-05-10 16:59:12 +08:00
|
|
|
public onFocus(event) {
|
|
|
|
this.autocomplete(this.searchText);
|
|
|
|
}
|
|
|
|
|
2016-05-09 23:04:56 +08:00
|
|
|
private emptyAutoComplete() {
|
|
|
|
this.autoCompleteItems = [];
|
|
|
|
}
|
2016-05-04 03:04:57 +08:00
|
|
|
|
2016-05-10 16:59:12 +08:00
|
|
|
private autocomplete(searchText:string) {
|
|
|
|
if (searchText.trim().length > 0) {
|
|
|
|
this._autoCompleteService.autoComplete(searchText).then((message:Message<Array<AutoCompleteItem>>) => {
|
|
|
|
if (message.error) {
|
|
|
|
//TODO: implement
|
|
|
|
console.error(message.error);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
this.showSuggestions(message.result, searchText);
|
|
|
|
});
|
|
|
|
} else {
|
|
|
|
this.emptyAutoComplete();
|
|
|
|
}
|
|
|
|
}
|
2016-05-04 03:04:57 +08:00
|
|
|
|
|
|
|
}
|
|
|
|
|
2016-05-09 23:04:56 +08:00
|
|
|
class AutoCompleteRenderItem {
|
2016-05-10 16:59:12 +08:00
|
|
|
public preText:string = "";
|
|
|
|
public highLightText:string = "";
|
|
|
|
public postText:string = "";
|
2016-05-09 23:04:56 +08:00
|
|
|
|
2016-05-10 16:59:12 +08:00
|
|
|
constructor(public text:string, searchText:string) {
|
|
|
|
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;
|
|
|
|
}
|
2016-05-04 03:04:57 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|