mirror of
https://github.com/grafana/grafana.git
synced 2025-02-11 16:15:42 -06:00
74 lines
1.7 KiB
TypeScript
74 lines
1.7 KiB
TypeScript
import config from 'app/core/config';
|
|
import _ from 'lodash';
|
|
import coreModule from 'app/core/core_module';
|
|
import store from 'app/core/store';
|
|
|
|
export class User {
|
|
isGrafanaAdmin: any;
|
|
isSignedIn: any;
|
|
orgRole: any;
|
|
orgId: number;
|
|
orgName: string;
|
|
orgCount: number;
|
|
timezone: string;
|
|
helpFlags1: number;
|
|
lightTheme: boolean;
|
|
hasEditPermissionInFolders: boolean;
|
|
|
|
constructor() {
|
|
if (config.bootData.user) {
|
|
_.extend(this, config.bootData.user);
|
|
}
|
|
}
|
|
}
|
|
|
|
export class ContextSrv {
|
|
pinned: any;
|
|
version: any;
|
|
user: User;
|
|
isSignedIn: any;
|
|
isGrafanaAdmin: any;
|
|
isEditor: any;
|
|
sidemenu: any;
|
|
sidemenuSmallBreakpoint = false;
|
|
hasEditPermissionInFolders: boolean;
|
|
|
|
constructor() {
|
|
this.sidemenu = store.getBool('grafana.sidemenu', true);
|
|
|
|
if (!config.bootData) {
|
|
config.bootData = { user: {}, settings: {} };
|
|
}
|
|
|
|
this.user = new User();
|
|
this.isSignedIn = this.user.isSignedIn;
|
|
this.isGrafanaAdmin = this.user.isGrafanaAdmin;
|
|
this.isEditor = this.hasRole('Editor') || this.hasRole('Admin');
|
|
this.hasEditPermissionInFolders = this.user.hasEditPermissionInFolders;
|
|
}
|
|
|
|
hasRole(role) {
|
|
return this.user.orgRole === role;
|
|
}
|
|
|
|
isGrafanaVisible() {
|
|
return !!(document.visibilityState === undefined || document.visibilityState === 'visible');
|
|
}
|
|
|
|
toggleSideMenu() {
|
|
this.sidemenu = !this.sidemenu;
|
|
store.set('grafana.sidemenu', this.sidemenu);
|
|
}
|
|
|
|
hasAccessToExplore() {
|
|
return (this.isEditor || config.viewersCanEdit) && config.exploreEnabled;
|
|
}
|
|
}
|
|
|
|
const contextSrv = new ContextSrv();
|
|
export { contextSrv };
|
|
|
|
coreModule.factory('contextSrv', () => {
|
|
return contextSrv;
|
|
});
|