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

51 lines
2.0 KiB
TypeScript
Raw Normal View History

2018-07-06 05:38:36 +02:00
import { Component } from '@angular/core';
import {
ActivatedRoute,
Router,
} from '@angular/router';
import { I18nService } from 'jslib-common/abstractions/i18n.service';
import { ImportService } from 'jslib-common/abstractions/import.service';
import { LogService } from 'jslib-common/abstractions/log.service';
import { PlatformUtilsService } from 'jslib-common/abstractions/platformUtils.service';
import { PolicyService } from 'jslib-common/abstractions/policy.service';
import { UserService } from 'jslib-common/abstractions/user.service';
2018-07-06 05:38:36 +02:00
import { ImportComponent as BaseImportComponent } from '../../tools/import.component';
@Component({
selector: 'app-org-import',
templateUrl: '../../tools/import.component.html',
})
export class ImportComponent extends BaseImportComponent {
organizationName: string;
2021-12-07 20:41:45 +01:00
constructor(i18nService: I18nService,
importService: ImportService, router: Router, private route: ActivatedRoute,
platformUtilsService: PlatformUtilsService, policyService: PolicyService,
private userService: UserService, logService: LogService) {
2021-12-07 20:41:45 +01:00
super(i18nService, importService, router, platformUtilsService, policyService, logService);
2018-07-06 05:38:36 +02:00
}
async ngOnInit() {
this.route.parent.parent.params.subscribe(async params => {
2018-07-06 05:38:36 +02:00
this.organizationId = params.organizationId;
2018-07-06 05:44:58 +02:00
this.successNavigate = ['organizations', this.organizationId, 'vault'];
await super.ngOnInit();
this.importBlockedByPolicy = false;
2018-07-06 05:38:36 +02:00
});
const organization = await this.userService.getOrganization(this.organizationId);
this.organizationName = organization.name;
}
async submit() {
const confirmed = await this.platformUtilsService.showDialog(
this.i18nService.t('importWarning', this.organizationName),
this.i18nService.t('warning'), this.i18nService.t('yes'), this.i18nService.t('no'), 'warning');
if (!confirmed) {
return;
}
super.submit();
2018-07-06 05:38:36 +02:00
}
}