2016-03-14 20:20:29 +08:00
|
|
|
///<reference path="../../browser.d.ts"/>
|
2016-03-13 18:28:29 +08:00
|
|
|
|
2016-05-09 23:04:56 +08:00
|
|
|
import {Component, OnInit} from "@angular/core";
|
2016-05-01 00:01:54 +08:00
|
|
|
import {AuthenticationService} from "../model/network/authentication.service.ts";
|
2016-05-09 23:04:56 +08:00
|
|
|
import {Router, RouteParams} from "@angular/router-deprecated";
|
2016-03-20 23:54:30 +08:00
|
|
|
import {GalleryService} from "./gallery.service";
|
|
|
|
import {Directory} from "../../../common/entities/Directory";
|
|
|
|
import {Message} from "../../../common/entities/Message";
|
2016-03-21 03:05:51 +08:00
|
|
|
import {GalleryDirectoryComponent} from "./directory/directory.gallery.component";
|
2016-04-09 21:19:25 +08:00
|
|
|
import {GalleryGridComponent} from "./grid/grid.gallery.component";
|
2016-04-26 21:10:05 +08:00
|
|
|
import {FrameComponent} from "../frame/frame.component";
|
2016-05-01 00:01:54 +08:00
|
|
|
import {GalleryLightboxComponent} from "./lightbox/lightbox.gallery.component";
|
2016-05-04 03:04:57 +08:00
|
|
|
import {GallerySearchComponent} from "./search/search.gallery.component";
|
2016-03-13 18:28:29 +08:00
|
|
|
|
|
|
|
@Component({
|
|
|
|
selector: 'gallery',
|
2016-03-20 23:54:30 +08:00
|
|
|
templateUrl: 'app/gallery/gallery.component.html',
|
2016-04-19 03:27:15 +08:00
|
|
|
styleUrls: ['app/gallery/gallery.component.css'],
|
2016-05-09 23:04:56 +08:00
|
|
|
directives: [GalleryGridComponent,
|
|
|
|
GalleryDirectoryComponent,
|
|
|
|
GalleryLightboxComponent,
|
|
|
|
FrameComponent,
|
|
|
|
GallerySearchComponent]
|
2016-03-13 18:28:29 +08:00
|
|
|
})
|
2016-05-09 23:04:56 +08:00
|
|
|
export class GalleryComponent implements OnInit {
|
2016-03-19 16:58:27 +08:00
|
|
|
|
2016-05-05 00:57:31 +08:00
|
|
|
currentDirectory:Directory = new Directory();
|
2016-05-09 23:04:56 +08:00
|
|
|
|
|
|
|
|
2016-03-20 23:54:30 +08:00
|
|
|
constructor(private _galleryService:GalleryService,
|
2016-05-09 23:04:56 +08:00
|
|
|
private _params:RouteParams,
|
|
|
|
private _authService:AuthenticationService,
|
|
|
|
private _router:Router) {
|
2016-03-19 16:58:27 +08:00
|
|
|
}
|
|
|
|
|
2016-05-09 23:04:56 +08:00
|
|
|
ngOnInit() {
|
2016-03-19 16:58:27 +08:00
|
|
|
if (!this._authService.isAuthenticated()) {
|
|
|
|
this._router.navigate(['Login']);
|
2016-03-20 23:54:30 +08:00
|
|
|
return;
|
2016-03-19 16:58:27 +08:00
|
|
|
}
|
2016-05-09 23:04:56 +08:00
|
|
|
|
2016-04-10 00:06:29 +08:00
|
|
|
let directoryName = this._params.get('directory');
|
|
|
|
console.log(this._params);
|
|
|
|
console.log(directoryName);
|
2016-03-20 23:54:30 +08:00
|
|
|
directoryName = directoryName ? directoryName : "";
|
2016-05-09 23:04:56 +08:00
|
|
|
this._galleryService.getDirectory(directoryName).then((message:Message<Directory>) => {
|
|
|
|
if (message.error) {
|
2016-03-20 23:54:30 +08:00
|
|
|
//TODO: implement
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2016-03-26 23:25:48 +08:00
|
|
|
this.currentDirectory = message.result;
|
2016-03-20 23:54:30 +08:00
|
|
|
});
|
2016-03-19 16:58:27 +08:00
|
|
|
}
|
2016-05-01 00:01:54 +08:00
|
|
|
|
2016-04-26 21:10:05 +08:00
|
|
|
|
2016-03-13 18:28:29 +08:00
|
|
|
}
|
|
|
|
|