mirror of
https://github.com/bitwarden/web
synced 2025-12-06 00:03:28 +00:00
* added the multi select checkbox to org ciphers * wired up select all/none * allowed for bulk delete of ciphers from the org vault * refactored bulk actions into a dedicated component * tweaked formatting settings and reformatted files * moved some shared code to jslib * some more formatting fixes * undid jslib connection changes * removed a function that was moved to jslib * reset jslib again? * set up delete many w/admin cipher methods * removed extra href tags * added organization id to bulk delete request model when coming from an org vault * fixed up some compiler warnings for formatting * code review fixups for bulk delete from org vault * added back a removed parameter from the vault component * seperated some imports with newlines * updated jslib * resolved some build errors * code review cleanup for bulk delete from an org vault * code review cleanup for bulk delete from an org vault * code review cleanup for bulk delete from an org vault * code review cleanup for bulk delete from an org vault * updated jslib to latest Co-authored-by: Addison Beck <addisonbeck@MacBook-Pro.local>
69 lines
2.9 KiB
TypeScript
69 lines
2.9 KiB
TypeScript
import { Component } from '@angular/core';
|
|
import {
|
|
ActivatedRoute,
|
|
Router,
|
|
} from '@angular/router';
|
|
|
|
import { AuthService } from 'jslib/abstractions/auth.service';
|
|
import { CryptoFunctionService } from 'jslib/abstractions/cryptoFunction.service';
|
|
import { EnvironmentService } from 'jslib/abstractions/environment.service';
|
|
import { I18nService } from 'jslib/abstractions/i18n.service';
|
|
import { PasswordGenerationService } from 'jslib/abstractions/passwordGeneration.service';
|
|
import { PlatformUtilsService } from 'jslib/abstractions/platformUtils.service';
|
|
import { StateService } from 'jslib/abstractions/state.service';
|
|
import { StorageService } from 'jslib/abstractions/storage.service';
|
|
|
|
import { LoginComponent as BaseLoginComponent } from 'jslib/angular/components/login.component';
|
|
|
|
@Component({
|
|
selector: 'app-login',
|
|
templateUrl: 'login.component.html',
|
|
})
|
|
export class LoginComponent extends BaseLoginComponent {
|
|
constructor(authService: AuthService, router: Router,
|
|
i18nService: I18nService, private route: ActivatedRoute,
|
|
storageService: StorageService, stateService: StateService,
|
|
platformUtilsService: PlatformUtilsService, environmentService: EnvironmentService,
|
|
passwordGenerationService: PasswordGenerationService, cryptoFunctionService: CryptoFunctionService) {
|
|
super(authService, router,
|
|
platformUtilsService, i18nService,
|
|
stateService, environmentService,
|
|
passwordGenerationService, cryptoFunctionService,
|
|
storageService);
|
|
this.onSuccessfulLoginNavigate = this.goAfterLogIn;
|
|
}
|
|
|
|
async ngOnInit() {
|
|
const queryParamsSub = this.route.queryParams.subscribe(async (qParams) => {
|
|
if (qParams.email != null && qParams.email.indexOf('@') > -1) {
|
|
this.email = qParams.email;
|
|
}
|
|
if (qParams.premium != null) {
|
|
this.stateService.save('loginRedirect', { route: '/settings/premium' });
|
|
} else if (qParams.org != null) {
|
|
this.stateService.save('loginRedirect',
|
|
{ route: '/settings/create-organization', qParams: { plan: qParams.org } });
|
|
}
|
|
await super.ngOnInit();
|
|
if (queryParamsSub != null) {
|
|
queryParamsSub.unsubscribe();
|
|
}
|
|
});
|
|
}
|
|
|
|
async goAfterLogIn() {
|
|
const invite = await this.stateService.get<any>('orgInvitation');
|
|
if (invite != null) {
|
|
this.router.navigate(['accept-organization'], { queryParams: invite });
|
|
} else {
|
|
const loginRedirect = await this.stateService.get<any>('loginRedirect');
|
|
if (loginRedirect != null) {
|
|
this.router.navigate([loginRedirect.route], { queryParams: loginRedirect.qParams });
|
|
await this.stateService.remove('loginRedirect');
|
|
} else {
|
|
this.router.navigate([this.successRoute]);
|
|
}
|
|
}
|
|
}
|
|
}
|