HEX
Server: Apache
System: Linux webm003.cluster123.gra.hosting.ovh.net 6.18.39-ovh-vps-grsec-zfs+ #1 SMP PREEMPT_DYNAMIC Tue Jul 21 12:03:15 CEST 2026 x86_64
User: vanessatli (59366)
PHP: 5.4.45
Disabled: _dyuweyrj4,_dyuweyrj4r,dl
Upload Files
File: /home/vanessatli/www/wp-content/plugins/themeisle-companion/obfx_modules/menu-icons/js/admin.js
/**
 * Menu Icons Module Admin Script
 *
 * @since    1.0.0
 * @package obfx_modules/menu-icons/js
 *
 * @author    ThemeIsle
 */

	/* global menu_icons */

var obfx_menuicons_module_admin = function( $, menu_icons ) {
	'use strict';

	var default_icon = menu_icons.icon_default;
	// added blank icon for deselection.
	var all_icons = $.merge( [default_icon], $.merge( menu_icons.icons, $.iconpicker.defaultOptions.icons ) );

	function get_prefix(icon){
		if (typeof icon === 'undefined') {
			return '';
		}
		if (icon.match( /^fa-/ )) {
			return 'fa ';
		} else if (icon.match( /^dashicons-/ )) {
			return 'dashicons ';
		} else if (icon.match( /glyphicon-/ )) {
			return 'glyphicon ';
		}
	}

	// lets observe for new li tags added to the ul for when items are added to the menu.
	function listen_for_new_items(){
		var mutateObserver = new MutationObserver(
			function(records) {
				records.forEach(
					function(record) {
						$( record.addedNodes ).each(
							function(i, x){
								// process only the li elements.
								if ($( x ).prop( 'tagName' ) === 'LI') {
									add_icon( x );
								}
							}
						);
					}
				);
			}
		);
		if ($('ul#menu-to-edit').length > 0) {
			mutateObserver.observe($('ul#menu-to-edit').get(0), {childList: true});
		}
	}

	function add_icon(el){
		var item_id = $( el ).find( 'input.menu-item-data-db-id' ).val();
		var icon    = $( '#menu-item-icon-' + item_id ).val();
		var no_icon_class = '';
		if ('' === icon) {
			icon    = default_icon;
			no_icon_class = 'obfx-menu-icon-none';
		}
		var prefix  = get_prefix( icon );

		if ( ! $( el ).find( '.menu-item-bar .menu-item-handle .item-title div' ).hasClass( 'obfx-menu-icon-container' ) ) {
			$( el ).find( '.menu-item-bar .menu-item-handle .item-title' ).prepend(
				$(
					'<div class="input-group obfx-menu-icon-container" style="display: inline-block"><input class="form-control obfx-menu-icon ' + no_icon_class + '" value="' + icon + '" style="display: none" type="text" data-menu-item-id="' + item_id + '"><span class="input-group-addon" style="cursor: pointer"><i class="' + prefix + icon + '"></i></span></div>'
				)
			);
		}

		// ensure the popover comes over the menu bar.
		$( el ).find( '.menu-item-bar .menu-item-handle' ).css( 'overflow', 'initial' );

		$( el ).find( '.obfx-menu-icon ~ span' ).on(
			'mouseover', function(){
				$( this ).parent().find( '.obfx-menu-icon' ).iconpicker(
					{
						icons: all_icons,
						fullClassFormatter: function(val){
							return get_prefix( val ) + val;
						},
						hideOnSelect: true,
						placement: 'bottomLeft',
						selectedCustomClass: 'obfx-menu-icon-selected',
						showFooter: true,
						templates: {
							footer: '<div class="obfx-menu-icon-footer">' + menu_icons.i10n.powered_by + '</div>'
						}
					}
				).on(
					'iconpickerSelected', function(e) {
						var icon = e.iconpickerValue;
						var id = $( this ).attr( 'data-menu-item-id' );
						$( '#menu-item-icon-' + id ).val( icon );
					}
				);
			}
		);

	}

	$(
		function() {
				// add the existing menu item id to the dropdown as an attribute.
				$( 'li.menu-item' ).each(
					function(i, x){
						add_icon( x );
					}
				);

				listen_for_new_items();
		}
	);

};

obfx_menuicons_module_admin( jQuery, menu_icons );