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-09 23:04:56 +08:00
|
|
|
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-09 23:04:56 +08:00
|
|
|
constructor(private _networkService:NetworkService) {
|
2016-03-20 23:54:30 +08:00
|
|
|
}
|
|
|
|
|
2016-05-09 23:04:56 +08:00
|
|
|
public getDirectory(directoryName:string):Promise<Message<Directory>> {
|
|
|
|
return this._networkService.getJson("/gallery/content/" + directoryName);
|
2016-03-20 23:54:30 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
}
|