mirror of
https://github.com/grafana/grafana.git
synced 2025-02-15 01:53:33 -06:00
57 lines
1.5 KiB
TypeScript
57 lines
1.5 KiB
TypeScript
import { BackendSrv } from 'app/core/services/backend_srv';
|
|
import { NavModelSrv } from 'app/core/core';
|
|
|
|
export default class AdminListUsersCtrl {
|
|
users: any;
|
|
pages: any[] = [];
|
|
perPage = 50;
|
|
page = 1;
|
|
totalPages: number;
|
|
showPaging = false;
|
|
query: any;
|
|
navModel: any;
|
|
|
|
/** @ngInject */
|
|
constructor(private $scope: any, private backendSrv: BackendSrv, navModelSrv: NavModelSrv) {
|
|
this.navModel = navModelSrv.getNav('admin', 'global-users');
|
|
this.query = '';
|
|
this.getUsers();
|
|
}
|
|
|
|
getUsers() {
|
|
this.backendSrv
|
|
.get(`/api/users/search?perpage=${this.perPage}&page=${this.page}&query=${this.query}`)
|
|
.then((result: any) => {
|
|
this.users = result.users;
|
|
this.page = result.page;
|
|
this.perPage = result.perPage;
|
|
this.totalPages = Math.ceil(result.totalCount / result.perPage);
|
|
this.showPaging = this.totalPages > 1;
|
|
this.pages = [];
|
|
|
|
for (let i = 1; i < this.totalPages + 1; i++) {
|
|
this.pages.push({ page: i, current: i === this.page });
|
|
}
|
|
});
|
|
}
|
|
|
|
navigateToPage(page: any) {
|
|
this.page = page.page;
|
|
this.getUsers();
|
|
}
|
|
|
|
deleteUser(user: any) {
|
|
this.$scope.appEvent('confirm-modal', {
|
|
title: 'Delete',
|
|
text: 'Do you want to delete ' + user.login + '?',
|
|
icon: 'fa-trash',
|
|
yesText: 'Delete',
|
|
onConfirm: () => {
|
|
this.backendSrv.delete('/api/admin/users/' + user.id).then(() => {
|
|
this.getUsers();
|
|
});
|
|
},
|
|
});
|
|
}
|
|
}
|