2016-03-20 23:54:30 +08:00
|
|
|
///<reference path="../../browser.d.ts"/>
|
|
|
|
|
2016-05-09 23:04:56 +08:00
|
|
|
import {Injectable} from "@angular/core";
|
2016-05-01 00:01:54 +08:00
|
|
|
import {NetworkService} from "../model/network/network.service.ts";
|
2016-03-20 23:54:30 +08:00
|
|
|
import {Message} from "../../../common/entities/Message";
|
2016-05-10 01:14:33 +08:00
|
|
|
import {ContentWrapper} from "../../../common/entities/ConentWrapper";
|
2016-05-10 03:43:52 +08:00
|
|
|
import {Photo} from "../../../common/entities/Photo";
|
|
|
|
import {Directory} from "../../../common/entities/Directory";
|
2016-03-20 23:54:30 +08:00
|
|
|
|
|
|
|
@Injectable()
|
2016-05-09 23:04:56 +08:00
|
|
|
export class GalleryService {
|
2016-05-05 23:51:51 +08:00
|
|
|
|
2016-05-10 01:14:33 +08:00
|
|
|
public content:ContentWrapper;
|
2016-05-10 03:43:52 +08:00
|
|
|
private lastDirectory:Directory;
|
|
|
|
private searchId:any;
|
|
|
|
|
2016-05-09 23:04:56 +08:00
|
|
|
constructor(private _networkService:NetworkService) {
|
2016-05-10 01:14:33 +08:00
|
|
|
this.content = new ContentWrapper();
|
2016-03-20 23:54:30 +08:00
|
|
|
}
|
|
|
|
|
2016-05-10 01:14:33 +08:00
|
|
|
public getDirectory(directoryName:string):Promise<Message<ContentWrapper>> {
|
|
|
|
return this._networkService.getJson("/gallery/content/" + directoryName).then(
|
|
|
|
(message:Message<ContentWrapper>) => {
|
|
|
|
if (!message.error && message.result) {
|
2016-05-10 03:43:52 +08:00
|
|
|
message.result.directory.photos.forEach((photo:Photo) => {
|
|
|
|
photo.directory = message.result.directory;
|
|
|
|
});
|
|
|
|
this.lastDirectory = message.result.directory;
|
2016-05-10 01:14:33 +08:00
|
|
|
this.content = message.result;
|
|
|
|
}
|
|
|
|
return message;
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
2016-05-10 03:43:52 +08:00
|
|
|
//TODO: cache
|
2016-05-10 01:14:33 +08:00
|
|
|
public search(text:string):Promise<Message<ContentWrapper>> {
|
2016-05-10 16:59:12 +08:00
|
|
|
clearTimeout(this.searchId);
|
2016-05-10 03:43:52 +08:00
|
|
|
if (text === null || text === '') {
|
|
|
|
return Promise.resolve(new Message(null, null));
|
|
|
|
}
|
2016-05-10 01:14:33 +08:00
|
|
|
return this._networkService.getJson("/gallery/search/" + text).then(
|
|
|
|
(message:Message<ContentWrapper>) => {
|
|
|
|
if (!message.error && message.result) {
|
|
|
|
this.content = message.result;
|
|
|
|
}
|
|
|
|
return message;
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
2016-05-10 03:43:52 +08:00
|
|
|
//TODO: cache (together with normal search)
|
2016-05-10 01:14:33 +08:00
|
|
|
public instantSearch(text:string):Promise<Message<ContentWrapper>> {
|
2016-05-10 03:43:52 +08:00
|
|
|
if (text === null || text === '') {
|
|
|
|
this.content.directory = this.lastDirectory;
|
|
|
|
this.content.searchResult = null;
|
|
|
|
clearTimeout(this.searchId);
|
|
|
|
return Promise.resolve(new Message(null, null));
|
|
|
|
}
|
|
|
|
|
|
|
|
if (this.searchId != null) {
|
|
|
|
clearTimeout(this.searchId);
|
|
|
|
|
|
|
|
}
|
|
|
|
this.searchId = setTimeout(() => {
|
|
|
|
this.search(text);
|
|
|
|
this.searchId = null;
|
|
|
|
}, 3000); //TODO: set timeout to config
|
|
|
|
|
2016-05-10 01:14:33 +08:00
|
|
|
return this._networkService.getJson("/gallery/instant-search/" + text).then(
|
|
|
|
(message:Message<ContentWrapper>) => {
|
|
|
|
if (!message.error && message.result) {
|
|
|
|
this.content = message.result;
|
|
|
|
}
|
|
|
|
return message;
|
|
|
|
});
|
2016-05-10 03:43:52 +08:00
|
|
|
|
2016-03-20 23:54:30 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
}
|