mirror of
https://github.com/zitadel/zitadel.git
synced 2025-12-01 13:43:04 +00:00
* cli core * update material * imports * schematics * lint * rm ng-qrcode, ngx-quicklink * replace qr code lib * rm shared module as quicklink is removed * lazy loading imports * rm public * chore(deps): bump @grpc/grpc-js from 1.7.1 to 1.8.0 in /console (#4857) Bumps [@grpc/grpc-js](https://github.com/grpc/grpc-node) from 1.7.1 to 1.8.0. - [Release notes](https://github.com/grpc/grpc-node/releases) - [Commits](https://github.com/grpc/grpc-node/compare/v1.7.1...@grpc/grpc-js@1.8.0) --- updated-dependencies: - dependency-name: "@grpc/grpc-js" dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] <support@github.com> Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> * chore(deps): bump libphonenumber-js from 1.10.13 to 1.10.15 in /console (#4861) Bumps [libphonenumber-js](https://gitlab.com/catamphetamine/libphonenumber-js) from 1.10.13 to 1.10.15. - [Release notes](https://gitlab.com/catamphetamine/libphonenumber-js/tags) - [Changelog](https://gitlab.com/catamphetamine/libphonenumber-js/blob/master/CHANGELOG.md) - [Commits](https://gitlab.com/catamphetamine/libphonenumber-js/compare/v1.10.13...v1.10.15) --- updated-dependencies: - dependency-name: libphonenumber-js dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] <support@github.com> Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> * rxjs * chore(deps): bump engine.io from 6.2.0 to 6.2.1 in /console (#4734) Bumps [engine.io](https://github.com/socketio/engine.io) from 6.2.0 to 6.2.1. - [Release notes](https://github.com/socketio/engine.io/releases) - [Changelog](https://github.com/socketio/engine.io/blob/main/CHANGELOG.md) - [Commits](https://github.com/socketio/engine.io/compare/6.2.0...6.2.1) --- updated-dependencies: - dependency-name: engine.io dependency-type: indirect ... Signed-off-by: dependabot[bot] <support@github.com> Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> * lock * lint * rm comments * tsconfig ES2022 * get rid of polyfills file * use node 18 * rm age policy, legacy components * packages * build beta prerelease * remove pre-release build Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Florian Forster <florian@zitadel.com> Co-authored-by: Livio Spring <livio.a@gmail.com>
152 lines
5.4 KiB
HTML
152 lines
5.4 KiB
HTML
<cnsl-refresh-table
|
|
*ngIf="dataSource"
|
|
(refreshed)="changePage()"
|
|
[dataSize]="dataSource.totalResult"
|
|
[timestamp]="dataSource.viewTimestamp"
|
|
[selection]="selection"
|
|
[loading]="dataSource.loading$ | async"
|
|
>
|
|
<ng-container actions *ngIf="selection.hasValue()">
|
|
<ng-content select="[selectactions]"></ng-content>
|
|
</ng-container>
|
|
|
|
<div actions *ngIf="!selection.hasValue()">
|
|
<ng-content select="[writeactions]"></ng-content>
|
|
</div>
|
|
|
|
<div class="table-wrapper">
|
|
<table mat-table class="table" aria-label="Elements" [dataSource]="dataSource">
|
|
<ng-container matColumnDef="select">
|
|
<th class="selection" mat-header-cell *matHeaderCellDef>
|
|
<mat-checkbox
|
|
[disabled]="!canWrite"
|
|
color="primary"
|
|
(change)="$event ? masterToggle() : null"
|
|
[checked]="selection.hasValue() && isAllSelected()"
|
|
[indeterminate]="selection.hasValue() && !isAllSelected()"
|
|
>
|
|
</mat-checkbox>
|
|
</th>
|
|
<td class="selection" mat-cell *matCellDef="let row">
|
|
<mat-checkbox
|
|
[disabled]="!canWrite"
|
|
color="primary"
|
|
(click)="$event.stopPropagation()"
|
|
(change)="$event ? selection.toggle(row) : null"
|
|
[checked]="selection.isSelected(row)"
|
|
>
|
|
<cnsl-avatar
|
|
*ngIf="row?.displayName && row.firstName && row.lastName; else cog"
|
|
class="avatar"
|
|
[name]="row.displayName"
|
|
[avatarUrl]="row.avatarUrl || ''"
|
|
[avatarUrl]="row.avatarUrl || ''"
|
|
[forColor]="row?.preferredLoginName"
|
|
[size]="32"
|
|
>
|
|
</cnsl-avatar>
|
|
<ng-template #cog>
|
|
<cnsl-avatar [forColor]="row.preferredLoginName" [isMachine]="true">
|
|
<i class="las la-robot"></i>
|
|
</cnsl-avatar>
|
|
</ng-template>
|
|
</mat-checkbox>
|
|
</td>
|
|
</ng-container>
|
|
|
|
<ng-container matColumnDef="userId">
|
|
<th mat-header-cell *matHeaderCellDef>{{ 'PROJECT.MEMBER.USERID' | translate }}</th>
|
|
<td mat-cell *matCellDef="let member">
|
|
{{ member.userId }}
|
|
</td>
|
|
</ng-container>
|
|
|
|
<ng-container matColumnDef="displayName">
|
|
<th mat-header-cell *matHeaderCellDef>{{ 'PROJECT.MEMBER.DISPLAYNAME' | translate }}</th>
|
|
<td mat-cell *matCellDef="let member">
|
|
{{ member.displayName }}
|
|
</td>
|
|
</ng-container>
|
|
|
|
<ng-container matColumnDef="loginname">
|
|
<th mat-header-cell *matHeaderCellDef>{{ 'PROJECT.MEMBER.LOGINNAME' | translate }}</th>
|
|
<td mat-cell *matCellDef="let member">
|
|
{{ member.preferredLoginName }}
|
|
</td>
|
|
</ng-container>
|
|
|
|
<ng-container matColumnDef="email">
|
|
<th mat-header-cell *matHeaderCellDef>{{ 'PROJECT.MEMBER.EMAIL' | translate }}</th>
|
|
<td mat-cell *matCellDef="let member">
|
|
{{ member.email }}
|
|
</td>
|
|
</ng-container>
|
|
|
|
<ng-container matColumnDef="actions" stickyEnd>
|
|
<th mat-header-cell *matHeaderCellDef></th>
|
|
<td mat-cell *matCellDef="let member" class="member-action-tr">
|
|
<cnsl-table-actions [hasActions]="true">
|
|
<button
|
|
actions
|
|
matTooltip="{{ 'ACTIONS.REMOVE' | translate }}"
|
|
color="warn"
|
|
(click)="$event.stopPropagation(); triggerDeleteMember(member)"
|
|
mat-icon-button
|
|
[disabled]="canDelete === false"
|
|
data-e2e="remove-member-button"
|
|
>
|
|
<i class="las la-trash"></i>
|
|
</button>
|
|
|
|
<button menuActions mat-menu-item [routerLink]="['/users', member.userId]">
|
|
{{ 'ACTIONS.TABLE.SHOWUSER' | translate : { value: member.displayName } }}
|
|
</button>
|
|
</cnsl-table-actions>
|
|
</td>
|
|
</ng-container>
|
|
|
|
<ng-container matColumnDef="roles">
|
|
<th mat-header-cell *matHeaderCellDef class="role-row">{{ 'ROLESLABEL' | translate }}</th>
|
|
<td mat-cell *matCellDef="let member" class="role-row">
|
|
<mat-chip-list class="cnsl-chip-list" aria-label="role selection">
|
|
<mat-chip
|
|
class="cnsl-chip"
|
|
*ngFor="let role of member.rolesList"
|
|
[removable]="canWrite"
|
|
[selectable]="false"
|
|
(removed)="removeRole(member, role)"
|
|
data-e2e="role"
|
|
>
|
|
<div class="cnsl-chip-dot" [style.background]="getColor(role)"></div>
|
|
<span>{{ role | roletransform }}</span>
|
|
<button *ngIf="canWrite" matChipRemove data-e2e="remove-role-button">
|
|
<mat-icon>cancel</mat-icon>
|
|
</button>
|
|
</mat-chip>
|
|
</mat-chip-list>
|
|
</td>
|
|
</ng-container>
|
|
|
|
<tr mat-header-row *matHeaderRowDef="displayedColumns"></tr>
|
|
<tr
|
|
class="highlight"
|
|
[ngClass]="{ pointer: canWrite }"
|
|
(click)="canWrite ? addRole(member) : null"
|
|
mat-row
|
|
*matRowDef="let member; columns: displayedColumns"
|
|
></tr>
|
|
</table>
|
|
</div>
|
|
<cnsl-paginator
|
|
*ngIf="dataSource"
|
|
class="paginator"
|
|
#paginator
|
|
[timestamp]="dataSource.viewTimestamp"
|
|
[pageSize]="INITIALPAGESIZE"
|
|
[length]="dataSource.totalResult"
|
|
[pageSizeOptions]="[25, 50, 100, 250]"
|
|
(page)="changePage($event)"
|
|
>
|
|
</cnsl-paginator>
|
|
</cnsl-refresh-table>
|