mirror of
https://github.com/grafana/grafana.git
synced 2025-02-16 18:34:52 -06:00
48 lines
1.1 KiB
JavaScript
48 lines
1.1 KiB
JavaScript
define([
|
|
'angular',
|
|
'lodash',
|
|
'../core_module',
|
|
'app/core/store',
|
|
'app/core/config',
|
|
],
|
|
function (angular, _, coreModule, store, config) {
|
|
'use strict';
|
|
|
|
coreModule.default.service('contextSrv', function() {
|
|
|
|
function User() {
|
|
if (config.bootData.user) {
|
|
_.extend(this, config.bootData.user);
|
|
}
|
|
}
|
|
|
|
this.hasRole = function(role) {
|
|
return this.user.orgRole === role;
|
|
};
|
|
|
|
this.setPinnedState = function(val) {
|
|
this.pinned = val;
|
|
store.set('grafana.sidemenu.pinned', val);
|
|
};
|
|
|
|
this.toggleSideMenu = function() {
|
|
this.sidemenu = !this.sidemenu;
|
|
if (!this.sidemenu) {
|
|
this.setPinnedState(false);
|
|
}
|
|
};
|
|
|
|
this.pinned = store.getBool('grafana.sidemenu.pinned', false);
|
|
if (this.pinned) {
|
|
this.sidemenu = true;
|
|
}
|
|
|
|
this.version = config.buildInfo.version;
|
|
this.lightTheme = false;
|
|
this.user = new User();
|
|
this.isSignedIn = this.user.isSignedIn;
|
|
this.isGrafanaAdmin = this.user.isGrafanaAdmin;
|
|
this.isEditor = this.hasRole('Editor') || this.hasRole('Admin');
|
|
});
|
|
});
|