Hi Team,
I need help invoking my custom JS to ACS Commons System Notification.
{I am using AEM SP21, ACS Commons 6.0.8}
Currently, I am facing an issue with System Notifications. I cannot Dismiss them; they always reappear when I switch within AEM consoles.
Created notification :
Now the notification is appearing in the consoles
While clicking on the Dismiss button it should hide dismiss or remove the notification, but due to limitation in ACS Commons 6.0.8 [https://github.com/Adobe-Consulting-Services/acs-aem-commons/blob/e3be724e64d084c66e169efefcccc28d0f...] we cannot remove it forever,
however, the fix is provided as part of https://github.com/Adobe-Consulting-Services/acs-aem-commons/pull/3370 of release https://github.com/Adobe-Consulting-Services/acs-aem-commons/releases/tag/acs-aem-commons-6.6.2
But Since We're not upgrading it to 6.6.2 as of now, I need to disable the dismiss icon,
I took the reference from JS
https://github.com/Adobe-Consulting-Services/acs-aem-commons/pull/3370/files#diff-53cf1ae19b10d58d31... and
I created my own JS to resolve this and here is the code :
$(function() {
// Define the key for storing dismissed notification UIDs in localStorage
var LOCAL_STORAGE_KEY = 'acs-commons-system-notifications-dismissed-uids';
// Function to load and filter notifications
function loadNotifications() {
// Fetch notifications HTML
$.get('/etc/acs-commons/notifications/_jcr_content.list.html', function(html) {
// Create a temporary container for the notifications HTML
var $tmp = $('<div>').html(html);
// Retrieve dismissed UIDs from localStorage and convert to array
var dismissedUids = localStorage.getItem(LOCAL_STORAGE_KEY) || '';
dismissedUids = dismissedUids ? dismissedUids.split(',') : [];
// Remove any notifications that have been dismissed
dismissedUids.forEach(function(uid) {
$tmp.find('[data-uid="' + uid + '"]').remove();
});
// Append remaining (non-dismissed) notifications to the body
$('body').append($tmp.html());
});
}
// Function to handle the dismissal of a notification
function dismissNotification(uid) {
// Retrieve current list of dismissed UIDs
var dismissedUids = localStorage.getItem(LOCAL_STORAGE_KEY) || '';
dismissedUids = dismissedUids ? dismissedUids.split(',') : [];
// Only add the UID if it hasn't been dismissed before
if (!dismissedUids.includes(uid)) {
dismissedUids.push(uid); // Add new UID to array
localStorage.setItem(LOCAL_STORAGE_KEY, dismissedUids.join(',')); // Save updated list to localStorage
}
}
// Load and display notifications
loadNotifications();
// Event listener for dismissing notifications
$('body').on('click', '.acsCommons-System-Notification-dismiss', function(e) {
e.preventDefault(); // Prevent default link behavior
// Get the notification element and UID
var $notification = $(this).closest('.acsCommons-System-Notification');
var uid = $notification.data('uid'); // Retrieve UID of the notification
// Dismiss the notification
dismissNotification(uid);
// Remove the notification from the page
$notification.remove();
});
});
Just for testing while putting this JS under OOB it works fine
But as we cannot directly make changes in OOB feature,
how can I implement this in my project?
Thanks
@lukasz-m @kautuk_sahni @arunpatidar
Solved! Go to Solution.
Topics help categorize Community content and increase your ability to discover relevant content.
Views
Replies
Total Likes
I tried checking where exactly they are including this clientlib but couldn't find anything other than SystemNotificationsImpl.java
So, it seems they are including it from this OSGI component from the backend and not in the traditional way that you would think, in which case trying to include using clientlib options might not work. So, in order to include your custom js, you will probably have to override SystemNotificationsImpl.java as well in your project.
Hope this helps.
Views
Replies
Total Likes
Hi,
In your project, you typically create a clientlib with the same categories and dependencies as the original one, then override the JS there with the changes you need.
Hope this helps
I tried to create the same let say I created the clientLib with same category name
like from /apps/acs-commons/components/utilities/system-notifications/notification/clientlibs
to : let say weretail page
/apps/weretail/clientlibs/clientlibs-notification with same category, and added one js custom-notification.js and in that just printed alert("Hi"), but it is not appearing in console, please suggest me if anything I am missing
?
Thanks
Views
Replies
Total Likes
Hi @tushaar_srivastava
You can create your won clientlibs with same category and load only dismiss/onclick code in js. It should work as both(ACS Coomon and custom) the js files will be loaded and executed.
Hi @arunpatidar ,
I tried to create the same let say I created the clientLib with same category name
like from /apps/acs-commons/components/utilities/system-notifications/notification/clientlibs
to : let say weretail page
/apps/weretail/clientlibs/clientlibs-notification with same category, and added one js custom-notification.js and in that just printed alert("Hi"), but it is not appearing in console, please suggest me if anything I am missing
?
Thanks
Views
Replies
Total Likes
Hi @tushaar_srivastava
Could you please check if your script is loading or not from Network tab?
Views
Replies
Total Likes
I tried checking where exactly they are including this clientlib but couldn't find anything other than SystemNotificationsImpl.java
So, it seems they are including it from this OSGI component from the backend and not in the traditional way that you would think, in which case trying to include using clientlib options might not work. So, in order to include your custom js, you will probably have to override SystemNotificationsImpl.java as well in your project.
Hope this helps.
Views
Replies
Total Likes
Views
Likes
Replies
Views
Likes
Replies