mirror of https://github.com/Squidex/squidex.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
40 lines
912 B
40 lines
912 B
/*
|
|
* Squidex Headless CMS
|
|
*
|
|
* @license
|
|
* Copyright (c) Squidex UG (haftungsbeschränkt). All rights reserved.
|
|
*/
|
|
|
|
import { Component, OnInit } from '@angular/core';
|
|
import { FormControl } from '@angular/forms';
|
|
import { UserDto, UsersState } from '@app/features/administration/internal';
|
|
|
|
@Component({
|
|
selector: 'sqx-users-page',
|
|
styleUrls: ['./users-page.component.scss'],
|
|
templateUrl: './users-page.component.html'
|
|
})
|
|
export class UsersPageComponent implements OnInit {
|
|
public usersFilter = new FormControl();
|
|
|
|
constructor(
|
|
public readonly usersState: UsersState
|
|
) {
|
|
}
|
|
|
|
public ngOnInit() {
|
|
this.usersState.load();
|
|
}
|
|
|
|
public reload() {
|
|
this.usersState.load(true);
|
|
}
|
|
|
|
public search() {
|
|
this.usersState.search(this.usersFilter.value);
|
|
}
|
|
|
|
public trackByUser(index: number, user: UserDto) {
|
|
return user.id;
|
|
}
|
|
}
|