mirror of
https://github.com/grafana/grafana.git
synced 2025-02-15 01:53:33 -06:00
* Chore: Remove angular dependency from backendSrv * Refactor: Naive soultion for logging out unauthorized users * Refactor: Restructures to different streams * Refactor: Restructures datasourceRequest * Refactor: Flipped back if statement * Refactor: Extracted getFromFetchStream * Refactor: Extracts toFailureStream operation * Refactor: Fixes issue when options.params contains arrays * Refactor: Fixes broken test (but we need a lot more) * Refactor: Adds explaining comments * Refactor: Adds latest RxJs version so cancellations work * Refactor: Cleans up the takeUntil code * Refactor: Adds tests for request function * Refactor: Separates into smaller functions * Refactor: Adds last error tests * Started to changed so we require getBackendSrv from the @grafana-runtime when applicable. * Using the getBackendSrv from @grafana/runtime. * Changed so we use the getBackendSrv from the @grafana-runtime when possible. * Fixed so Server Admin -> Orgs works again. * Removed unused dependency. * Fixed digest issues on the Server Admin -> Users page. * Fix: Fixes digest problems in Playlists * Fix: Fixes digest issues in VersionHistory * Tests: Fixes broken tests * Fix: Fixes digest issues in Alerting => Notification channels * Fixed digest issues on the Intive page. * Fixed so we run digest after password reset email sent. * Fixed digest issue when trying to sign up account. * Fixed so the Server Admin -> Edit Org works with backendSrv * Fixed so Server Admin -> Users works with backend srv. * Fixed digest issues in Server Admin -> Orgs * Fix: Fixes digest issues in DashList plugin * Fixed digest issues on Server Admin -> users. * Fix: Fixes digest issues with Snapshots * Fixed digest issue when deleting a user. * Fix: Fixes digest issues with dashLink * Chore: Changes RxJs version to 6.5.4 which includes the same cancellation fix * Fix: Fixes digest issue when toggling folder in manage dashboards * Fix: Fixes bug in executeInOrder * Fix: Fixes digest issue with CreateFolderCtrl and FolderDashboardsCtrl * Fix: Fixes tslint error in test * Refactor: Changes default behaviour for emitted messages as before migration * Fix: Fixes various digest issues when saving, starring or deleting dashboards * Fix: Fixes digest issues with FolderPickerCtrl * Fixed digest issue. * Fixed digest issues. * Fixed issues with angular digest. * Removed the this.digest pattern. Co-authored-by: Hugo Häggmark <hugo.haggmark@gmail.com> Co-authored-by: Marcus Andersson <systemvetaren@gmail.com>
130 lines
3.5 KiB
TypeScript
130 lines
3.5 KiB
TypeScript
// Libraries
|
|
import _ from 'lodash';
|
|
|
|
// Utils
|
|
import { toUrlParams } from 'app/core/utils/url';
|
|
import coreModule from '../../core/core_module';
|
|
import appEvents from 'app/core/app_events';
|
|
import locationUtil from 'app/core/utils/location_util';
|
|
import kbn from 'app/core/utils/kbn';
|
|
import { store } from 'app/store/store';
|
|
import { CoreEvents } from 'app/types';
|
|
import { getBackendSrv } from '@grafana/runtime';
|
|
|
|
export const queryParamsToPreserve: { [key: string]: boolean } = {
|
|
kiosk: true,
|
|
autofitpanels: true,
|
|
orgId: true,
|
|
};
|
|
|
|
export class PlaylistSrv {
|
|
private cancelPromise: any;
|
|
private dashboards: Array<{ url: string }>;
|
|
private index: number;
|
|
private interval: number;
|
|
private startUrl: string;
|
|
private numberOfLoops = 0;
|
|
private storeUnsub: () => void;
|
|
private validPlaylistUrl: string;
|
|
isPlaying: boolean;
|
|
|
|
/** @ngInject */
|
|
constructor(private $location: any, private $timeout: any) {}
|
|
|
|
next() {
|
|
this.$timeout.cancel(this.cancelPromise);
|
|
|
|
const playedAllDashboards = this.index > this.dashboards.length - 1;
|
|
if (playedAllDashboards) {
|
|
this.numberOfLoops++;
|
|
|
|
// This does full reload of the playlist to keep memory in check due to existing leaks but at the same time
|
|
// we do not want page to flicker after each full loop.
|
|
if (this.numberOfLoops >= 3) {
|
|
window.location.href = this.startUrl;
|
|
return;
|
|
}
|
|
this.index = 0;
|
|
}
|
|
|
|
const dash = this.dashboards[this.index];
|
|
const queryParams = this.$location.search();
|
|
const filteredParams = _.pickBy(queryParams, (value: any, key: string) => queryParamsToPreserve[key]);
|
|
const nextDashboardUrl = locationUtil.stripBaseFromUrl(dash.url);
|
|
|
|
// this is done inside timeout to make sure digest happens after
|
|
// as this can be called from react
|
|
this.$timeout(() => {
|
|
this.$location.url(nextDashboardUrl + '?' + toUrlParams(filteredParams));
|
|
});
|
|
|
|
this.index++;
|
|
this.validPlaylistUrl = nextDashboardUrl;
|
|
this.cancelPromise = this.$timeout(() => this.next(), this.interval);
|
|
}
|
|
|
|
prev() {
|
|
this.index = Math.max(this.index - 2, 0);
|
|
this.next();
|
|
}
|
|
|
|
// Detect url changes not caused by playlist srv and stop playlist
|
|
storeUpdated() {
|
|
const state = store.getState();
|
|
|
|
if (state.location.path !== this.validPlaylistUrl) {
|
|
this.stop();
|
|
}
|
|
}
|
|
|
|
start(playlistId: number) {
|
|
this.stop();
|
|
|
|
this.startUrl = window.location.href;
|
|
this.index = 0;
|
|
this.isPlaying = true;
|
|
|
|
// setup location tracking
|
|
this.storeUnsub = store.subscribe(() => this.storeUpdated());
|
|
this.validPlaylistUrl = this.$location.path();
|
|
|
|
appEvents.emit(CoreEvents.playlistStarted);
|
|
|
|
return getBackendSrv()
|
|
.get(`/api/playlists/${playlistId}`)
|
|
.then((playlist: any) => {
|
|
return getBackendSrv()
|
|
.get(`/api/playlists/${playlistId}/dashboards`)
|
|
.then((dashboards: any) => {
|
|
this.dashboards = dashboards;
|
|
this.interval = kbn.interval_to_ms(playlist.interval);
|
|
this.next();
|
|
});
|
|
});
|
|
}
|
|
|
|
stop() {
|
|
if (this.isPlaying) {
|
|
const queryParams = this.$location.search();
|
|
if (queryParams.kiosk) {
|
|
appEvents.emit(CoreEvents.toggleKioskMode, { exit: true });
|
|
}
|
|
}
|
|
|
|
this.index = 0;
|
|
this.isPlaying = false;
|
|
|
|
if (this.storeUnsub) {
|
|
this.storeUnsub();
|
|
}
|
|
|
|
if (this.cancelPromise) {
|
|
this.$timeout.cancel(this.cancelPromise);
|
|
}
|
|
|
|
appEvents.emit(CoreEvents.playlistStopped);
|
|
}
|
|
}
|
|
|
|
coreModule.service('playlistSrv', PlaylistSrv);
|