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

89 lines
2.9 KiB
TypeScript
Raw Normal View History

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";
import {NetworkService} from "../model/network/network.service.ts";
2016-03-20 23:54:30 +08:00
import {Message} from "../../../common/entities/Message";
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-05-16 17:03:11 +08:00
import {SearchTypes} from "../../../common/entities/AutoCompleteItem";
2016-03-20 23:54:30 +08:00
@Injectable()
2016-05-09 23:04:56 +08:00
export class GalleryService {
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) {
this.content = new ContentWrapper();
2016-03-20 23:54:30 +08:00
}
public getDirectory(directoryName:string):Promise<Message<ContentWrapper>> {
2016-05-17 05:15:03 +08:00
this.content = new ContentWrapper();
return this._networkService.getJson("/gallery/content/" + directoryName).then(
(message:Message<ContentWrapper>) => {
if (!message.error && message.result) {
2016-05-17 05:15:03 +08:00
2016-05-10 03:43:52 +08:00
message.result.directory.photos.forEach((photo:Photo) => {
photo.directory = message.result.directory;
});
2016-05-17 05:15:03 +08:00
2016-05-10 03:43:52 +08:00
this.lastDirectory = message.result.directory;
this.content = message.result;
}
return message;
});
}
2016-05-10 03:43:52 +08:00
//TODO: cache
2016-05-16 17:03:11 +08:00
public search(text:string, type?:SearchTypes):Promise<Message<ContentWrapper>> {
clearTimeout(this.searchId);
2016-05-10 03:43:52 +08:00
if (text === null || text === '') {
return Promise.resolve(new Message(null, null));
}
2016-05-16 17:03:11 +08:00
2016-05-17 01:36:04 +08:00
let queryString = "/search/" + text;
2016-05-16 17:03:11 +08:00
if (type) {
queryString += "?type=" + type;
}
return this._networkService.getJson(queryString).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)
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-17 01:36:04 +08:00
return this._networkService.getJson("/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
}
}