[SM-1016] Fix new access token dialog (#9918)

* swap to bit-dialog title & subtitle

* remove dialogRef.disableClose & use toastService
This commit is contained in:
Thomas Avery 2024-07-05 10:37:18 -05:00 committed by GitHub
parent 2b1fe2d305
commit 48de33fc7a
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 9 additions and 16 deletions

View File

@ -1,11 +1,4 @@
<bit-dialog dialogSize="default">
<ng-container bitDialogTitle>
<span>{{ "newAccessToken" | i18n }}</span>
<span class="tw-text-sm tw-normal-case tw-text-muted">
{{ data.subTitle }}
</span>
</ng-container>
<bit-dialog dialogSize="default" [title]="'newAccessToken' | i18n" [subtitle]="data.subTitle">
<div bitDialogContent>
<bit-callout type="info" [title]="'accessTokenCallOutTitle' | i18n">
{{ "downloadAccessToken" | i18n }}<br />

View File

@ -3,6 +3,7 @@ import { Component, Inject, OnInit } from "@angular/core";
import { I18nService } from "@bitwarden/common/platform/abstractions/i18n.service";
import { PlatformUtilsService } from "@bitwarden/common/platform/abstractions/platform-utils.service";
import { ToastService } from "@bitwarden/components";
export interface AccessTokenDetails {
subTitle: string;
@ -18,10 +19,9 @@ export class AccessTokenDialogComponent implements OnInit {
public dialogRef: DialogRef,
@Inject(DIALOG_DATA) public data: AccessTokenDetails,
private platformUtilsService: PlatformUtilsService,
private toastService: ToastService,
private i18nService: I18nService,
) {
this.dialogRef.disableClose = true;
}
) {}
ngOnInit(): void {
// TODO remove null checks once strictNullChecks in TypeScript is turned on.
@ -33,11 +33,11 @@ export class AccessTokenDialogComponent implements OnInit {
copyAccessToken(): void {
this.platformUtilsService.copyToClipboard(this.data.accessToken);
this.platformUtilsService.showToast(
"success",
null,
this.i18nService.t("accessTokenCreatedAndCopied"),
);
this.toastService.showToast({
variant: "success",
title: null,
message: this.i18nService.t("accessTokenCreatedAndCopied"),
});
this.dialogRef.close();
}
}