mirror of
https://github.com/bitwarden/web
synced 2025-12-24 04:03:20 +00:00
* Add jslib as a dependency * Cleanup tsconfig, webpack, add jslib-angular to package.json * Update all import paths * Add back @types/node. * Lint * Remove dummy module * Remove merge conflict * Group imports * Bump jslib
44 lines
1.7 KiB
TypeScript
44 lines
1.7 KiB
TypeScript
import { Component } from '@angular/core';
|
|
import { Router } from '@angular/router';
|
|
|
|
import { ToasterService } from 'angular2-toaster';
|
|
|
|
import { ApiService } from 'jslib-common/abstractions/api.service';
|
|
import { CryptoService } from 'jslib-common/abstractions/crypto.service';
|
|
import { I18nService } from 'jslib-common/abstractions/i18n.service';
|
|
|
|
import { PasswordVerificationRequest } from 'jslib-common/models/request/passwordVerificationRequest';
|
|
|
|
@Component({
|
|
selector: 'app-delete-organization',
|
|
templateUrl: 'delete-organization.component.html',
|
|
})
|
|
export class DeleteOrganizationComponent {
|
|
organizationId: string;
|
|
|
|
masterPassword: string;
|
|
formPromise: Promise<any>;
|
|
|
|
constructor(private apiService: ApiService, private i18nService: I18nService,
|
|
private toasterService: ToasterService, private cryptoService: CryptoService,
|
|
private router: Router) { }
|
|
|
|
async submit() {
|
|
if (this.masterPassword == null || this.masterPassword === '') {
|
|
this.toasterService.popAsync('error', this.i18nService.t('errorOccurred'),
|
|
this.i18nService.t('masterPassRequired'));
|
|
return;
|
|
}
|
|
|
|
const request = new PasswordVerificationRequest();
|
|
request.masterPasswordHash = await this.cryptoService.hashPassword(this.masterPassword, null);
|
|
try {
|
|
this.formPromise = this.apiService.deleteOrganization(this.organizationId, request);
|
|
await this.formPromise;
|
|
this.toasterService.popAsync('success', this.i18nService.t('organizationDeleted'),
|
|
this.i18nService.t('organizationDeletedDesc'));
|
|
this.router.navigate(['/']);
|
|
} catch { }
|
|
}
|
|
}
|