overleaf/services/web/frontend/js/main/system-messages.js
Brian Gough 509c23def7 Merge pull request #2631 from overleaf/bg-maintenance-messages-in-editor
display maintenance messages in editor

GitOrigin-RevId: 7d4fda60c5e2bd12d2cead2a9bff326b75e9c4e7
2020-02-27 04:17:59 +00:00

46 lines
1.5 KiB
JavaScript

/* eslint-disable
max-len,
no-return-assign,
no-undef,
*/
// 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
*/
define(['base'], function(App) {
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)
})
// Controller for individual message (show/hide)
return 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
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)
}
})
})
})