bitwarden-estensione-browser/src/app/organizations/tools/export.component.ts

38 lines
1.2 KiB
TypeScript
Raw Normal View History

2018-07-05 20:40:53 +02:00
import { Component } from '@angular/core';
import { ActivatedRoute } from '@angular/router';
import { CryptoService } from 'jslib/abstractions/crypto.service';
import { ExportService } from 'jslib/abstractions/export.service';
import { I18nService } from 'jslib/abstractions/i18n.service';
import { PlatformUtilsService } from 'jslib/abstractions/platformUtils.service';
import { ExportComponent as BaseExportComponent } from '../../tools/export.component';
@Component({
selector: 'app-org-export',
templateUrl: '../../tools/export.component.html',
})
export class ExportComponent extends BaseExportComponent {
organizationId: string;
constructor(cryptoService: CryptoService, i18nService: I18nService,
2018-08-14 21:14:04 +02:00
platformUtilsService: PlatformUtilsService, exportService: ExportService,
private route: ActivatedRoute) {
super(cryptoService, i18nService, platformUtilsService, exportService);
2018-07-05 20:40:53 +02:00
}
ngOnInit() {
this.route.parent.parent.params.subscribe(async (params) => {
this.organizationId = params.organizationId;
});
}
getExportData() {
return this.exportService.getOrganizationExport(this.organizationId, 'csv');
}
getFileName() {
return super.getFileName('org');
}
}