1
0
mirror of https://github.com/bpatrik/pigallery2.git synced 2024-12-25 02:04:15 +02:00
pigallery2/frontend/app/gallery/directory/directory.gallery.component.ts

24 lines
575 B
TypeScript
Raw Normal View History

2016-05-09 17:04:56 +02:00
import {Component, Input} from "@angular/core";
2016-03-20 21:05:51 +02:00
import {Directory} from "../../../../common/entities/Directory";
2016-12-27 00:36:38 +02:00
import {RouterLink} from "@angular/router";
2016-03-26 20:24:12 +02:00
import {Utils} from "../../../../common/Utils";
2016-03-20 21:05:51 +02:00
@Component({
selector: 'gallery-directory',
2016-03-26 17:25:48 +02:00
templateUrl: 'app/gallery/directory/directory.gallery.component.html',
2016-12-27 00:36:38 +02:00
providers: [RouterLink],
2016-03-20 21:05:51 +02:00
})
2016-05-09 17:04:56 +02:00
export class GalleryDirectoryComponent {
@Input() directory:Directory;
2016-03-20 21:05:51 +02:00
constructor() {
}
2016-05-09 17:04:56 +02:00
getDirectoryPath() {
return Utils.concatUrls(this.directory.path, this.directory.name);
2016-03-26 20:24:12 +02:00
}
2016-05-09 17:04:56 +02:00
2016-03-20 21:05:51 +02:00
}