File: /home/honghock/www/wp-content/plugins/searchwp-live-ajax-search/assets/js/admin/notifications.js
/* global _SEARCHWP_LIVE_SEARCH */
( function($) {
'use strict';
const app = {
/**
* Init.
*
* @since 1.7.3
*/
init: () => {
$( app.ready );
},
/**
* Document ready
*
* @since 1.7.3
*/
ready: () => {
app.events();
},
/**
* Extension page events.
*
* @since 1.7.3
*/
events: () => {
const $notificationsPanel = $( '.searchwp-notifications-panel-wrapper' );
const showNotificationsPanelOnHash = () => {
if ( window.location.hash === '#notifications' ) {
$notificationsPanel.show();
}
};
showNotificationsPanelOnHash();
$( window ).on( 'hashchange', showNotificationsPanelOnHash );
$( '.searchwp-admin-menu-notification-indicator' ).parent()
.on( 'click', showNotificationsPanelOnHash );
$( '#swp-notifications-page-header-button' )
.on( 'click', () => $notificationsPanel.show() );
$( '.searchwp-notifications-panel__close' )
.on( 'click', () => $notificationsPanel.hide() );
$( '.searchwp-notifications-backdrop' )
.on( 'click', () => $notificationsPanel.hide() );
$( '.searchwp-notification-dismiss' ).on( 'click', app.dismiss );
},
/**
* Dismiss notification.
*
* @since 1.7.3
*/
dismiss: ( event ) => {
const $el = $( event.target );
// AJAX call - update option.
const data = {
_ajax_nonce: _SEARCHWP_LIVE_SEARCH.nonce,
action: _SEARCHWP_LIVE_SEARCH.prefix + 'notification_dismiss',
id: $el.data( 'id' ),
};
const $notification = $el.closest( '.searchwp-notifications-notification' );
const handleResponse = ( res ) => {
if ( res.success ) {
$notification.fadeOut(
100,
() => {
$notification.remove();
app.updateNotificationCount();
}
);
}
};
$.post( ajaxurl, data, handleResponse );
},
/**
* Update notification count in various places or reload the page if no notifications left.
*
* @since 1.7.3
*/
updateNotificationCount: () => {
const notificationsCount = $( '.searchwp-notifications-panel__notifications .searchwp-notifications-notification' ).length;
$( '.searchwp-branding-bar__actions-button-count' ).text( notificationsCount );
$( '.searchwp-notifications-panel__header span span' ).text( notificationsCount );
if ( notificationsCount !== 0 ) {
return;
}
$( '.swp-notifications--empty-notifications-message' ).show();
if ( window.location.hash ) {
window.location.hash = '';
}
location.reload();
}
};
app.init();
window.searchwp = window.searchwp || {};
window.searchwp.LiveSearchAdminNotifications = app;
}( jQuery ) );