mirror of
https://github.com/grafana/grafana.git
synced 2025-02-15 10:03:33 -06:00
51 lines
1.2 KiB
TypeScript
51 lines
1.2 KiB
TypeScript
import { filter, isArray, isNumber } from 'lodash';
|
|
|
|
import config from 'app/core/config';
|
|
import store from 'app/core/store';
|
|
|
|
export class ImpressionSrv {
|
|
constructor() {}
|
|
|
|
addDashboardImpression(dashboardId: number) {
|
|
const impressionsKey = this.impressionKey();
|
|
let impressions = [];
|
|
if (store.exists(impressionsKey)) {
|
|
impressions = JSON.parse(store.get(impressionsKey));
|
|
if (!isArray(impressions)) {
|
|
impressions = [];
|
|
}
|
|
}
|
|
|
|
impressions = impressions.filter((imp) => {
|
|
return dashboardId !== imp;
|
|
});
|
|
|
|
impressions.unshift(dashboardId);
|
|
|
|
if (impressions.length > 50) {
|
|
impressions.pop();
|
|
}
|
|
store.set(impressionsKey, JSON.stringify(impressions));
|
|
}
|
|
|
|
/** Returns an array of internal (numeric) dashboard IDs */
|
|
getDashboardOpened(): number[] {
|
|
let impressions = store.get(this.impressionKey()) || '[]';
|
|
|
|
impressions = JSON.parse(impressions);
|
|
|
|
impressions = filter(impressions, (el) => {
|
|
return isNumber(el);
|
|
});
|
|
|
|
return impressions;
|
|
}
|
|
|
|
impressionKey() {
|
|
return 'dashboard_impressions-' + config.bootData.user.orgId;
|
|
}
|
|
}
|
|
|
|
const impressionSrv = new ImpressionSrv();
|
|
export default impressionSrv;
|