2018-11-05 05:06:39 -05:00
|
|
|
/* eslint-disable
|
|
|
|
max-len,
|
|
|
|
no-return-assign,
|
|
|
|
*/
|
|
|
|
// TODO: This file was created by bulk-decaffeinate.
|
|
|
|
// Fix any style issues and re-enable lint.
|
|
|
|
/*
|
|
|
|
* decaffeinate suggestions:
|
|
|
|
* DS102: Remove unnecessary code created because of implicit returns
|
|
|
|
* Full docs: https://github.com/decaffeinate/decaffeinate/blob/master/docs/suggestions.md
|
|
|
|
*/
|
2020-05-19 05:02:56 -04:00
|
|
|
import App from '../base'
|
|
|
|
const MESSAGE_POLL_INTERVAL = 15 * 60 * 1000
|
|
|
|
// Controller for messages (array)
|
|
|
|
App.controller('SystemMessagesController', ($http, $scope) => {
|
2020-05-22 07:16:42 -04:00
|
|
|
$scope.messages = []
|
2021-10-26 04:08:56 -04:00
|
|
|
function pollSystemMessages() {
|
2020-05-22 07:16:42 -04:00
|
|
|
// Ignore polling if tab is hidden or browser is offline
|
|
|
|
if (document.hidden || !navigator.onLine) {
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2020-05-19 05:02:56 -04:00
|
|
|
$http
|
|
|
|
.get('/system/messages')
|
|
|
|
.then(response => {
|
2020-05-22 07:16:42 -04:00
|
|
|
// Ignore if content-type is anything but JSON, prevents a bug where
|
|
|
|
// the user logs out in another tab, then a 302 redirect was returned,
|
|
|
|
// which is transparently resolved by the browser to the login (HTML)
|
|
|
|
// page.
|
|
|
|
// This then caused an Angular error where it was attempting to loop
|
|
|
|
// through the HTML as a string
|
|
|
|
if (response.headers('content-type').includes('json')) {
|
|
|
|
$scope.messages = response.data
|
|
|
|
}
|
2020-05-19 05:02:56 -04:00
|
|
|
})
|
|
|
|
.catch(() => {
|
|
|
|
// ignore errors
|
|
|
|
})
|
|
|
|
}
|
|
|
|
pollSystemMessages()
|
|
|
|
setInterval(pollSystemMessages, MESSAGE_POLL_INTERVAL)
|
|
|
|
})
|
2018-11-05 05:06:39 -05:00
|
|
|
|
2021-04-14 09:17:21 -04:00
|
|
|
export default App.controller(
|
|
|
|
'SystemMessageController',
|
|
|
|
function ($scope, $sce) {
|
|
|
|
$scope.hidden = $.localStorage(`systemMessage.hide.${$scope.message._id}`)
|
|
|
|
$scope.protected = $scope.message._id === 'protected'
|
|
|
|
$scope.htmlContent = $scope.message.content
|
2018-11-05 05:06:39 -05:00
|
|
|
|
2021-04-14 09:17:21 -04:00
|
|
|
return ($scope.hide = function () {
|
|
|
|
if (!$scope.protected) {
|
|
|
|
// do not allow protected messages to be hidden
|
|
|
|
$scope.hidden = true
|
|
|
|
return $.localStorage(`systemMessage.hide.${$scope.message._id}`, true)
|
|
|
|
}
|
|
|
|
})
|
|
|
|
}
|
|
|
|
)
|