Skip to content
Extraits de code Groupes Projets
Valider e793504a rédigé par Thomas Steur's avatar Thomas Steur
Parcourir les fichiers

refs #4179 handle persistent notifications

parent 3068233a
Aucune branche associée trouvée
Aucune étiquette associée trouvée
Aucune requête de fusion associée trouvée
...@@ -33,7 +33,9 @@ class Manager ...@@ -33,7 +33,9 @@ class Manager
$session = static::getSession(); $session = static::getSession();
$session->$id = $notification; $session->$id = $notification;
$session->setExpirationHops(1, $id); if (Notification::TYPE_PERSISTENT != $notification->type) {
$session->setExpirationHops(1, $id);
}
} }
public static function getAllNotificationsToDisplay() public static function getAllNotificationsToDisplay()
......
...@@ -25,6 +25,7 @@ use Piwik\Site; ...@@ -25,6 +25,7 @@ use Piwik\Site;
use Piwik\UpdateCheck; use Piwik\UpdateCheck;
use Piwik\Url; use Piwik\Url;
use Piwik\View; use Piwik\View;
use Piwik\Notification\Manager as NotificationManager;
/** /**
* *
...@@ -69,6 +70,12 @@ class Controller extends \Piwik\Plugin\Controller ...@@ -69,6 +70,12 @@ class Controller extends \Piwik\Plugin\Controller
echo $view->render(); echo $view->render();
} }
public function markNotificationAsRead()
{
$notificationId = Common::getRequestVar('notificationId');
NotificationManager::cancel($notificationId);
}
protected function getDefaultIndexView() protected function getDefaultIndexView()
{ {
$view = new View('@CoreHome/getDefaultIndexView'); $view = new View('@CoreHome/getDefaultIndexView');
......
...@@ -22,6 +22,11 @@ ...@@ -22,6 +22,11 @@
options = {}; options = {};
} }
if ('persistent' == options.type && options.noclear) {
// otherwise it is never possible to dismiss the notification
options.noclear = false;
}
var template = '<div class="notification'; var template = '<div class="notification';
if (options.context) { if (options.context) {
...@@ -37,7 +42,6 @@ ...@@ -37,7 +42,6 @@
template += '>'; template += '>';
if (!options.noclear) { if (!options.noclear) {
template += '<button type="button" class="close" data-dismiss="alert">&times;</button>'; template += '<button type="button" class="close" data-dismiss="alert">&times;</button>';
} }
...@@ -50,13 +54,17 @@ ...@@ -50,13 +54,17 @@
var notificationNode = $(template).appendTo('#notificationContainer'); var notificationNode = $(template).appendTo('#notificationContainer');
if (!options.noclear) { if ('persistent' == options.type) {
addCloseEvent(notificationNode); addPersistentEvent(notificationNode);
} }
if ('toast' == options.type) { if ('toast' == options.type) {
addToastEvent(notificationNode); addToastEvent(notificationNode);
} }
if (!options.noclear) {
addCloseEvent(notificationNode);
}
}; };
exports.Notification = Notification; exports.Notification = Notification;
...@@ -66,6 +74,7 @@ ...@@ -66,6 +74,7 @@
setTimeout(function () { setTimeout(function () {
notificationNode.fadeOut( 'slow', function() { notificationNode.fadeOut( 'slow', function() {
notificationNode.remove(); notificationNode.remove();
notificationNode = null;
}); });
}, 15 * 1000); }, 15 * 1000);
} }
...@@ -78,4 +87,16 @@ ...@@ -78,4 +87,16 @@
}); });
}; };
function addPersistentEvent(notificationNode) {
$(notificationNode).on('click', '.close', function (event) {
var ajaxHandler = new ajaxHelper();
ajaxHandler.addParams({
module: 'CoreHome',
action: 'markNotificationAsRead'
}, 'GET');
ajaxHandler.addParams({notificationId: $(notificationNode).data('id')}, 'POST');
ajaxHandler.send(true);
});
};
})(jQuery, require); })(jQuery, require);
\ No newline at end of file
0% Chargement en cours ou .
You are about to add 0 people to the discussion. Proceed with caution.
Terminez d'abord l'édition de ce message.
Veuillez vous inscrire ou vous pour commenter