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
2018-05-16 17:47:32 -04:00

125 lines
3.6 KiB
TypeScript

import {Component, OnDestroy, OnInit, ViewChild} 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';
import {ModalDirective} from 'ngx-bootstrap/modal';
import {Config} from '../../../../common/config/public/Config';
import {NotificationService} from '../../model/notification.service';
import {DirectoryDTO} from '../../../../common/entities/DirectoryDTO';
import {I18n} from '@ngx-translate/i18n-polyfill';
@Component({
selector: 'app-gallery-share',
templateUrl: './share.gallery.component.html',
styleUrls: ['./share.gallery.component.css'],
})
export class GalleryShareComponent implements OnInit, OnDestroy {
@ViewChild('shareModal') public childModal: ModalDirective;
enabled = true;
url = '';
input = {
includeSubfolders: true,
valid: {
amount: 30,
type: ValidityTypes.Days
},
password: ''
};
currentDir = '';
sharing: SharingDTO = null;
contentSubscription = null;
passwordProtection = false;
ValidityTypes: any;
text = {
Yes: 'Yes',
No: 'No'
};
constructor(private _sharingService: ShareService,
public _galleryService: GalleryService,
private _notification: NotificationService,
public i18n: I18n) {
this.ValidityTypes = ValidityTypes;
this.text.Yes = i18n('Yes');
this.text.No = i18n('No');
}
ngOnInit() {
this.contentSubscription = this._galleryService.content.subscribe((content: ContentWrapper) => {
this.enabled = !!content.directory;
if (!this.enabled) {
return;
}
this.currentDir = Utils.concatUrls((<DirectoryDTO>content.directory).path, (<DirectoryDTO>content.directory).name);
});
this.passwordProtection = Config.Client.Sharing.passwordProtected;
}
ngOnDestroy() {
if (this.contentSubscription !== null) {
this.contentSubscription.unsubscribe();
}
}
calcValidity() {
switch (parseInt(this.input.valid.type.toString(), 10)) {
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 new Error('unknown type: ' + this.input.valid.type);
}
async update() {
if (this.sharing == null) {
return;
}
this.url = this.i18n('loading..');
this.sharing = await this._sharingService.updateSharing(this.currentDir,
this.sharing.id, this.input.includeSubfolders, this.input.password, this.calcValidity());
this.url = Config.Client.publicUrl + '/share/' + this.sharing.sharingKey;
}
async get() {
this.url = this.i18n('loading..');
this.sharing = await this._sharingService.createSharing(this.currentDir, this.input.includeSubfolders, this.calcValidity());
this.url = Config.Client.publicUrl + '/share/' + this.sharing.sharingKey;
}
async showModal() {
await this.get();
this.input.password = '';
this.childModal.show();
document.body.style.paddingRight = '0px';
}
onCopy() {
this._notification.success(this.i18n('Url has been copied to clipboard'));
}
public hideModal() {
this.childModal.hide();
this.sharing = null;
}
}
export enum ValidityTypes {
Minutes = 0, Hours = 1, Days = 2, Months = 3
}