mirror of
https://github.com/grafana/grafana.git
synced 2025-02-25 18:55:37 -06:00
70 lines
1.8 KiB
TypeScript
70 lines
1.8 KiB
TypeScript
import config from 'app/core/config';
|
|
import { coreModule } from 'app/core/core';
|
|
|
|
export class ProfileCtrl {
|
|
user: any;
|
|
old_theme: any;
|
|
teams: any = [];
|
|
orgs: any = [];
|
|
userForm: any;
|
|
showTeamsList = false;
|
|
showOrgsList = false;
|
|
readonlyLoginFields = config.disableLoginForm;
|
|
navModel: any;
|
|
|
|
/** @ngInject **/
|
|
constructor(private backendSrv, private contextSrv, private $location, navModelSrv) {
|
|
this.getUser();
|
|
this.getUserTeams();
|
|
this.getUserOrgs();
|
|
this.navModel = navModelSrv.getNav('profile', 'profile-settings', 0);
|
|
}
|
|
|
|
getUser() {
|
|
this.backendSrv.get('/api/user').then(user => {
|
|
this.user = user;
|
|
this.user.theme = user.theme || 'dark';
|
|
});
|
|
}
|
|
|
|
getUserTeams() {
|
|
console.log(this.backendSrv.get('/api/teams'));
|
|
this.backendSrv.get('/api/user').then(teams => {
|
|
this.user.teams = [
|
|
{ name: 'Backend', email: 'backend@grafana.com', members: 2 },
|
|
{ name: 'Frontend', email: 'frontend@grafana.com', members: 2 },
|
|
{ name: 'Ops', email: 'ops@grafana.com', members: 2 },
|
|
];
|
|
this.showTeamsList = this.user.teams.length > 1;
|
|
});
|
|
}
|
|
|
|
getUserOrgs() {
|
|
this.backendSrv.get('/api/user/orgs').then(orgs => {
|
|
this.orgs = orgs;
|
|
this.showOrgsList = orgs.length > 1;
|
|
});
|
|
}
|
|
|
|
setUsingOrg(org) {
|
|
this.backendSrv.post('/api/user/using/' + org.orgId).then(() => {
|
|
window.location.href = config.appSubUrl + '/profile';
|
|
});
|
|
}
|
|
|
|
update() {
|
|
if (!this.userForm.$valid) {
|
|
return;
|
|
}
|
|
|
|
this.backendSrv.put('/api/user/', this.user).then(() => {
|
|
this.contextSrv.user.name = this.user.name || this.user.login;
|
|
if (this.old_theme !== this.user.theme) {
|
|
window.location.href = config.appSubUrl + this.$location.path();
|
|
}
|
|
});
|
|
}
|
|
}
|
|
|
|
coreModule.controller('ProfileCtrl', ProfileCtrl);
|