mirror of
https://github.com/grafana/grafana.git
synced 2026-09-05 04:40:13 -05:00
Themes: Switch theme without reload using global shortcut (#32180)
* Themes: Switch theme without reload using global shortcut * Review updates
This commit is contained in:
@@ -1,71 +0,0 @@
|
||||
import { coreModule, NavModelSrv } from 'app/core/core';
|
||||
import { dateTimeFormat, dateTimeFormatTimeAgo } from '@grafana/data';
|
||||
import { UserSession } from 'app/types';
|
||||
import { getBackendSrv } from '@grafana/runtime';
|
||||
import { promiseToDigest } from 'app/core/utils/promiseToDigest';
|
||||
import { IScope } from 'angular';
|
||||
|
||||
export class ProfileCtrl {
|
||||
sessions: object[] = [];
|
||||
navModel: any;
|
||||
|
||||
/** @ngInject */
|
||||
constructor(private $scope: IScope, navModelSrv: NavModelSrv) {
|
||||
this.getUserSessions();
|
||||
this.navModel = navModelSrv.getNav('profile', 'profile-settings', 0);
|
||||
}
|
||||
|
||||
getUserSessions() {
|
||||
promiseToDigest(this.$scope)(
|
||||
getBackendSrv()
|
||||
.get('/api/user/auth-tokens')
|
||||
.then((sessions: UserSession[]) => {
|
||||
sessions.reverse();
|
||||
|
||||
const found = sessions.findIndex((session: UserSession) => {
|
||||
return session.isActive;
|
||||
});
|
||||
|
||||
if (found) {
|
||||
const now = sessions[found];
|
||||
sessions.splice(found, found);
|
||||
sessions.unshift(now);
|
||||
}
|
||||
|
||||
this.sessions = sessions.map((session: UserSession) => {
|
||||
return {
|
||||
id: session.id,
|
||||
isActive: session.isActive,
|
||||
seenAt: dateTimeFormatTimeAgo(session.seenAt),
|
||||
createdAt: dateTimeFormat(session.createdAt, { format: 'MMMM DD, YYYY' }),
|
||||
clientIp: session.clientIp,
|
||||
browser: session.browser,
|
||||
browserVersion: session.browserVersion,
|
||||
os: session.os,
|
||||
osVersion: session.osVersion,
|
||||
device: session.device,
|
||||
};
|
||||
});
|
||||
})
|
||||
);
|
||||
}
|
||||
|
||||
revokeUserSession(tokenId: number) {
|
||||
promiseToDigest(this.$scope)(
|
||||
getBackendSrv()
|
||||
.post('/api/user/revoke-auth-token', {
|
||||
authTokenId: tokenId,
|
||||
})
|
||||
.then(() => {
|
||||
this.sessions = this.sessions.filter((session: UserSession) => {
|
||||
if (session.id === tokenId) {
|
||||
return false;
|
||||
}
|
||||
return true;
|
||||
});
|
||||
})
|
||||
);
|
||||
}
|
||||
}
|
||||
|
||||
coreModule.controller('ProfileCtrl', ProfileCtrl);
|
||||
Reference in New Issue
Block a user