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) => {
|
|
|
|
$scope.messages = window.systemMessages
|
|
|
|
var pollSystemMessages = function() {
|
|
|
|
$http
|
|
|
|
.get('/system/messages')
|
|
|
|
.then(response => {
|
|
|
|
$scope.messages = response.data
|
|
|
|
})
|
|
|
|
.catch(() => {
|
|
|
|
// ignore errors
|
|
|
|
})
|
|
|
|
}
|
|
|
|
pollSystemMessages()
|
|
|
|
setInterval(pollSystemMessages, MESSAGE_POLL_INTERVAL)
|
|
|
|
})
|
2018-11-05 05:06:39 -05:00
|
|
|
|
2020-05-19 05:02:56 -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
|
|
|
|
2020-05-19 05:02:56 -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)
|
|
|
|
}
|
2018-11-05 05:06:39 -05:00
|
|
|
})
|
|
|
|
})
|