migrate weak passwords report component

This commit is contained in:
jaasen-livefront 2024-07-09 14:15:19 -07:00
parent 5fc908d0fa
commit e8e9b01997
No known key found for this signature in database
1 changed files with 24 additions and 27 deletions

View File

@ -11,13 +11,13 @@
<span class="sr-only">{{ "loading" | i18n }}</span> <span class="sr-only">{{ "loading" | i18n }}</span>
</div> </div>
<div class="mt-4" *ngIf="hasLoaded"> <div class="mt-4" *ngIf="hasLoaded">
<app-callout type="success" title="{{ 'goodNews' | i18n }}" *ngIf="!ciphers.length"> <bit-callout type="success" title="{{ 'goodNews' | i18n }}" *ngIf="!ciphers.length">
{{ "noWeakPasswords" | i18n }} {{ "noWeakPasswords" | i18n }}
</app-callout> </bit-callout>
<ng-container *ngIf="ciphers.length"> <ng-container *ngIf="ciphers.length">
<app-callout type="danger" title="{{ 'weakPasswordsFound' | i18n }}"> <bit-callout type="danger" title="{{ 'weakPasswordsFound' | i18n }}">
{{ "weakPasswordsFoundReportDesc" | i18n: (ciphers.length | number) : vaultMsg }} {{ "weakPasswordsFoundReportDesc" | i18n: (ciphers.length | number) : vaultMsg }}
</app-callout> </bit-callout>
<bit-toggle-group <bit-toggle-group
*ngIf="showFilterToggle && !isAdminConsoleActive" *ngIf="showFilterToggle && !isAdminConsoleActive"
[selected]="filterOrgStatus$ | async" [selected]="filterOrgStatus$ | async"
@ -31,36 +31,33 @@
</bit-toggle> </bit-toggle>
</ng-container> </ng-container>
</bit-toggle-group> </bit-toggle-group>
<table class="table table-hover table-list table-ciphers"> <bit-table [dataSource]="dataSource">
<thead <ng-container header *ngIf="!isAdminConsoleActive">
class="tw-border-0 tw-border-b-2 tw-border-solid tw-border-secondary-300 tw-font-bold tw-text-muted"
*ngIf="!isAdminConsoleActive"
>
<tr> <tr>
<th></th> <th></th>
<th>{{ "name" | i18n }}</th> <th>{{ "name" | i18n }}</th>
<th>{{ "owner" | i18n }}</th> <th>{{ "owner" | i18n }}</th>
</tr> </tr>
</thead> </ng-container>
<tbody> <ng-template body let-rows$>
<tr *ngFor="let c of ciphers"> <tr bitRow *ngFor="let r of rows$ | async">
<td class="table-list-icon"> <td bitCell>
<app-vault-icon [cipher]="c"></app-vault-icon> <app-vault-icon [cipher]="r"></app-vault-icon>
</td> </td>
<td class="reduced-lh wrap"> <td class="reduced-lh wrap">
<ng-container *ngIf="!organization || canManageCipher(c); else cantManage"> <ng-container *ngIf="!organization || canManageCipher(r); else cantManage">
<a <a
href="#" href="#"
appStopClick appStopClick
(click)="selectCipher(c)" (click)="selectCipher(r)"
title="{{ 'editItem' | i18n }}" title="{{ 'editItem' | i18n }}"
>{{ c.name }}</a >{{ r.name }}</a
> >
</ng-container> </ng-container>
<ng-template #cantManage> <ng-template #cantManage>
<span>{{ c.name }}</span> <span>{{ r.name }}</span>
</ng-template> </ng-template>
<ng-container *ngIf="!organization && c.organizationId"> <ng-container *ngIf="!organization && r.organizationId">
<i <i
class="bwi bwi-collection" class="bwi bwi-collection"
appStopProp appStopProp
@ -69,7 +66,7 @@
></i> ></i>
<span class="sr-only">{{ "shared" | i18n }}</span> <span class="sr-only">{{ "shared" | i18n }}</span>
</ng-container> </ng-container>
<ng-container *ngIf="c.hasAttachments"> <ng-container *ngIf="r.hasAttachments">
<i <i
class="bwi bwi-paperclip" class="bwi bwi-paperclip"
appStopProp appStopProp
@ -79,26 +76,26 @@
<span class="sr-only">{{ "attachments" | i18n }}</span> <span class="sr-only">{{ "attachments" | i18n }}</span>
</ng-container> </ng-container>
<br /> <br />
<small>{{ c.subTitle }}</small> <small>{{ r.subTitle }}</small>
</td> </td>
<td> <td>
<app-org-badge <app-org-badge
*ngIf="!organization" *ngIf="!organization"
[disabled]="disabled" [disabled]="disabled"
[organizationId]="c.organizationId" [organizationId]="r.organizationId"
[organizationName]="c.organizationId | orgNameFromId: (organizations$ | async)" [organizationName]="r.organizationId | orgNameFromId: (organizations$ | async)"
appStopProp appStopProp
> >
</app-org-badge> </app-org-badge>
</td> </td>
<td class="text-right"> <td class="text-right">
<span bitBadge [variant]="passwordStrengthMap.get(c.id)[1]"> <span bitBadge [variant]="passwordStrengthMap.get(r.id)[1]">
{{ passwordStrengthMap.get(c.id)[0] | i18n }} {{ passwordStrengthMap.get(r.id)[0] | i18n }}
</span> </span>
</td> </td>
</tr> </tr>
</tbody> </ng-template>
</table> </bit-table>
</ng-container> </ng-container>
</div> </div>
<ng-template #cipherAddEdit></ng-template> <ng-template #cipherAddEdit></ng-template>