mirror of
https://github.com/zitadel/zitadel.git
synced 2025-05-02 12:50:50 +00:00

* fix: add state filter to org table, filter context --------- Co-authored-by: adlerhurst <silvan.reusser@gmail.com>
113 lines
3.9 KiB
TypeScript
113 lines
3.9 KiB
TypeScript
import { SelectionModel } from '@angular/cdk/collections';
|
|
import { Component, ElementRef, EventEmitter, Input, OnInit, Output, ViewChild } from '@angular/core';
|
|
import { UntypedFormControl } from '@angular/forms';
|
|
import { BehaviorSubject, catchError, debounceTime, finalize, from, map, Observable, of, pipe, tap } from 'rxjs';
|
|
import { TextQueryMethod } from 'src/app/proto/generated/zitadel/object_pb';
|
|
import { Org, OrgNameQuery, OrgQuery, OrgState, OrgStateQuery } from 'src/app/proto/generated/zitadel/org_pb';
|
|
import { AuthenticationService } from 'src/app/services/authentication.service';
|
|
import { GrpcAuthService } from 'src/app/services/grpc-auth.service';
|
|
|
|
@Component({
|
|
selector: 'cnsl-org-context',
|
|
templateUrl: './org-context.component.html',
|
|
styleUrls: ['./org-context.component.scss'],
|
|
})
|
|
export class OrgContextComponent implements OnInit {
|
|
public pinned: SelectionModel<Org.AsObject> = new SelectionModel<Org.AsObject>(true, []);
|
|
|
|
public orgLoading$: BehaviorSubject<any> = new BehaviorSubject(false);
|
|
public orgs$: Observable<Org.AsObject[]> = of([]);
|
|
public filterControl: UntypedFormControl = new UntypedFormControl('');
|
|
@Input() public org!: Org.AsObject;
|
|
@ViewChild('input', { static: false }) input!: ElementRef;
|
|
@Output() public closedCard: EventEmitter<void> = new EventEmitter();
|
|
@Output() public setOrg: EventEmitter<Org.AsObject> = new EventEmitter();
|
|
|
|
constructor(public authService: AuthenticationService, private auth: GrpcAuthService) {
|
|
this.filterControl.valueChanges.pipe(debounceTime(500)).subscribe((value) => {
|
|
this.loadOrgs(value.trim().toLowerCase());
|
|
});
|
|
}
|
|
|
|
public ngOnInit(): void {
|
|
this.focusFilter();
|
|
this.loadOrgs();
|
|
}
|
|
|
|
public setActiveOrg(org: Org.AsObject) {
|
|
this.setOrg.emit(org);
|
|
this.closedCard.emit();
|
|
}
|
|
|
|
public loadOrgs(filter?: string): void {
|
|
if (!filter) {
|
|
const value = this.input?.nativeElement?.value;
|
|
if (value) {
|
|
filter = value;
|
|
}
|
|
}
|
|
|
|
let query = new OrgQuery();
|
|
const orgStateQuery = new OrgStateQuery();
|
|
orgStateQuery.setState(OrgState.ORG_STATE_ACTIVE);
|
|
query.setStateQuery(orgStateQuery);
|
|
|
|
if (filter) {
|
|
const orgNameQuery = new OrgNameQuery();
|
|
orgNameQuery.setName(filter);
|
|
orgNameQuery.setMethod(TextQueryMethod.TEXT_QUERY_METHOD_CONTAINS_IGNORE_CASE);
|
|
query.setNameQuery(orgNameQuery);
|
|
}
|
|
|
|
this.orgLoading$.next(true);
|
|
this.orgs$ = from(this.auth.listMyProjectOrgs(undefined, 0, query ? [query] : undefined)).pipe(
|
|
map((resp) => {
|
|
return resp.resultList.sort((left, right) => left.name.localeCompare(right.name));
|
|
}),
|
|
catchError(() => of([])),
|
|
pipe(
|
|
tap((orgs: Org.AsObject[]) => {
|
|
this.pinned.clear();
|
|
this.getPrefixedItem('pinned-orgs').then((stringifiedOrgs) => {
|
|
if (stringifiedOrgs) {
|
|
const orgIds: string[] = JSON.parse(stringifiedOrgs);
|
|
const pinnedOrgs = orgs.filter((o) => orgIds.includes(o.id));
|
|
pinnedOrgs.forEach((o) => this.pinned.select(o));
|
|
}
|
|
});
|
|
}),
|
|
),
|
|
finalize(() => {
|
|
this.orgLoading$.next(false);
|
|
}),
|
|
);
|
|
}
|
|
|
|
public closeCard(element: HTMLElement): void {
|
|
if (!element.classList.contains('dontcloseonclick') && !element.classList.contains('mat-button-wrapper')) {
|
|
this.closedCard.emit();
|
|
}
|
|
}
|
|
|
|
private focusFilter(): void {
|
|
setTimeout(() => {
|
|
this.input.nativeElement.focus();
|
|
}, 0);
|
|
}
|
|
|
|
public toggle(item: Org.AsObject, event: any): void {
|
|
event.stopPropagation();
|
|
this.pinned.toggle(item);
|
|
|
|
this.setPrefixedItem('pinned-orgs', JSON.stringify(this.pinned.selected.map((o) => o.id)));
|
|
}
|
|
|
|
private async getPrefixedItem(key: string): Promise<string | null> {
|
|
return localStorage.getItem(`${key}`);
|
|
}
|
|
|
|
private async setPrefixedItem(key: string, value: any): Promise<void> {
|
|
return localStorage.setItem(`${key}`, value);
|
|
}
|
|
}
|