1
0
mirror of https://github.com/bitwarden/browser.git synced 2024-09-27 04:03:00 +02:00

[SM-589][SM-592] Remove router reuse hack (#4913)

* Remove router reuse hack

* Add AuthGuard

* Change to distinctUntilChanged

* Extract show logic
This commit is contained in:
Oscar Hinton 2023-03-03 15:28:59 +01:00 committed by GitHub
parent 2b95c786d8
commit 7736a981e7
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
6 changed files with 33 additions and 35 deletions

View File

@ -6602,5 +6602,8 @@
"example": "14"
}
}
},
"dismiss": {
"message": "Dismiss"
}
}

View File

@ -1,10 +1,4 @@
<details
*ngIf="visible"
#details
class="tw-rounded-sm tw-bg-background-alt tw-text-main"
(toggle)="toggle()"
open
>
<details #details class="tw-rounded-sm tw-bg-background-alt tw-text-main" (toggle)="toggle()" open>
<summary class="tw-list-none tw-p-2 tw-px-4">
<div class="tw-flex tw-select-none tw-items-center tw-gap-4">
<i class="bwi bwi-dashboard tw-text-3xl tw-text-primary-500" aria-hidden="true"></i>
@ -29,9 +23,9 @@
type="button"
class="tw-ml-auto tw-block"
[ngClass]="{ 'tw-invisible': !isComplete }"
(click)="dismiss()"
(click)="dismiss.emit()"
>
Dismiss
{{ "dismiss" | i18n }}
</button>
</div>
</details>

View File

@ -1,4 +1,4 @@
import { AfterContentInit, Component, ContentChildren, Input, QueryList } from "@angular/core";
import { Component, ContentChildren, EventEmitter, Input, Output, QueryList } from "@angular/core";
import { OnboardingTaskComponent } from "./onboarding-task.component";
@ -6,17 +6,15 @@ import { OnboardingTaskComponent } from "./onboarding-task.component";
selector: "sm-onboarding",
templateUrl: "./onboarding.component.html",
})
export class OnboardingComponent implements AfterContentInit {
export class OnboardingComponent {
@ContentChildren(OnboardingTaskComponent) tasks: QueryList<OnboardingTaskComponent>;
@Input() title: string;
@Output() dismiss = new EventEmitter<void>();
protected open = true;
protected visible = false;
ngAfterContentInit() {
this.visible = !this.isComplete;
}
protected get amountCompleted(): number {
return this.tasks.filter((task) => task.completed).length;
}
@ -32,8 +30,4 @@ export class OnboardingComponent implements AfterContentInit {
protected toggle() {
this.open = !this.open;
}
protected dismiss() {
this.visible = false;
}
}

View File

@ -3,7 +3,7 @@
</sm-header>
<div *ngIf="view$ | async as view; else spinner">
<sm-onboarding [title]="'getStarted' | i18n">
<sm-onboarding [title]="'getStarted' | i18n" *ngIf="showOnboarding" (dismiss)="hideOnboarding()">
<sm-onboarding-task
[title]="'createServiceAccount' | i18n"
(click)="openServiceAccountDialog()"

View File

@ -1,5 +1,5 @@
import { Component, OnDestroy, OnInit } from "@angular/core";
import { ActivatedRoute, Router } from "@angular/router";
import { ActivatedRoute } from "@angular/router";
import {
map,
Observable,
@ -8,7 +8,8 @@ import {
takeUntil,
combineLatest,
startWith,
distinct,
distinctUntilChanged,
take,
} from "rxjs";
import { I18nService } from "@bitwarden/common/abstractions/i18n.service";
@ -56,11 +57,11 @@ type Tasks = {
})
export class OverviewComponent implements OnInit, OnDestroy {
private destroy$: Subject<void> = new Subject<void>();
private prevShouldReuseRoute: any;
private tableSize = 10;
private organizationId: string;
protected organizationName: string;
protected userIsAdmin: boolean;
protected showOnboarding = false;
protected view$: Observable<{
allProjects: ProjectListView[];
@ -72,7 +73,6 @@ export class OverviewComponent implements OnInit, OnDestroy {
constructor(
private route: ActivatedRoute,
private router: Router,
private projectService: ProjectService,
private secretService: SecretService,
private serviceAccountService: ServiceAccountService,
@ -80,19 +80,12 @@ export class OverviewComponent implements OnInit, OnDestroy {
private organizationService: OrganizationService,
private platformUtilsService: PlatformUtilsService,
private i18nService: I18nService
) {
/**
* We want to remount the `sm-onboarding` component on route change.
* The component only toggles its visibility on init and on user dismissal.
*/
this.prevShouldReuseRoute = this.router.routeReuseStrategy.shouldReuseRoute;
this.router.routeReuseStrategy.shouldReuseRoute = () => false;
}
) {}
ngOnInit() {
const orgId$ = this.route.params.pipe(
map((p) => p.organizationId),
distinct()
distinctUntilChanged()
);
orgId$
@ -136,10 +129,19 @@ export class OverviewComponent implements OnInit, OnDestroy {
};
})
);
// Refresh onboarding status when orgId changes by fetching the first value from view$.
orgId$
.pipe(
switchMap(() => this.view$.pipe(take(1))),
takeUntil(this.destroy$)
)
.subscribe((view) => {
this.showOnboarding = Object.values(view.tasks).includes(false);
});
}
ngOnDestroy(): void {
this.router.routeReuseStrategy.shouldReuseRoute = this.prevShouldReuseRoute;
this.destroy$.next();
this.destroy$.complete();
}
@ -245,4 +247,8 @@ export class OverviewComponent implements OnInit, OnDestroy {
this.i18nService.t("valueCopied", this.i18nService.t("value"))
);
}
protected hideOnboarding() {
this.showOnboarding = false;
}
}

View File

@ -1,6 +1,7 @@
import { NgModule } from "@angular/core";
import { RouterModule, Routes } from "@angular/router";
import { AuthGuard } from "@bitwarden/angular/auth/guards/auth.guard";
import { Organization } from "@bitwarden/common/models/domain/organization";
import { OrganizationPermissionsGuard } from "@bitwarden/web-vault/app/organizations/guards/org-permissions.guard";
import { buildFlaggedRoute } from "@bitwarden/web-vault/app/oss-routing.module";
@ -19,7 +20,7 @@ const routes: Routes = [
buildFlaggedRoute("secretsManager", {
path: ":organizationId",
component: LayoutComponent,
canActivate: [OrganizationPermissionsGuard, SMGuard],
canActivate: [AuthGuard, OrganizationPermissionsGuard, SMGuard],
data: {
organizationPermissions: (org: Organization) => org.canAccessSecretsManager,
},