Skip to content
New issue

Have a question about this project? # for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “#”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? # to your account

[WIP] Add the ability to set individual timers #94

Closed
wants to merge 1 commit into from
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
16 changes: 14 additions & 2 deletions src/browser/stores/DashboardStore.js
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@ var _dashboards = [];
var _currentIndex = 0;
var _config = null;
var _timer = null;
var _currentDuration = 0;


const DashboardStore = Reflux.createStore({
Expand All @@ -25,14 +26,23 @@ const DashboardStore = Reflux.createStore({

start() {
if (_config.rotationDuration && _dashboards.length > 1 && _timer === null) {
if (_dashboards[0].rotationDuration) {
_config.rotationCheckInterval = _config.rotationCheckInterval || 5000 // we check every 5seconds if we should rotate the dashboard
_config.rotationDuration = _config.rotationCheckInterval
}

_timer = setInterval(() => {
this.nextDashboard();
_currentDuration += _config.rotationCheckInterval
if (_currentDuration >= _dashboards[_currentIndex].rotationDuration) {
this.nextDashboard();
}
}, _config.rotationDuration);
}
},

previousDashboard() {
_currentIndex--;
_currentDuration = 0;
this.trigger(_currentIndex);
},

Expand All @@ -42,7 +52,8 @@ const DashboardStore = Reflux.createStore({
} else {
_currentIndex = 0;
}


_currentDuration = 0;
this.trigger(_currentIndex);
},

Expand All @@ -53,6 +64,7 @@ const DashboardStore = Reflux.createStore({

_dashboards = dashboards;
_currentIndex = 0;
_currentDuration = 0;

this.start();

Expand Down