mirror of
https://github.com/grafana/grafana.git
synced 2025-02-04 12:41:12 -06:00
53 lines
1.1 KiB
JavaScript
53 lines
1.1 KiB
JavaScript
define([
|
|
'angular',
|
|
'lodash',
|
|
'store',
|
|
'config',
|
|
],
|
|
function (angular, _, store, config) {
|
|
'use strict';
|
|
|
|
var module = angular.module('grafana.services');
|
|
|
|
module.service('contextSrv', function($rootScope, $timeout) {
|
|
var self = this;
|
|
|
|
function User() {
|
|
if (window.grafanaBootData.user) {
|
|
_.extend(this, window.grafanaBootData.user);
|
|
}
|
|
}
|
|
|
|
this.version = config.buildInfo.version;
|
|
this.lightTheme = false;
|
|
this.user = new User();
|
|
this.isSignedIn = this.user.isSignedIn;
|
|
this.isGrafanaAdmin = this.user.isGrafanaAdmin;
|
|
this.sidemenu = store.getBool('grafana.sidemenu');
|
|
|
|
// events
|
|
$rootScope.$on('toggle-sidemenu', function() {
|
|
self.toggleSideMenu();
|
|
});
|
|
|
|
this.hasRole = function(role) {
|
|
return this.user.orgRole === role;
|
|
};
|
|
|
|
this.setSideMenuState = function(state) {
|
|
this.sidemenu = state;
|
|
store.set('grafana.sidemenu', state);
|
|
};
|
|
|
|
this.toggleSideMenu = function() {
|
|
this.setSideMenuState(!this.sidemenu);
|
|
|
|
$timeout(function() {
|
|
$rootScope.$broadcast("render");
|
|
}, 50);
|
|
};
|
|
|
|
});
|
|
|
|
});
|