mirror of
https://github.com/bitwarden/browser
synced 2025-12-28 22:23:28 +00:00
* WIP admin console layout * Update icons * Migrate more things * Migrate the last pages * Move header to web * Fix story not working * Convert header component to standalone * Migrate org layout to standalone * Enable org switcher * Add AC to product switcher * Migrate provider portal to vertical nav * Migrate PM * Prettier fixes * Change AC and PP to use secondary variant layout & update logos * Remove full width setting * Remove commented code * Add header to report pages * Add provider portal banner * Fix banner for billing pages * Move vault title to header * Prevent scrollbar jumping * Move send button to header * Replace search input with bit-search * Remove unused files and css * Add banner * Tweak storage option * Fix duplicate nav item after merge * Migrate banner state to state provider framework * [AC-2078] Fix device approvals header * [PM-5861] Hide AC from product switcher for users that do not have access * [PM-5860] Fix Vault and Send page headers * [AC-2075] Fix missing link on reporting nav group * [AC-2079] Hide Payment Method and Billing History pages for self-hosted instances * [AC-2090] Hide reports/event log nav items for users that do not have permission * [AC-2092] Fix missing provider portal option in product switcher on page load * Add null check for organization in org layout component * [AC-2094] Fix missing page header for new client orgs page * [AC-2093] Update New client button styling * Fix failing test after merge * [PM-2087] Use disk-local for web layout banner * [PM-6041] Update banner copy to read "web app" * [PM-6094] Update banner link to marketing URL * [PM-6114] add CL container component to VVR pages (#7802) * create bit-container component * add container to all page components * Fix linting errors after merge with main * Fix product switcher stories * Fix web-header stories * mock org state properly in product switcher stories (#7956) * refactor: move web layout migration banner logic into a service (#7958) * make CL codeowner of web header files * move migration banner logic to service; update stories * [PM-5862] Ensure a sync has run before hiding navigation links * Remove leftover banner global state * Re-add dropped selfHosted ngIf * Add rel noreferrer * Remove comment --------- Co-authored-by: Shane Melton <smelton@bitwarden.com> Co-authored-by: Will Martin <contact@willmartian.com>
200 lines
7.1 KiB
HTML
200 lines
7.1 KiB
HTML
<app-header>
|
|
<bit-search class="tw-grow" [(ngModel)]="searchText" [placeholder]="'search' | i18n"></bit-search>
|
|
<button type="button" bitButton buttonType="primary" (click)="invite()">
|
|
<i class="bwi bwi-plus bwi-fw" aria-hidden="true"></i>
|
|
{{ "inviteUsers" | i18n }}
|
|
</button>
|
|
</app-header>
|
|
|
|
<div class="ml-auto d-flex tw-mb-4">
|
|
<bit-toggle-group
|
|
[selected]="status"
|
|
(selectedChange)="filter($event)"
|
|
[attr.aria-label]="'memberStatusFilter' | i18n"
|
|
>
|
|
<bit-toggle [value]="null">
|
|
{{ "all" | i18n }}
|
|
<span bitBadge variant="info" *ngIf="allCount">{{ allCount }}</span>
|
|
</bit-toggle>
|
|
|
|
<bit-toggle [value]="userStatusType.Invited">
|
|
{{ "invited" | i18n }}
|
|
<span bitBadge variant="info" *ngIf="invitedCount">{{ invitedCount }}</span>
|
|
</bit-toggle>
|
|
|
|
<bit-toggle [value]="userStatusType.Accepted">
|
|
{{ "accepted" | i18n }}
|
|
<span bitBadge variant="warning" *ngIf="acceptedCount">{{ acceptedCount }}</span>
|
|
</bit-toggle>
|
|
</bit-toggle-group>
|
|
|
|
<div class="dropdown ml-3" appListDropdown>
|
|
<button
|
|
class="btn btn-outline-secondary dropdown-toggle"
|
|
type="button"
|
|
id="bulkActionsButton"
|
|
data-toggle="dropdown"
|
|
aria-haspopup="true"
|
|
aria-expanded="false"
|
|
appA11yTitle="{{ 'options' | i18n }}"
|
|
>
|
|
<i class="bwi bwi-cog" aria-hidden="true"></i>
|
|
</button>
|
|
<div class="dropdown-menu dropdown-menu-right" aria-labelledby="bulkActionsButton">
|
|
<button type="button" class="dropdown-item" appStopClick (click)="bulkReinvite()">
|
|
<i class="bwi bwi-fw bwi-envelope" aria-hidden="true"></i>
|
|
{{ "reinviteSelected" | i18n }}
|
|
</button>
|
|
<button
|
|
type="button"
|
|
class="dropdown-item text-success"
|
|
appStopClick
|
|
(click)="bulkConfirm()"
|
|
*ngIf="showBulkConfirmUsers"
|
|
>
|
|
<i class="bwi bwi-fw bwi-check" aria-hidden="true"></i>
|
|
{{ "confirmSelected" | i18n }}
|
|
</button>
|
|
<button type="button" class="dropdown-item text-danger" appStopClick (click)="bulkRemove()">
|
|
<i class="bwi bwi-fw bwi-close" aria-hidden="true"></i>
|
|
{{ "remove" | i18n }}
|
|
</button>
|
|
<div class="dropdown-divider"></div>
|
|
<button type="button" class="dropdown-item" appStopClick (click)="selectAll(true)">
|
|
<i class="bwi bwi-fw bwi-check-square" aria-hidden="true"></i>
|
|
{{ "selectAll" | i18n }}
|
|
</button>
|
|
<button type="button" class="dropdown-item" appStopClick (click)="selectAll(false)">
|
|
<i class="bwi bwi-fw bwi-minus-square" aria-hidden="true"></i>
|
|
{{ "unselectAll" | i18n }}
|
|
</button>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
|
|
<ng-container *ngIf="loading">
|
|
<i
|
|
class="bwi bwi-spinner bwi-spin text-muted"
|
|
title="{{ 'loading' | i18n }}"
|
|
aria-hidden="true"
|
|
></i>
|
|
<span class="sr-only">{{ "loading" | i18n }}</span>
|
|
</ng-container>
|
|
<ng-container
|
|
*ngIf="
|
|
!loading &&
|
|
(isPaging()
|
|
? pagedUsers
|
|
: (users | search: searchText : 'name' : 'email' : 'id')) as searchedUsers
|
|
"
|
|
>
|
|
<p *ngIf="!searchedUsers.length">{{ "noUsersInList" | i18n }}</p>
|
|
<ng-container *ngIf="searchedUsers.length">
|
|
<app-callout
|
|
type="info"
|
|
title="{{ 'confirmUsers' | i18n }}"
|
|
icon="bwi bwi-check-circle"
|
|
*ngIf="showConfirmUsers"
|
|
>
|
|
{{ "providerUsersNeedConfirmed" | i18n }}
|
|
</app-callout>
|
|
<table
|
|
class="table table-hover table-list"
|
|
infiniteScroll
|
|
[infiniteScrollDistance]="1"
|
|
[infiniteScrollDisabled]="!isPaging()"
|
|
(scrolled)="loadMore()"
|
|
>
|
|
<tbody>
|
|
<tr *ngFor="let u of searchedUsers">
|
|
<td (click)="checkUser(u)" class="table-list-checkbox">
|
|
<input type="checkbox" [(ngModel)]="$any(u).checked" appStopProp />
|
|
</td>
|
|
<td width="30">
|
|
<bit-avatar [text]="u | userName" [id]="u.userId" size="small"></bit-avatar>
|
|
</td>
|
|
<td>
|
|
<a href="#" appStopClick (click)="edit(u)">{{ u.email }}</a>
|
|
<span bitBadge variant="secondary" *ngIf="u.status === userStatusType.Invited">{{
|
|
"invited" | i18n
|
|
}}</span>
|
|
<span bitBadge variant="warning" *ngIf="u.status === userStatusType.Accepted">{{
|
|
"accepted" | i18n
|
|
}}</span>
|
|
<small class="text-muted d-block" *ngIf="u.name">{{ u.name }}</small>
|
|
</td>
|
|
<td>
|
|
<ng-container *ngIf="$any(u).twoFactorEnabled">
|
|
<i
|
|
class="bwi bwi-lock"
|
|
title="{{ 'userUsingTwoStep' | i18n }}"
|
|
aria-hidden="true"
|
|
></i>
|
|
<span class="sr-only">{{ "userUsingTwoStep" | i18n }}</span>
|
|
</ng-container>
|
|
</td>
|
|
<td>
|
|
<span *ngIf="u.type === userType.ProviderAdmin">{{ "providerAdmin" | i18n }}</span>
|
|
<span *ngIf="u.type === userType.ServiceUser">{{ "serviceUser" | i18n }}</span>
|
|
</td>
|
|
<td class="table-list-options">
|
|
<div class="dropdown" appListDropdown>
|
|
<button
|
|
class="btn btn-outline-secondary dropdown-toggle"
|
|
type="button"
|
|
data-toggle="dropdown"
|
|
aria-haspopup="true"
|
|
aria-expanded="false"
|
|
appA11yTitle="{{ 'options' | i18n }}"
|
|
>
|
|
<i class="bwi bwi-cog bwi-lg" aria-hidden="true"></i>
|
|
</button>
|
|
<div class="dropdown-menu dropdown-menu-right">
|
|
<a
|
|
class="dropdown-item"
|
|
href="#"
|
|
appStopClick
|
|
(click)="reinvite(u)"
|
|
*ngIf="u.status === userStatusType.Invited"
|
|
>
|
|
<i class="bwi bwi-fw bwi-envelope" aria-hidden="true"></i>
|
|
{{ "resendInvitation" | i18n }}
|
|
</a>
|
|
<a
|
|
class="dropdown-item text-success"
|
|
href="#"
|
|
appStopClick
|
|
(click)="confirm(u)"
|
|
*ngIf="u.status === userStatusType.Accepted"
|
|
>
|
|
<i class="bwi bwi-fw bwi-check" aria-hidden="true"></i>
|
|
{{ "confirm" | i18n }}
|
|
</a>
|
|
<a
|
|
class="dropdown-item"
|
|
href="#"
|
|
appStopClick
|
|
(click)="events(u)"
|
|
*ngIf="accessEvents && u.status === userStatusType.Confirmed"
|
|
>
|
|
<i class="bwi bwi-fw bwi-file-text" aria-hidden="true"></i>
|
|
{{ "eventLogs" | i18n }}
|
|
</a>
|
|
<a class="dropdown-item text-danger" href="#" appStopClick (click)="remove(u)">
|
|
<i class="bwi bwi-fw bwi-close" aria-hidden="true"></i>
|
|
{{ "remove" | i18n }}
|
|
</a>
|
|
</div>
|
|
</div>
|
|
</td>
|
|
</tr>
|
|
</tbody>
|
|
</table>
|
|
</ng-container>
|
|
</ng-container>
|
|
<ng-template #addEdit></ng-template>
|
|
<ng-template #confirmTemplate></ng-template>
|
|
<ng-template #bulkStatusTemplate></ng-template>
|
|
<ng-template #bulkConfirmTemplate></ng-template>
|
|
<ng-template #bulkRemoveTemplate></ng-template>
|