mirror of
https://github.com/grafana/grafana.git
synced 2024-12-01 21:19:28 -06:00
49 lines
1.1 KiB
TypeScript
49 lines
1.1 KiB
TypeScript
import store from 'app/core/store';
|
|
import _ from 'lodash';
|
|
import config from 'app/core/config';
|
|
|
|
export class ImpressionSrv {
|
|
constructor() {}
|
|
|
|
addDashboardImpression(dashboardId) {
|
|
var impressionsKey = this.impressionKey(config);
|
|
var 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));
|
|
}
|
|
|
|
getDashboardOpened() {
|
|
var impressions = store.get(this.impressionKey(config)) || '[]';
|
|
|
|
impressions = JSON.parse(impressions);
|
|
|
|
impressions = _.filter(impressions, el => {
|
|
return _.isNumber(el);
|
|
});
|
|
|
|
return impressions;
|
|
}
|
|
|
|
impressionKey(config) {
|
|
return 'dashboard_impressions-' + config.bootData.user.orgId;
|
|
}
|
|
}
|
|
|
|
const impressionSrv = new ImpressionSrv();
|
|
export default impressionSrv;
|