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

36 lines
999 B
TypeScript
Raw Normal View History

2017-03-18 07:11:53 +08:00
import {Component, Input, OnChanges} from "@angular/core";
2016-12-28 03:55:51 +08:00
import {DirectoryDTO} from "../../../../common/entities/DirectoryDTO";
2016-12-27 06:36:38 +08:00
import {RouterLink} from "@angular/router";
2016-03-27 02:24:12 +08:00
import {Utils} from "../../../../common/Utils";
2017-03-18 07:11:53 +08:00
import {Photo} from "../Photo";
2016-03-21 03:05:51 +08:00
@Component({
selector: 'gallery-directory',
2016-03-26 23:25:48 +08:00
templateUrl: 'app/gallery/directory/directory.gallery.component.html',
2017-03-18 07:11:53 +08:00
styleUrls: ['app/gallery/directory/directory.gallery.component.css'],
2016-12-27 06:36:38 +08:00
providers: [RouterLink],
2016-03-21 03:05:51 +08:00
})
2017-03-18 07:11:53 +08:00
export class GalleryDirectoryComponent implements OnChanges {
2016-12-28 03:55:51 +08:00
@Input() directory: DirectoryDTO;
2017-03-18 07:11:53 +08:00
photo: Photo = null;
2016-05-09 23:04:56 +08:00
2016-03-21 03:05:51 +08:00
constructor() {
}
2017-03-18 07:11:53 +08:00
ngOnChanges() {
setImmediate(() => {
if (this.directory.photos.length > 0) {
this.photo = new Photo(this.directory.photos[0], 100, 100);
console.log(this.photo);
}
});
}
2016-05-09 23:04:56 +08:00
getDirectoryPath() {
return Utils.concatUrls(this.directory.path, this.directory.name);
2016-03-27 02:24:12 +08:00
}
2016-05-09 23:04:56 +08:00
2016-03-21 03:05:51 +08:00
}