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

87 lines
2.5 KiB
TypeScript
Raw Normal View History

2017-07-04 01:17:49 +08:00
import {Component, OnDestroy, OnInit} from "@angular/core";
import {Utils} from "../../../../common/Utils";
import {ShareService} from "../share.service";
import {GalleryService} from "../gallery.service";
import {ContentWrapper} from "../../../../common/entities/ConentWrapper";
import {SharingDTO} from "../../../../common/entities/SharingDTO";
@Component({
selector: 'gallery-share',
templateUrl: './share.gallery.component.html',
styleUrls: ['./share.gallery.component.css'],
})
export class GalleryShareComponent implements OnInit, OnDestroy {
enabled: boolean = true;
url: string = "";
input = {
includeSubfolders: true,
valid: {
amount: 30,
type: ValidityTypes.Days
}
};
validityTypes = [];
currentDir: string = "";
sharing: SharingDTO;
contentSubscription = null;
constructor(private _sharingService: ShareService, public _galleryService: GalleryService) {
this.validityTypes = Utils.enumToArray(ValidityTypes);
}
ngOnInit() {
this.contentSubscription = this._galleryService.content.subscribe((content: ContentWrapper) => {
this.enabled = !!content.directory;
if (!this.enabled) {
return;
}
this.currentDir = Utils.concatUrls(content.directory.path, content.directory.name);
});
}
ngOnDestroy() {
if (this.contentSubscription !== null) {
this.contentSubscription.unsubscribe();
}
}
calcValidity() {
switch (parseInt(this.input.valid.type.toString())) {
case ValidityTypes.Minutes:
return this.input.valid.amount * 1000 * 60;
case ValidityTypes.Hours:
return this.input.valid.amount * 1000 * 60 * 60;
case ValidityTypes.Days:
return this.input.valid.amount * 1000 * 60 * 60 * 24;
case ValidityTypes.Months:
return this.input.valid.amount * 1000 * 60 * 60 * 24 * 30;
}
throw "unknown type: " + this.input.valid.type;
}
async update() {
this.url = "loading..";
this.sharing = await this._sharingService.updateSharing(this.currentDir, this.sharing.id, this.input.includeSubfolders, this.calcValidity());
console.log(this.sharing);
this.url = location.origin + "/share/" + this.sharing.sharingKey
}
async get() {
this.url = "loading..";
this.sharing = await this._sharingService.getSharing(this.currentDir, this.input.includeSubfolders, this.calcValidity());
console.log(this.sharing);
this.url = location.origin + "/share/" + this.sharing.sharingKey
}
}
export enum ValidityTypes{
Minutes = 0, Hours = 1, Days = 2, Months = 3
}