mirror of
https://github.com/grafana/grafana.git
synced 2025-02-12 00:25:46 -06:00
* fix some anys * some canvas/geomap improvements * some more panel type fixes * just omit the type in TagOption
33 lines
803 B
TypeScript
33 lines
803 B
TypeScript
import { DashboardAcl, DashboardAclDTO } from 'app/types/acl';
|
|
|
|
export function processAclItems(items: DashboardAclDTO[]): DashboardAcl[] {
|
|
return items.map(processAclItem).sort((a, b) => b.sortRank! - a.sortRank! || a.name!.localeCompare(b.name!));
|
|
}
|
|
|
|
function processAclItem(dto: DashboardAclDTO): DashboardAcl {
|
|
const item: DashboardAcl = dto;
|
|
|
|
item.sortRank = 0;
|
|
|
|
if (item.userId! > 0) {
|
|
item.name = item.userLogin;
|
|
item.sortRank = 10;
|
|
} else if (item.teamId! > 0) {
|
|
item.name = item.team;
|
|
item.sortRank = 20;
|
|
} else if (item.role) {
|
|
item.icon = 'fa fa-fw fa-street-view';
|
|
item.name = item.role;
|
|
item.sortRank = 30;
|
|
if (item.role === 'Editor') {
|
|
item.sortRank += 1;
|
|
}
|
|
}
|
|
|
|
if (item.inherited) {
|
|
item.sortRank += 100;
|
|
}
|
|
|
|
return item;
|
|
}
|