wp/wp-admin/js/nav-menu.js
author ymh <ymh.work@gmail.com>
Wed, 21 Sep 2022 18:19:35 +0200
changeset 18 be944660c56a
parent 16 a86126ab1dd4
child 19 3d72ae0968f4
permissions -rw-r--r--
Site enmi version 09/2022
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
0
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
     1
/**
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
     2
 * WordPress Administration Navigation Menu
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
     3
 * Interface JS functions
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
     4
 *
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
     5
 * @version 2.0.0
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
     6
 *
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
     7
 * @package WordPress
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
     8
 * @subpackage Administration
9
177826044cd9 upgrade wordpress to 5.2.3
ymh <ymh.work@gmail.com>
parents: 7
diff changeset
     9
 * @output wp-admin/js/nav-menu.js
0
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
    10
 */
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
    11
16
a86126ab1dd4 update enmi-conf
ymh <ymh.work@gmail.com>
parents: 9
diff changeset
    12
/* global menus, postboxes, columns, isRtl, ajaxurl, wpNavMenu */
0
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
    13
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
    14
(function($) {
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
    15
5
5e2f62d02dcd upgrade wordpress + plugins
ymh <ymh.work@gmail.com>
parents: 0
diff changeset
    16
	var api;
5e2f62d02dcd upgrade wordpress + plugins
ymh <ymh.work@gmail.com>
parents: 0
diff changeset
    17
9
177826044cd9 upgrade wordpress to 5.2.3
ymh <ymh.work@gmail.com>
parents: 7
diff changeset
    18
	/**
177826044cd9 upgrade wordpress to 5.2.3
ymh <ymh.work@gmail.com>
parents: 7
diff changeset
    19
	 * Contains all the functions to handle WordPress navigation menus administration.
177826044cd9 upgrade wordpress to 5.2.3
ymh <ymh.work@gmail.com>
parents: 7
diff changeset
    20
	 *
177826044cd9 upgrade wordpress to 5.2.3
ymh <ymh.work@gmail.com>
parents: 7
diff changeset
    21
	 * @namespace wpNavMenu
177826044cd9 upgrade wordpress to 5.2.3
ymh <ymh.work@gmail.com>
parents: 7
diff changeset
    22
	 */
177826044cd9 upgrade wordpress to 5.2.3
ymh <ymh.work@gmail.com>
parents: 7
diff changeset
    23
	api = window.wpNavMenu = {
0
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
    24
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
    25
		options : {
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
    26
			menuItemDepthPerLevel : 30, // Do not use directly. Use depthToPx and pxToDepth instead.
7
cf61fcea0001 resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents: 5
diff changeset
    27
			globalMaxDepth:  11,
cf61fcea0001 resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents: 5
diff changeset
    28
			sortableItems:   '> *',
cf61fcea0001 resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents: 5
diff changeset
    29
			targetTolerance: 0
0
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
    30
		},
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
    31
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
    32
		menuList : undefined,	// Set in init.
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
    33
		targetList : undefined, // Set in init.
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
    34
		menusChanged : false,
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
    35
		isRTL: !! ( 'undefined' != typeof isRtl && isRtl ),
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
    36
		negateIfRTL: ( 'undefined' != typeof isRtl && isRtl ) ? -1 : 1,
7
cf61fcea0001 resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents: 5
diff changeset
    37
		lastSearch: '',
0
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
    38
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
    39
		// Functions that run on init.
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
    40
		init : function() {
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
    41
			api.menuList = $('#menu-to-edit');
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
    42
			api.targetList = api.menuList;
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
    43
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
    44
			this.jQueryExtensions();
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
    45
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
    46
			this.attachMenuEditListeners();
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
    47
18
be944660c56a Site enmi version 09/2022
ymh <ymh.work@gmail.com>
parents: 16
diff changeset
    48
			this.attachBulkSelectButtonListeners();
be944660c56a Site enmi version 09/2022
ymh <ymh.work@gmail.com>
parents: 16
diff changeset
    49
			this.attachMenuCheckBoxListeners();
be944660c56a Site enmi version 09/2022
ymh <ymh.work@gmail.com>
parents: 16
diff changeset
    50
			this.attachMenuItemDeleteButton();
be944660c56a Site enmi version 09/2022
ymh <ymh.work@gmail.com>
parents: 16
diff changeset
    51
			this.attachPendingMenuItemsListForDeletion();
be944660c56a Site enmi version 09/2022
ymh <ymh.work@gmail.com>
parents: 16
diff changeset
    52
0
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
    53
			this.attachQuickSearchListeners();
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
    54
			this.attachThemeLocationsListeners();
7
cf61fcea0001 resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents: 5
diff changeset
    55
			this.attachMenuSaveSubmitListeners();
0
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
    56
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
    57
			this.attachTabsPanelListeners();
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
    58
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
    59
			this.attachUnsavedChangesListener();
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
    60
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
    61
			if ( api.menuList.length )
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
    62
				this.initSortables();
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
    63
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
    64
			if ( menus.oneThemeLocationNoMenus )
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
    65
				$( '#posttype-page' ).addSelectedToMenu( api.addMenuItemToBottom );
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
    66
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
    67
			this.initManageLocations();
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
    68
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
    69
			this.initAccessibility();
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
    70
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
    71
			this.initToggles();
5
5e2f62d02dcd upgrade wordpress + plugins
ymh <ymh.work@gmail.com>
parents: 0
diff changeset
    72
5e2f62d02dcd upgrade wordpress + plugins
ymh <ymh.work@gmail.com>
parents: 0
diff changeset
    73
			this.initPreviewing();
0
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
    74
		},
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
    75
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
    76
		jQueryExtensions : function() {
16
a86126ab1dd4 update enmi-conf
ymh <ymh.work@gmail.com>
parents: 9
diff changeset
    77
			// jQuery extensions.
0
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
    78
			$.fn.extend({
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
    79
				menuItemDepth : function() {
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
    80
					var margin = api.isRTL ? this.eq(0).css('margin-right') : this.eq(0).css('margin-left');
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
    81
					return api.pxToDepth( margin && -1 != margin.indexOf('px') ? margin.slice(0, -2) : 0 );
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
    82
				},
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
    83
				updateDepthClass : function(current, prev) {
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
    84
					return this.each(function(){
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
    85
						var t = $(this);
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
    86
						prev = prev || t.menuItemDepth();
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
    87
						$(this).removeClass('menu-item-depth-'+ prev )
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
    88
							.addClass('menu-item-depth-'+ current );
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
    89
					});
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
    90
				},
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
    91
				shiftDepthClass : function(change) {
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
    92
					return this.each(function(){
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
    93
						var t = $(this),
7
cf61fcea0001 resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents: 5
diff changeset
    94
							depth = t.menuItemDepth(),
cf61fcea0001 resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents: 5
diff changeset
    95
							newDepth = depth + change;
cf61fcea0001 resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents: 5
diff changeset
    96
cf61fcea0001 resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents: 5
diff changeset
    97
						t.removeClass( 'menu-item-depth-'+ depth )
cf61fcea0001 resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents: 5
diff changeset
    98
							.addClass( 'menu-item-depth-'+ ( newDepth ) );
cf61fcea0001 resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents: 5
diff changeset
    99
cf61fcea0001 resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents: 5
diff changeset
   100
						if ( 0 === newDepth ) {
cf61fcea0001 resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents: 5
diff changeset
   101
							t.find( '.is-submenu' ).hide();
cf61fcea0001 resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents: 5
diff changeset
   102
						}
0
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
   103
					});
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
   104
				},
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
   105
				childMenuItems : function() {
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
   106
					var result = $();
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
   107
					this.each(function(){
7
cf61fcea0001 resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents: 5
diff changeset
   108
						var t = $(this), depth = t.menuItemDepth(), next = t.next( '.menu-item' );
0
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
   109
						while( next.length && next.menuItemDepth() > depth ) {
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
   110
							result = result.add( next );
7
cf61fcea0001 resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents: 5
diff changeset
   111
							next = next.next( '.menu-item' );
0
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
   112
						}
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
   113
					});
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
   114
					return result;
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
   115
				},
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
   116
				shiftHorizontally : function( dir ) {
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
   117
					return this.each(function(){
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
   118
						var t = $(this),
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
   119
							depth = t.menuItemDepth(),
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
   120
							newDepth = depth + dir;
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
   121
16
a86126ab1dd4 update enmi-conf
ymh <ymh.work@gmail.com>
parents: 9
diff changeset
   122
						// Change .menu-item-depth-n class.
0
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
   123
						t.moveHorizontally( newDepth, depth );
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
   124
					});
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
   125
				},
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
   126
				moveHorizontally : function( newDepth, depth ) {
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
   127
					return this.each(function(){
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
   128
						var t = $(this),
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
   129
							children = t.childMenuItems(),
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
   130
							diff = newDepth - depth,
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
   131
							subItemText = t.find('.is-submenu');
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
   132
16
a86126ab1dd4 update enmi-conf
ymh <ymh.work@gmail.com>
parents: 9
diff changeset
   133
						// Change .menu-item-depth-n class.
0
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
   134
						t.updateDepthClass( newDepth, depth ).updateParentMenuItemDBId();
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
   135
16
a86126ab1dd4 update enmi-conf
ymh <ymh.work@gmail.com>
parents: 9
diff changeset
   136
						// If it has children, move those too.
0
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
   137
						if ( children ) {
5
5e2f62d02dcd upgrade wordpress + plugins
ymh <ymh.work@gmail.com>
parents: 0
diff changeset
   138
							children.each(function() {
0
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
   139
								var t = $(this),
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
   140
									thisDepth = t.menuItemDepth(),
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
   141
									newDepth = thisDepth + diff;
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
   142
								t.updateDepthClass(newDepth, thisDepth).updateParentMenuItemDBId();
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
   143
							});
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
   144
						}
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
   145
16
a86126ab1dd4 update enmi-conf
ymh <ymh.work@gmail.com>
parents: 9
diff changeset
   146
						// Show "Sub item" helper text.
0
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
   147
						if (0 === newDepth)
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
   148
							subItemText.hide();
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
   149
						else
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
   150
							subItemText.show();
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
   151
					});
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
   152
				},
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
   153
				updateParentMenuItemDBId : function() {
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
   154
					return this.each(function(){
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
   155
						var item = $(this),
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
   156
							input = item.find( '.menu-item-data-parent-id' ),
5
5e2f62d02dcd upgrade wordpress + plugins
ymh <ymh.work@gmail.com>
parents: 0
diff changeset
   157
							depth = parseInt( item.menuItemDepth(), 10 ),
0
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
   158
							parentDepth = depth - 1,
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
   159
							parent = item.prevAll( '.menu-item-depth-' + parentDepth ).first();
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
   160
16
a86126ab1dd4 update enmi-conf
ymh <ymh.work@gmail.com>
parents: 9
diff changeset
   161
						if ( 0 === depth ) { // Item is on the top level, has no parent.
0
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
   162
							input.val(0);
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
   163
						} else { // Find the parent item, and retrieve its object id.
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
   164
							input.val( parent.find( '.menu-item-data-db-id' ).val() );
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
   165
						}
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
   166
					});
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
   167
				},
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
   168
				hideAdvancedMenuItemFields : function() {
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
   169
					return this.each(function(){
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
   170
						var that = $(this);
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
   171
						$('.hide-column-tog').not(':checked').each(function(){
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
   172
							that.find('.field-' + $(this).val() ).addClass('hidden-field');
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
   173
						});
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
   174
					});
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
   175
				},
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
   176
				/**
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
   177
				 * Adds selected menu items to the menu.
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
   178
				 *
9
177826044cd9 upgrade wordpress to 5.2.3
ymh <ymh.work@gmail.com>
parents: 7
diff changeset
   179
				 * @ignore
177826044cd9 upgrade wordpress to 5.2.3
ymh <ymh.work@gmail.com>
parents: 7
diff changeset
   180
				 *
0
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
   181
				 * @param jQuery metabox The metabox jQuery object.
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
   182
				 */
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
   183
				addSelectedToMenu : function(processMethod) {
5
5e2f62d02dcd upgrade wordpress + plugins
ymh <ymh.work@gmail.com>
parents: 0
diff changeset
   184
					if ( 0 === $('#menu-to-edit').length ) {
0
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
   185
						return false;
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
   186
					}
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
   187
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
   188
					return this.each(function() {
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
   189
						var t = $(this), menuItems = {},
5
5e2f62d02dcd upgrade wordpress + plugins
ymh <ymh.work@gmail.com>
parents: 0
diff changeset
   190
							checkboxes = ( menus.oneThemeLocationNoMenus && 0 === t.find( '.tabs-panel-active .categorychecklist li input:checked' ).length ) ? t.find( '#page-all li input[type="checkbox"]' ) : t.find( '.tabs-panel-active .categorychecklist li input:checked' ),
5e2f62d02dcd upgrade wordpress + plugins
ymh <ymh.work@gmail.com>
parents: 0
diff changeset
   191
							re = /menu-item\[([^\]]*)/;
0
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
   192
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
   193
						processMethod = processMethod || api.addMenuItemToBottom;
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
   194
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
   195
						// If no items are checked, bail.
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
   196
						if ( !checkboxes.length )
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
   197
							return false;
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
   198
16
a86126ab1dd4 update enmi-conf
ymh <ymh.work@gmail.com>
parents: 9
diff changeset
   199
						// Show the Ajax spinner.
7
cf61fcea0001 resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents: 5
diff changeset
   200
						t.find( '.button-controls .spinner' ).addClass( 'is-active' );
0
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
   201
16
a86126ab1dd4 update enmi-conf
ymh <ymh.work@gmail.com>
parents: 9
diff changeset
   202
						// Retrieve menu item data.
0
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
   203
						$(checkboxes).each(function(){
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
   204
							var t = $(this),
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
   205
								listItemDBIDMatch = re.exec( t.attr('name') ),
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
   206
								listItemDBID = 'undefined' == typeof listItemDBIDMatch[1] ? 0 : parseInt(listItemDBIDMatch[1], 10);
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
   207
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
   208
							if ( this.className && -1 != this.className.indexOf('add-to-top') )
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
   209
								processMethod = api.addMenuItemToTop;
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
   210
							menuItems[listItemDBID] = t.closest('li').getItemData( 'add-menu-item', listItemDBID );
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
   211
						});
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
   212
16
a86126ab1dd4 update enmi-conf
ymh <ymh.work@gmail.com>
parents: 9
diff changeset
   213
						// Add the items.
0
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
   214
						api.addItemToMenu(menuItems, processMethod, function(){
16
a86126ab1dd4 update enmi-conf
ymh <ymh.work@gmail.com>
parents: 9
diff changeset
   215
							// Deselect the items and hide the Ajax spinner.
a86126ab1dd4 update enmi-conf
ymh <ymh.work@gmail.com>
parents: 9
diff changeset
   216
							checkboxes.prop( 'checked', false );
a86126ab1dd4 update enmi-conf
ymh <ymh.work@gmail.com>
parents: 9
diff changeset
   217
							t.find( '.button-controls .select-all' ).prop( 'checked', false );
7
cf61fcea0001 resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents: 5
diff changeset
   218
							t.find( '.button-controls .spinner' ).removeClass( 'is-active' );
0
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
   219
						});
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
   220
					});
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
   221
				},
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
   222
				getItemData : function( itemType, id ) {
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
   223
					itemType = itemType || 'menu-item';
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
   224
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
   225
					var itemData = {}, i,
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
   226
					fields = [
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
   227
						'menu-item-db-id',
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
   228
						'menu-item-object-id',
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
   229
						'menu-item-object',
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
   230
						'menu-item-parent-id',
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
   231
						'menu-item-position',
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
   232
						'menu-item-type',
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
   233
						'menu-item-title',
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
   234
						'menu-item-url',
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
   235
						'menu-item-description',
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
   236
						'menu-item-attr-title',
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
   237
						'menu-item-target',
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
   238
						'menu-item-classes',
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
   239
						'menu-item-xfn'
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
   240
					];
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
   241
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
   242
					if( !id && itemType == 'menu-item' ) {
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
   243
						id = this.find('.menu-item-data-db-id').val();
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
   244
					}
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
   245
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
   246
					if( !id ) return itemData;
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
   247
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
   248
					this.find('input').each(function() {
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
   249
						var field;
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
   250
						i = fields.length;
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
   251
						while ( i-- ) {
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
   252
							if( itemType == 'menu-item' )
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
   253
								field = fields[i] + '[' + id + ']';
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
   254
							else if( itemType == 'add-menu-item' )
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
   255
								field = 'menu-item[' + id + '][' + fields[i] + ']';
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
   256
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
   257
							if (
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
   258
								this.name &&
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
   259
								field == this.name
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
   260
							) {
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
   261
								itemData[fields[i]] = this.value;
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
   262
							}
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
   263
						}
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
   264
					});
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
   265
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
   266
					return itemData;
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
   267
				},
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
   268
				setItemData : function( itemData, itemType, id ) { // Can take a type, such as 'menu-item', or an id.
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
   269
					itemType = itemType || 'menu-item';
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
   270
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
   271
					if( !id && itemType == 'menu-item' ) {
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
   272
						id = $('.menu-item-data-db-id', this).val();
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
   273
					}
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
   274
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
   275
					if( !id ) return this;
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
   276
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
   277
					this.find('input').each(function() {
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
   278
						var t = $(this), field;
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
   279
						$.each( itemData, function( attr, val ) {
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
   280
							if( itemType == 'menu-item' )
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
   281
								field = attr + '[' + id + ']';
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
   282
							else if( itemType == 'add-menu-item' )
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
   283
								field = 'menu-item[' + id + '][' + attr + ']';
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
   284
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
   285
							if ( field == t.attr('name') ) {
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
   286
								t.val( val );
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
   287
							}
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
   288
						});
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
   289
					});
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
   290
					return this;
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
   291
				}
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
   292
			});
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
   293
		},
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
   294
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
   295
		countMenuItems : function( depth ) {
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
   296
			return $( '.menu-item-depth-' + depth ).length;
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
   297
		},
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
   298
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
   299
		moveMenuItem : function( $this, dir ) {
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
   300
5
5e2f62d02dcd upgrade wordpress + plugins
ymh <ymh.work@gmail.com>
parents: 0
diff changeset
   301
			var items, newItemPosition, newDepth,
5e2f62d02dcd upgrade wordpress + plugins
ymh <ymh.work@gmail.com>
parents: 0
diff changeset
   302
				menuItems = $( '#menu-to-edit li' ),
0
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
   303
				menuItemsCount = menuItems.length,
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
   304
				thisItem = $this.parents( 'li.menu-item' ),
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
   305
				thisItemChildren = thisItem.childMenuItems(),
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
   306
				thisItemData = thisItem.getItemData(),
5
5e2f62d02dcd upgrade wordpress + plugins
ymh <ymh.work@gmail.com>
parents: 0
diff changeset
   307
				thisItemDepth = parseInt( thisItem.menuItemDepth(), 10 ),
5e2f62d02dcd upgrade wordpress + plugins
ymh <ymh.work@gmail.com>
parents: 0
diff changeset
   308
				thisItemPosition = parseInt( thisItem.index(), 10 ),
0
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
   309
				nextItem = thisItem.next(),
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
   310
				nextItemChildren = nextItem.childMenuItems(),
5
5e2f62d02dcd upgrade wordpress + plugins
ymh <ymh.work@gmail.com>
parents: 0
diff changeset
   311
				nextItemDepth = parseInt( nextItem.menuItemDepth(), 10 ) + 1,
0
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
   312
				prevItem = thisItem.prev(),
5
5e2f62d02dcd upgrade wordpress + plugins
ymh <ymh.work@gmail.com>
parents: 0
diff changeset
   313
				prevItemDepth = parseInt( prevItem.menuItemDepth(), 10 ),
0
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
   314
				prevItemId = prevItem.getItemData()['menu-item-db-id'];
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
   315
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
   316
			switch ( dir ) {
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
   317
			case 'up':
5
5e2f62d02dcd upgrade wordpress + plugins
ymh <ymh.work@gmail.com>
parents: 0
diff changeset
   318
				newItemPosition = thisItemPosition - 1;
0
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
   319
16
a86126ab1dd4 update enmi-conf
ymh <ymh.work@gmail.com>
parents: 9
diff changeset
   320
				// Already at top.
0
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
   321
				if ( 0 === thisItemPosition )
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
   322
					break;
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
   323
16
a86126ab1dd4 update enmi-conf
ymh <ymh.work@gmail.com>
parents: 9
diff changeset
   324
				// If a sub item is moved to top, shift it to 0 depth.
0
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
   325
				if ( 0 === newItemPosition && 0 !== thisItemDepth )
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
   326
					thisItem.moveHorizontally( 0, thisItemDepth );
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
   327
16
a86126ab1dd4 update enmi-conf
ymh <ymh.work@gmail.com>
parents: 9
diff changeset
   328
				// If prev item is sub item, shift to match depth.
0
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
   329
				if ( 0 !== prevItemDepth )
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
   330
					thisItem.moveHorizontally( prevItemDepth, thisItemDepth );
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
   331
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
   332
				// Does this item have sub items?
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
   333
				if ( thisItemChildren ) {
5
5e2f62d02dcd upgrade wordpress + plugins
ymh <ymh.work@gmail.com>
parents: 0
diff changeset
   334
					items = thisItem.add( thisItemChildren );
16
a86126ab1dd4 update enmi-conf
ymh <ymh.work@gmail.com>
parents: 9
diff changeset
   335
					// Move the entire block.
0
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
   336
					items.detach().insertBefore( menuItems.eq( newItemPosition ) ).updateParentMenuItemDBId();
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
   337
				} else {
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
   338
					thisItem.detach().insertBefore( menuItems.eq( newItemPosition ) ).updateParentMenuItemDBId();
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
   339
				}
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
   340
				break;
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
   341
			case 'down':
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
   342
				// Does this item have sub items?
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
   343
				if ( thisItemChildren ) {
5
5e2f62d02dcd upgrade wordpress + plugins
ymh <ymh.work@gmail.com>
parents: 0
diff changeset
   344
					items = thisItem.add( thisItemChildren ),
0
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
   345
						nextItem = menuItems.eq( items.length + thisItemPosition ),
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
   346
						nextItemChildren = 0 !== nextItem.childMenuItems().length;
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
   347
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
   348
					if ( nextItemChildren ) {
5
5e2f62d02dcd upgrade wordpress + plugins
ymh <ymh.work@gmail.com>
parents: 0
diff changeset
   349
						newDepth = parseInt( nextItem.menuItemDepth(), 10 ) + 1;
0
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
   350
						thisItem.moveHorizontally( newDepth, thisItemDepth );
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
   351
					}
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
   352
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
   353
					// Have we reached the bottom?
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
   354
					if ( menuItemsCount === thisItemPosition + items.length )
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
   355
						break;
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
   356
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
   357
					items.detach().insertAfter( menuItems.eq( thisItemPosition + items.length ) ).updateParentMenuItemDBId();
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
   358
				} else {
16
a86126ab1dd4 update enmi-conf
ymh <ymh.work@gmail.com>
parents: 9
diff changeset
   359
					// If next item has sub items, shift depth.
0
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
   360
					if ( 0 !== nextItemChildren.length )
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
   361
						thisItem.moveHorizontally( nextItemDepth, thisItemDepth );
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
   362
16
a86126ab1dd4 update enmi-conf
ymh <ymh.work@gmail.com>
parents: 9
diff changeset
   363
					// Have we reached the bottom?
0
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
   364
					if ( menuItemsCount === thisItemPosition + 1 )
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
   365
						break;
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
   366
					thisItem.detach().insertAfter( menuItems.eq( thisItemPosition + 1 ) ).updateParentMenuItemDBId();
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
   367
				}
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
   368
				break;
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
   369
			case 'top':
16
a86126ab1dd4 update enmi-conf
ymh <ymh.work@gmail.com>
parents: 9
diff changeset
   370
				// Already at top.
0
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
   371
				if ( 0 === thisItemPosition )
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
   372
					break;
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
   373
				// Does this item have sub items?
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
   374
				if ( thisItemChildren ) {
5
5e2f62d02dcd upgrade wordpress + plugins
ymh <ymh.work@gmail.com>
parents: 0
diff changeset
   375
					items = thisItem.add( thisItemChildren );
16
a86126ab1dd4 update enmi-conf
ymh <ymh.work@gmail.com>
parents: 9
diff changeset
   376
					// Move the entire block.
0
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
   377
					items.detach().insertBefore( menuItems.eq( 0 ) ).updateParentMenuItemDBId();
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
   378
				} else {
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
   379
					thisItem.detach().insertBefore( menuItems.eq( 0 ) ).updateParentMenuItemDBId();
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
   380
				}
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
   381
				break;
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
   382
			case 'left':
16
a86126ab1dd4 update enmi-conf
ymh <ymh.work@gmail.com>
parents: 9
diff changeset
   383
				// As far left as possible.
0
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
   384
				if ( 0 === thisItemDepth )
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
   385
					break;
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
   386
				thisItem.shiftHorizontally( -1 );
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
   387
				break;
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
   388
			case 'right':
16
a86126ab1dd4 update enmi-conf
ymh <ymh.work@gmail.com>
parents: 9
diff changeset
   389
				// Can't be sub item at top.
0
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
   390
				if ( 0 === thisItemPosition )
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
   391
					break;
16
a86126ab1dd4 update enmi-conf
ymh <ymh.work@gmail.com>
parents: 9
diff changeset
   392
				// Already sub item of prevItem.
0
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
   393
				if ( thisItemData['menu-item-parent-id'] === prevItemId )
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
   394
					break;
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
   395
				thisItem.shiftHorizontally( 1 );
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
   396
				break;
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
   397
			}
18
be944660c56a Site enmi version 09/2022
ymh <ymh.work@gmail.com>
parents: 16
diff changeset
   398
			$this.trigger( 'focus' );
0
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
   399
			api.registerChange();
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
   400
			api.refreshKeyboardAccessibility();
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
   401
			api.refreshAdvancedAccessibility();
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
   402
		},
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
   403
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
   404
		initAccessibility : function() {
5
5e2f62d02dcd upgrade wordpress + plugins
ymh <ymh.work@gmail.com>
parents: 0
diff changeset
   405
			var menu = $( '#menu-to-edit' );
5e2f62d02dcd upgrade wordpress + plugins
ymh <ymh.work@gmail.com>
parents: 0
diff changeset
   406
0
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
   407
			api.refreshKeyboardAccessibility();
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
   408
			api.refreshAdvancedAccessibility();
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
   409
16
a86126ab1dd4 update enmi-conf
ymh <ymh.work@gmail.com>
parents: 9
diff changeset
   410
			// Refresh the accessibility when the user comes close to the item in any way.
5
5e2f62d02dcd upgrade wordpress + plugins
ymh <ymh.work@gmail.com>
parents: 0
diff changeset
   411
			menu.on( 'mouseenter.refreshAccessibility focus.refreshAccessibility touchstart.refreshAccessibility' , '.menu-item' , function(){
7
cf61fcea0001 resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents: 5
diff changeset
   412
				api.refreshAdvancedAccessibilityOfItem( $( this ).find( 'a.item-edit' ) );
5
5e2f62d02dcd upgrade wordpress + plugins
ymh <ymh.work@gmail.com>
parents: 0
diff changeset
   413
			} );
5e2f62d02dcd upgrade wordpress + plugins
ymh <ymh.work@gmail.com>
parents: 0
diff changeset
   414
5e2f62d02dcd upgrade wordpress + plugins
ymh <ymh.work@gmail.com>
parents: 0
diff changeset
   415
			// We have to update on click as well because we might hover first, change the item, and then click.
7
cf61fcea0001 resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents: 5
diff changeset
   416
			menu.on( 'click', 'a.item-edit', function() {
5
5e2f62d02dcd upgrade wordpress + plugins
ymh <ymh.work@gmail.com>
parents: 0
diff changeset
   417
				api.refreshAdvancedAccessibilityOfItem( $( this ) );
5e2f62d02dcd upgrade wordpress + plugins
ymh <ymh.work@gmail.com>
parents: 0
diff changeset
   418
			} );
5e2f62d02dcd upgrade wordpress + plugins
ymh <ymh.work@gmail.com>
parents: 0
diff changeset
   419
16
a86126ab1dd4 update enmi-conf
ymh <ymh.work@gmail.com>
parents: 9
diff changeset
   420
			// Links for moving items.
7
cf61fcea0001 resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents: 5
diff changeset
   421
			menu.on( 'click', '.menus-move', function () {
5
5e2f62d02dcd upgrade wordpress + plugins
ymh <ymh.work@gmail.com>
parents: 0
diff changeset
   422
				var $this = $( this ),
5e2f62d02dcd upgrade wordpress + plugins
ymh <ymh.work@gmail.com>
parents: 0
diff changeset
   423
					dir = $this.data( 'dir' );
5e2f62d02dcd upgrade wordpress + plugins
ymh <ymh.work@gmail.com>
parents: 0
diff changeset
   424
5e2f62d02dcd upgrade wordpress + plugins
ymh <ymh.work@gmail.com>
parents: 0
diff changeset
   425
				if ( 'undefined' !== typeof dir ) {
5e2f62d02dcd upgrade wordpress + plugins
ymh <ymh.work@gmail.com>
parents: 0
diff changeset
   426
					api.moveMenuItem( $( this ).parents( 'li.menu-item' ).find( 'a.item-edit' ), dir );
5e2f62d02dcd upgrade wordpress + plugins
ymh <ymh.work@gmail.com>
parents: 0
diff changeset
   427
				}
0
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
   428
			});
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
   429
		},
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
   430
5
5e2f62d02dcd upgrade wordpress + plugins
ymh <ymh.work@gmail.com>
parents: 0
diff changeset
   431
		/**
5e2f62d02dcd upgrade wordpress + plugins
ymh <ymh.work@gmail.com>
parents: 0
diff changeset
   432
		 * refreshAdvancedAccessibilityOfItem( [itemToRefresh] )
5e2f62d02dcd upgrade wordpress + plugins
ymh <ymh.work@gmail.com>
parents: 0
diff changeset
   433
		 *
5e2f62d02dcd upgrade wordpress + plugins
ymh <ymh.work@gmail.com>
parents: 0
diff changeset
   434
		 * Refreshes advanced accessibility buttons for one menu item.
5e2f62d02dcd upgrade wordpress + plugins
ymh <ymh.work@gmail.com>
parents: 0
diff changeset
   435
		 * Shows or hides buttons based on the location of the menu item.
5e2f62d02dcd upgrade wordpress + plugins
ymh <ymh.work@gmail.com>
parents: 0
diff changeset
   436
		 *
16
a86126ab1dd4 update enmi-conf
ymh <ymh.work@gmail.com>
parents: 9
diff changeset
   437
		 * @param {Object} itemToRefresh The menu item that might need its advanced accessibility buttons refreshed
5
5e2f62d02dcd upgrade wordpress + plugins
ymh <ymh.work@gmail.com>
parents: 0
diff changeset
   438
		 */
5e2f62d02dcd upgrade wordpress + plugins
ymh <ymh.work@gmail.com>
parents: 0
diff changeset
   439
		refreshAdvancedAccessibilityOfItem : function( itemToRefresh ) {
5e2f62d02dcd upgrade wordpress + plugins
ymh <ymh.work@gmail.com>
parents: 0
diff changeset
   440
16
a86126ab1dd4 update enmi-conf
ymh <ymh.work@gmail.com>
parents: 9
diff changeset
   441
			// Only refresh accessibility when necessary.
5
5e2f62d02dcd upgrade wordpress + plugins
ymh <ymh.work@gmail.com>
parents: 0
diff changeset
   442
			if ( true !== $( itemToRefresh ).data( 'needs_accessibility_refresh' ) ) {
5e2f62d02dcd upgrade wordpress + plugins
ymh <ymh.work@gmail.com>
parents: 0
diff changeset
   443
				return;
5e2f62d02dcd upgrade wordpress + plugins
ymh <ymh.work@gmail.com>
parents: 0
diff changeset
   444
			}
5e2f62d02dcd upgrade wordpress + plugins
ymh <ymh.work@gmail.com>
parents: 0
diff changeset
   445
5e2f62d02dcd upgrade wordpress + plugins
ymh <ymh.work@gmail.com>
parents: 0
diff changeset
   446
			var thisLink, thisLinkText, primaryItems, itemPosition, title,
5e2f62d02dcd upgrade wordpress + plugins
ymh <ymh.work@gmail.com>
parents: 0
diff changeset
   447
				parentItem, parentItemId, parentItemName, subItems,
5e2f62d02dcd upgrade wordpress + plugins
ymh <ymh.work@gmail.com>
parents: 0
diff changeset
   448
				$this = $( itemToRefresh ),
5e2f62d02dcd upgrade wordpress + plugins
ymh <ymh.work@gmail.com>
parents: 0
diff changeset
   449
				menuItem = $this.closest( 'li.menu-item' ).first(),
5e2f62d02dcd upgrade wordpress + plugins
ymh <ymh.work@gmail.com>
parents: 0
diff changeset
   450
				depth = menuItem.menuItemDepth(),
5e2f62d02dcd upgrade wordpress + plugins
ymh <ymh.work@gmail.com>
parents: 0
diff changeset
   451
				isPrimaryMenuItem = ( 0 === depth ),
5e2f62d02dcd upgrade wordpress + plugins
ymh <ymh.work@gmail.com>
parents: 0
diff changeset
   452
				itemName = $this.closest( '.menu-item-handle' ).find( '.menu-item-title' ).text(),
5e2f62d02dcd upgrade wordpress + plugins
ymh <ymh.work@gmail.com>
parents: 0
diff changeset
   453
				position = parseInt( menuItem.index(), 10 ),
5e2f62d02dcd upgrade wordpress + plugins
ymh <ymh.work@gmail.com>
parents: 0
diff changeset
   454
				prevItemDepth = ( isPrimaryMenuItem ) ? depth : parseInt( depth - 1, 10 ),
5e2f62d02dcd upgrade wordpress + plugins
ymh <ymh.work@gmail.com>
parents: 0
diff changeset
   455
				prevItemNameLeft = menuItem.prevAll('.menu-item-depth-' + prevItemDepth).first().find( '.menu-item-title' ).text(),
5e2f62d02dcd upgrade wordpress + plugins
ymh <ymh.work@gmail.com>
parents: 0
diff changeset
   456
				prevItemNameRight = menuItem.prevAll('.menu-item-depth-' + depth).first().find( '.menu-item-title' ).text(),
5e2f62d02dcd upgrade wordpress + plugins
ymh <ymh.work@gmail.com>
parents: 0
diff changeset
   457
				totalMenuItems = $('#menu-to-edit li').length,
5e2f62d02dcd upgrade wordpress + plugins
ymh <ymh.work@gmail.com>
parents: 0
diff changeset
   458
				hasSameDepthSibling = menuItem.nextAll( '.menu-item-depth-' + depth ).length;
5e2f62d02dcd upgrade wordpress + plugins
ymh <ymh.work@gmail.com>
parents: 0
diff changeset
   459
7
cf61fcea0001 resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents: 5
diff changeset
   460
				menuItem.find( '.field-move' ).toggle( totalMenuItems > 1 );
5
5e2f62d02dcd upgrade wordpress + plugins
ymh <ymh.work@gmail.com>
parents: 0
diff changeset
   461
5e2f62d02dcd upgrade wordpress + plugins
ymh <ymh.work@gmail.com>
parents: 0
diff changeset
   462
			// Where can they move this menu item?
5e2f62d02dcd upgrade wordpress + plugins
ymh <ymh.work@gmail.com>
parents: 0
diff changeset
   463
			if ( 0 !== position ) {
5e2f62d02dcd upgrade wordpress + plugins
ymh <ymh.work@gmail.com>
parents: 0
diff changeset
   464
				thisLink = menuItem.find( '.menus-move-up' );
7
cf61fcea0001 resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents: 5
diff changeset
   465
				thisLink.attr( 'aria-label', menus.moveUp ).css( 'display', 'inline' );
5
5e2f62d02dcd upgrade wordpress + plugins
ymh <ymh.work@gmail.com>
parents: 0
diff changeset
   466
			}
5e2f62d02dcd upgrade wordpress + plugins
ymh <ymh.work@gmail.com>
parents: 0
diff changeset
   467
5e2f62d02dcd upgrade wordpress + plugins
ymh <ymh.work@gmail.com>
parents: 0
diff changeset
   468
			if ( 0 !== position && isPrimaryMenuItem ) {
5e2f62d02dcd upgrade wordpress + plugins
ymh <ymh.work@gmail.com>
parents: 0
diff changeset
   469
				thisLink = menuItem.find( '.menus-move-top' );
7
cf61fcea0001 resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents: 5
diff changeset
   470
				thisLink.attr( 'aria-label', menus.moveToTop ).css( 'display', 'inline' );
5
5e2f62d02dcd upgrade wordpress + plugins
ymh <ymh.work@gmail.com>
parents: 0
diff changeset
   471
			}
5e2f62d02dcd upgrade wordpress + plugins
ymh <ymh.work@gmail.com>
parents: 0
diff changeset
   472
5e2f62d02dcd upgrade wordpress + plugins
ymh <ymh.work@gmail.com>
parents: 0
diff changeset
   473
			if ( position + 1 !== totalMenuItems && 0 !== position ) {
5e2f62d02dcd upgrade wordpress + plugins
ymh <ymh.work@gmail.com>
parents: 0
diff changeset
   474
				thisLink = menuItem.find( '.menus-move-down' );
7
cf61fcea0001 resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents: 5
diff changeset
   475
				thisLink.attr( 'aria-label', menus.moveDown ).css( 'display', 'inline' );
5
5e2f62d02dcd upgrade wordpress + plugins
ymh <ymh.work@gmail.com>
parents: 0
diff changeset
   476
			}
5e2f62d02dcd upgrade wordpress + plugins
ymh <ymh.work@gmail.com>
parents: 0
diff changeset
   477
5e2f62d02dcd upgrade wordpress + plugins
ymh <ymh.work@gmail.com>
parents: 0
diff changeset
   478
			if ( 0 === position && 0 !== hasSameDepthSibling ) {
5e2f62d02dcd upgrade wordpress + plugins
ymh <ymh.work@gmail.com>
parents: 0
diff changeset
   479
				thisLink = menuItem.find( '.menus-move-down' );
7
cf61fcea0001 resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents: 5
diff changeset
   480
				thisLink.attr( 'aria-label', menus.moveDown ).css( 'display', 'inline' );
5
5e2f62d02dcd upgrade wordpress + plugins
ymh <ymh.work@gmail.com>
parents: 0
diff changeset
   481
			}
5e2f62d02dcd upgrade wordpress + plugins
ymh <ymh.work@gmail.com>
parents: 0
diff changeset
   482
5e2f62d02dcd upgrade wordpress + plugins
ymh <ymh.work@gmail.com>
parents: 0
diff changeset
   483
			if ( ! isPrimaryMenuItem ) {
5e2f62d02dcd upgrade wordpress + plugins
ymh <ymh.work@gmail.com>
parents: 0
diff changeset
   484
				thisLink = menuItem.find( '.menus-move-left' ),
5e2f62d02dcd upgrade wordpress + plugins
ymh <ymh.work@gmail.com>
parents: 0
diff changeset
   485
				thisLinkText = menus.outFrom.replace( '%s', prevItemNameLeft );
7
cf61fcea0001 resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents: 5
diff changeset
   486
				thisLink.attr( 'aria-label', menus.moveOutFrom.replace( '%s', prevItemNameLeft ) ).text( thisLinkText ).css( 'display', 'inline' );
5
5e2f62d02dcd upgrade wordpress + plugins
ymh <ymh.work@gmail.com>
parents: 0
diff changeset
   487
			}
5e2f62d02dcd upgrade wordpress + plugins
ymh <ymh.work@gmail.com>
parents: 0
diff changeset
   488
5e2f62d02dcd upgrade wordpress + plugins
ymh <ymh.work@gmail.com>
parents: 0
diff changeset
   489
			if ( 0 !== position ) {
5e2f62d02dcd upgrade wordpress + plugins
ymh <ymh.work@gmail.com>
parents: 0
diff changeset
   490
				if ( menuItem.find( '.menu-item-data-parent-id' ).val() !== menuItem.prev().find( '.menu-item-data-db-id' ).val() ) {
5e2f62d02dcd upgrade wordpress + plugins
ymh <ymh.work@gmail.com>
parents: 0
diff changeset
   491
					thisLink = menuItem.find( '.menus-move-right' ),
5e2f62d02dcd upgrade wordpress + plugins
ymh <ymh.work@gmail.com>
parents: 0
diff changeset
   492
					thisLinkText = menus.under.replace( '%s', prevItemNameRight );
7
cf61fcea0001 resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents: 5
diff changeset
   493
					thisLink.attr( 'aria-label', menus.moveUnder.replace( '%s', prevItemNameRight ) ).text( thisLinkText ).css( 'display', 'inline' );
5
5e2f62d02dcd upgrade wordpress + plugins
ymh <ymh.work@gmail.com>
parents: 0
diff changeset
   494
				}
5e2f62d02dcd upgrade wordpress + plugins
ymh <ymh.work@gmail.com>
parents: 0
diff changeset
   495
			}
5e2f62d02dcd upgrade wordpress + plugins
ymh <ymh.work@gmail.com>
parents: 0
diff changeset
   496
5e2f62d02dcd upgrade wordpress + plugins
ymh <ymh.work@gmail.com>
parents: 0
diff changeset
   497
			if ( isPrimaryMenuItem ) {
5e2f62d02dcd upgrade wordpress + plugins
ymh <ymh.work@gmail.com>
parents: 0
diff changeset
   498
				primaryItems = $( '.menu-item-depth-0' ),
5e2f62d02dcd upgrade wordpress + plugins
ymh <ymh.work@gmail.com>
parents: 0
diff changeset
   499
				itemPosition = primaryItems.index( menuItem ) + 1,
5e2f62d02dcd upgrade wordpress + plugins
ymh <ymh.work@gmail.com>
parents: 0
diff changeset
   500
				totalMenuItems = primaryItems.length,
5e2f62d02dcd upgrade wordpress + plugins
ymh <ymh.work@gmail.com>
parents: 0
diff changeset
   501
16
a86126ab1dd4 update enmi-conf
ymh <ymh.work@gmail.com>
parents: 9
diff changeset
   502
				// String together help text for primary menu items.
5
5e2f62d02dcd upgrade wordpress + plugins
ymh <ymh.work@gmail.com>
parents: 0
diff changeset
   503
				title = menus.menuFocus.replace( '%1$s', itemName ).replace( '%2$d', itemPosition ).replace( '%3$d', totalMenuItems );
5e2f62d02dcd upgrade wordpress + plugins
ymh <ymh.work@gmail.com>
parents: 0
diff changeset
   504
			} else {
5e2f62d02dcd upgrade wordpress + plugins
ymh <ymh.work@gmail.com>
parents: 0
diff changeset
   505
				parentItem = menuItem.prevAll( '.menu-item-depth-' + parseInt( depth - 1, 10 ) ).first(),
5e2f62d02dcd upgrade wordpress + plugins
ymh <ymh.work@gmail.com>
parents: 0
diff changeset
   506
				parentItemId = parentItem.find( '.menu-item-data-db-id' ).val(),
5e2f62d02dcd upgrade wordpress + plugins
ymh <ymh.work@gmail.com>
parents: 0
diff changeset
   507
				parentItemName = parentItem.find( '.menu-item-title' ).text(),
5e2f62d02dcd upgrade wordpress + plugins
ymh <ymh.work@gmail.com>
parents: 0
diff changeset
   508
				subItems = $( '.menu-item .menu-item-data-parent-id[value="' + parentItemId + '"]' ),
5e2f62d02dcd upgrade wordpress + plugins
ymh <ymh.work@gmail.com>
parents: 0
diff changeset
   509
				itemPosition = $( subItems.parents('.menu-item').get().reverse() ).index( menuItem ) + 1;
5e2f62d02dcd upgrade wordpress + plugins
ymh <ymh.work@gmail.com>
parents: 0
diff changeset
   510
16
a86126ab1dd4 update enmi-conf
ymh <ymh.work@gmail.com>
parents: 9
diff changeset
   511
				// String together help text for sub menu items.
5
5e2f62d02dcd upgrade wordpress + plugins
ymh <ymh.work@gmail.com>
parents: 0
diff changeset
   512
				title = menus.subMenuFocus.replace( '%1$s', itemName ).replace( '%2$d', itemPosition ).replace( '%3$s', parentItemName );
5e2f62d02dcd upgrade wordpress + plugins
ymh <ymh.work@gmail.com>
parents: 0
diff changeset
   513
			}
5e2f62d02dcd upgrade wordpress + plugins
ymh <ymh.work@gmail.com>
parents: 0
diff changeset
   514
7
cf61fcea0001 resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents: 5
diff changeset
   515
			$this.attr( 'aria-label', title );
5
5e2f62d02dcd upgrade wordpress + plugins
ymh <ymh.work@gmail.com>
parents: 0
diff changeset
   516
16
a86126ab1dd4 update enmi-conf
ymh <ymh.work@gmail.com>
parents: 9
diff changeset
   517
			// Mark this item's accessibility as refreshed.
5
5e2f62d02dcd upgrade wordpress + plugins
ymh <ymh.work@gmail.com>
parents: 0
diff changeset
   518
			$this.data( 'needs_accessibility_refresh', false );
5e2f62d02dcd upgrade wordpress + plugins
ymh <ymh.work@gmail.com>
parents: 0
diff changeset
   519
		},
5e2f62d02dcd upgrade wordpress + plugins
ymh <ymh.work@gmail.com>
parents: 0
diff changeset
   520
5e2f62d02dcd upgrade wordpress + plugins
ymh <ymh.work@gmail.com>
parents: 0
diff changeset
   521
		/**
5e2f62d02dcd upgrade wordpress + plugins
ymh <ymh.work@gmail.com>
parents: 0
diff changeset
   522
		 * refreshAdvancedAccessibility
5e2f62d02dcd upgrade wordpress + plugins
ymh <ymh.work@gmail.com>
parents: 0
diff changeset
   523
		 *
5e2f62d02dcd upgrade wordpress + plugins
ymh <ymh.work@gmail.com>
parents: 0
diff changeset
   524
		 * Hides all advanced accessibility buttons and marks them for refreshing.
5e2f62d02dcd upgrade wordpress + plugins
ymh <ymh.work@gmail.com>
parents: 0
diff changeset
   525
		 */
0
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
   526
		refreshAdvancedAccessibility : function() {
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
   527
7
cf61fcea0001 resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents: 5
diff changeset
   528
			// Hide all the move buttons by default.
cf61fcea0001 resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents: 5
diff changeset
   529
			$( '.menu-item-settings .field-move .menus-move' ).hide();
0
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
   530
16
a86126ab1dd4 update enmi-conf
ymh <ymh.work@gmail.com>
parents: 9
diff changeset
   531
			// Mark all menu items as unprocessed.
7
cf61fcea0001 resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents: 5
diff changeset
   532
			$( 'a.item-edit' ).data( 'needs_accessibility_refresh', true );
0
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
   533
16
a86126ab1dd4 update enmi-conf
ymh <ymh.work@gmail.com>
parents: 9
diff changeset
   534
			// All open items have to be refreshed or they will show no links.
7
cf61fcea0001 resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents: 5
diff changeset
   535
			$( '.menu-item-edit-active a.item-edit' ).each( function() {
5
5e2f62d02dcd upgrade wordpress + plugins
ymh <ymh.work@gmail.com>
parents: 0
diff changeset
   536
				api.refreshAdvancedAccessibilityOfItem( this );
5e2f62d02dcd upgrade wordpress + plugins
ymh <ymh.work@gmail.com>
parents: 0
diff changeset
   537
			} );
0
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
   538
		},
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
   539
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
   540
		refreshKeyboardAccessibility : function() {
7
cf61fcea0001 resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents: 5
diff changeset
   541
			$( 'a.item-edit' ).off( 'focus' ).on( 'focus', function(){
0
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
   542
				$(this).off( 'keydown' ).on( 'keydown', function(e){
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
   543
5
5e2f62d02dcd upgrade wordpress + plugins
ymh <ymh.work@gmail.com>
parents: 0
diff changeset
   544
					var arrows,
5e2f62d02dcd upgrade wordpress + plugins
ymh <ymh.work@gmail.com>
parents: 0
diff changeset
   545
						$this = $( this ),
5e2f62d02dcd upgrade wordpress + plugins
ymh <ymh.work@gmail.com>
parents: 0
diff changeset
   546
						thisItem = $this.parents( 'li.menu-item' ),
5e2f62d02dcd upgrade wordpress + plugins
ymh <ymh.work@gmail.com>
parents: 0
diff changeset
   547
						thisItemData = thisItem.getItemData();
0
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
   548
16
a86126ab1dd4 update enmi-conf
ymh <ymh.work@gmail.com>
parents: 9
diff changeset
   549
					// Bail if it's not an arrow key.
0
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
   550
					if ( 37 != e.which && 38 != e.which && 39 != e.which && 40 != e.which )
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
   551
						return;
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
   552
16
a86126ab1dd4 update enmi-conf
ymh <ymh.work@gmail.com>
parents: 9
diff changeset
   553
					// Avoid multiple keydown events.
0
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
   554
					$this.off('keydown');
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
   555
16
a86126ab1dd4 update enmi-conf
ymh <ymh.work@gmail.com>
parents: 9
diff changeset
   556
					// Bail if there is only one menu item.
0
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
   557
					if ( 1 === $('#menu-to-edit li').length )
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
   558
						return;
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
   559
16
a86126ab1dd4 update enmi-conf
ymh <ymh.work@gmail.com>
parents: 9
diff changeset
   560
					// If RTL, swap left/right arrows.
5
5e2f62d02dcd upgrade wordpress + plugins
ymh <ymh.work@gmail.com>
parents: 0
diff changeset
   561
					arrows = { '38': 'up', '40': 'down', '37': 'left', '39': 'right' };
0
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
   562
					if ( $('body').hasClass('rtl') )
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
   563
						arrows = { '38' : 'up', '40' : 'down', '39' : 'left', '37' : 'right' };
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
   564
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
   565
					switch ( arrows[e.which] ) {
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
   566
					case 'up':
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
   567
						api.moveMenuItem( $this, 'up' );
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
   568
						break;
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
   569
					case 'down':
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
   570
						api.moveMenuItem( $this, 'down' );
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
   571
						break;
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
   572
					case 'left':
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
   573
						api.moveMenuItem( $this, 'left' );
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
   574
						break;
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
   575
					case 'right':
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
   576
						api.moveMenuItem( $this, 'right' );
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
   577
						break;
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
   578
					}
16
a86126ab1dd4 update enmi-conf
ymh <ymh.work@gmail.com>
parents: 9
diff changeset
   579
					// Put focus back on same menu item.
18
be944660c56a Site enmi version 09/2022
ymh <ymh.work@gmail.com>
parents: 16
diff changeset
   580
					$( '#edit-' + thisItemData['menu-item-db-id'] ).trigger( 'focus' );
0
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
   581
					return false;
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
   582
				});
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
   583
			});
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
   584
		},
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
   585
5
5e2f62d02dcd upgrade wordpress + plugins
ymh <ymh.work@gmail.com>
parents: 0
diff changeset
   586
		initPreviewing : function() {
5e2f62d02dcd upgrade wordpress + plugins
ymh <ymh.work@gmail.com>
parents: 0
diff changeset
   587
			// Update the item handle title when the navigation label is changed.
5e2f62d02dcd upgrade wordpress + plugins
ymh <ymh.work@gmail.com>
parents: 0
diff changeset
   588
			$( '#menu-to-edit' ).on( 'change input', '.edit-menu-item-title', function(e) {
5e2f62d02dcd upgrade wordpress + plugins
ymh <ymh.work@gmail.com>
parents: 0
diff changeset
   589
				var input = $( e.currentTarget ), title, titleEl;
5e2f62d02dcd upgrade wordpress + plugins
ymh <ymh.work@gmail.com>
parents: 0
diff changeset
   590
				title = input.val();
5e2f62d02dcd upgrade wordpress + plugins
ymh <ymh.work@gmail.com>
parents: 0
diff changeset
   591
				titleEl = input.closest( '.menu-item' ).find( '.menu-item-title' );
5e2f62d02dcd upgrade wordpress + plugins
ymh <ymh.work@gmail.com>
parents: 0
diff changeset
   592
				// Don't update to empty title.
5e2f62d02dcd upgrade wordpress + plugins
ymh <ymh.work@gmail.com>
parents: 0
diff changeset
   593
				if ( title ) {
5e2f62d02dcd upgrade wordpress + plugins
ymh <ymh.work@gmail.com>
parents: 0
diff changeset
   594
					titleEl.text( title ).removeClass( 'no-title' );
5e2f62d02dcd upgrade wordpress + plugins
ymh <ymh.work@gmail.com>
parents: 0
diff changeset
   595
				} else {
16
a86126ab1dd4 update enmi-conf
ymh <ymh.work@gmail.com>
parents: 9
diff changeset
   596
					titleEl.text( wp.i18n._x( '(no label)', 'missing menu item navigation label' ) ).addClass( 'no-title' );
5
5e2f62d02dcd upgrade wordpress + plugins
ymh <ymh.work@gmail.com>
parents: 0
diff changeset
   597
				}
5e2f62d02dcd upgrade wordpress + plugins
ymh <ymh.work@gmail.com>
parents: 0
diff changeset
   598
			} );
5e2f62d02dcd upgrade wordpress + plugins
ymh <ymh.work@gmail.com>
parents: 0
diff changeset
   599
		},
5e2f62d02dcd upgrade wordpress + plugins
ymh <ymh.work@gmail.com>
parents: 0
diff changeset
   600
0
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
   601
		initToggles : function() {
16
a86126ab1dd4 update enmi-conf
ymh <ymh.work@gmail.com>
parents: 9
diff changeset
   602
			// Init postboxes.
0
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
   603
			postboxes.add_postbox_toggles('nav-menus');
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
   604
16
a86126ab1dd4 update enmi-conf
ymh <ymh.work@gmail.com>
parents: 9
diff changeset
   605
			// Adjust columns functions for menus UI.
0
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
   606
			columns.useCheckboxesForHidden();
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
   607
			columns.checked = function(field) {
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
   608
				$('.field-' + field).removeClass('hidden-field');
5
5e2f62d02dcd upgrade wordpress + plugins
ymh <ymh.work@gmail.com>
parents: 0
diff changeset
   609
			};
0
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
   610
			columns.unchecked = function(field) {
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
   611
				$('.field-' + field).addClass('hidden-field');
5
5e2f62d02dcd upgrade wordpress + plugins
ymh <ymh.work@gmail.com>
parents: 0
diff changeset
   612
			};
16
a86126ab1dd4 update enmi-conf
ymh <ymh.work@gmail.com>
parents: 9
diff changeset
   613
			// Hide fields.
0
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
   614
			api.menuList.hideAdvancedMenuItemFields();
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
   615
18
be944660c56a Site enmi version 09/2022
ymh <ymh.work@gmail.com>
parents: 16
diff changeset
   616
			$('.hide-postbox-tog').on( 'click', function () {
0
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
   617
				var hidden = $( '.accordion-container li.accordion-section' ).filter(':hidden').map(function() { return this.id; }).get().join(',');
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
   618
				$.post(ajaxurl, {
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
   619
					action: 'closed-postboxes',
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
   620
					hidden: hidden,
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
   621
					closedpostboxesnonce: jQuery('#closedpostboxesnonce').val(),
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
   622
					page: 'nav-menus'
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
   623
				});
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
   624
			});
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
   625
		},
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
   626
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
   627
		initSortables : function() {
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
   628
			var currentDepth = 0, originalDepth, minDepth, maxDepth,
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
   629
				prev, next, prevBottom, nextThreshold, helperHeight, transport,
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
   630
				menuEdge = api.menuList.offset().left,
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
   631
				body = $('body'), maxChildDepth,
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
   632
				menuMaxDepth = initialMenuMaxDepth();
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
   633
5
5e2f62d02dcd upgrade wordpress + plugins
ymh <ymh.work@gmail.com>
parents: 0
diff changeset
   634
			if( 0 !== $( '#menu-to-edit li' ).length )
0
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
   635
				$( '.drag-instructions' ).show();
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
   636
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
   637
			// Use the right edge if RTL.
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
   638
			menuEdge += api.isRTL ? api.menuList.width() : 0;
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
   639
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
   640
			api.menuList.sortable({
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
   641
				handle: '.menu-item-handle',
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
   642
				placeholder: 'sortable-placeholder',
7
cf61fcea0001 resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents: 5
diff changeset
   643
				items: api.options.sortableItems,
0
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
   644
				start: function(e, ui) {
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
   645
					var height, width, parent, children, tempHolder;
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
   646
16
a86126ab1dd4 update enmi-conf
ymh <ymh.work@gmail.com>
parents: 9
diff changeset
   647
					// Handle placement for RTL orientation.
0
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
   648
					if ( api.isRTL )
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
   649
						ui.item[0].style.right = 'auto';
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
   650
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
   651
					transport = ui.item.children('.menu-item-transport');
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
   652
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
   653
					// Set depths. currentDepth must be set before children are located.
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
   654
					originalDepth = ui.item.menuItemDepth();
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
   655
					updateCurrentDepth(ui, originalDepth);
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
   656
16
a86126ab1dd4 update enmi-conf
ymh <ymh.work@gmail.com>
parents: 9
diff changeset
   657
					// Attach child elements to parent.
a86126ab1dd4 update enmi-conf
ymh <ymh.work@gmail.com>
parents: 9
diff changeset
   658
					// Skip the placeholder.
0
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
   659
					parent = ( ui.item.next()[0] == ui.placeholder[0] ) ? ui.item.next() : ui.item;
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
   660
					children = parent.childMenuItems();
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
   661
					transport.append( children );
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
   662
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
   663
					// Update the height of the placeholder to match the moving item.
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
   664
					height = transport.outerHeight();
16
a86126ab1dd4 update enmi-conf
ymh <ymh.work@gmail.com>
parents: 9
diff changeset
   665
					// If there are children, account for distance between top of children and parent.
0
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
   666
					height += ( height > 0 ) ? (ui.placeholder.css('margin-top').slice(0, -2) * 1) : 0;
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
   667
					height += ui.helper.outerHeight();
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
   668
					helperHeight = height;
16
a86126ab1dd4 update enmi-conf
ymh <ymh.work@gmail.com>
parents: 9
diff changeset
   669
					height -= 2;                                              // Subtract 2 for borders.
0
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
   670
					ui.placeholder.height(height);
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
   671
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
   672
					// Update the width of the placeholder to match the moving item.
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
   673
					maxChildDepth = originalDepth;
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
   674
					children.each(function(){
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
   675
						var depth = $(this).menuItemDepth();
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
   676
						maxChildDepth = (depth > maxChildDepth) ? depth : maxChildDepth;
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
   677
					});
16
a86126ab1dd4 update enmi-conf
ymh <ymh.work@gmail.com>
parents: 9
diff changeset
   678
					width = ui.helper.find('.menu-item-handle').outerWidth(); // Get original width.
a86126ab1dd4 update enmi-conf
ymh <ymh.work@gmail.com>
parents: 9
diff changeset
   679
					width += api.depthToPx(maxChildDepth - originalDepth);    // Account for children.
a86126ab1dd4 update enmi-conf
ymh <ymh.work@gmail.com>
parents: 9
diff changeset
   680
					width -= 2;                                               // Subtract 2 for borders.
0
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
   681
					ui.placeholder.width(width);
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
   682
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
   683
					// Update the list of menu items.
7
cf61fcea0001 resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents: 5
diff changeset
   684
					tempHolder = ui.placeholder.next( '.menu-item' );
16
a86126ab1dd4 update enmi-conf
ymh <ymh.work@gmail.com>
parents: 9
diff changeset
   685
					tempHolder.css( 'margin-top', helperHeight + 'px' ); // Set the margin to absorb the placeholder.
a86126ab1dd4 update enmi-conf
ymh <ymh.work@gmail.com>
parents: 9
diff changeset
   686
					ui.placeholder.detach();         // Detach or jQuery UI will think the placeholder is a menu item.
a86126ab1dd4 update enmi-conf
ymh <ymh.work@gmail.com>
parents: 9
diff changeset
   687
					$(this).sortable( 'refresh' );   // The children aren't sortable. We should let jQuery UI know.
a86126ab1dd4 update enmi-conf
ymh <ymh.work@gmail.com>
parents: 9
diff changeset
   688
					ui.item.after( ui.placeholder ); // Reattach the placeholder.
a86126ab1dd4 update enmi-conf
ymh <ymh.work@gmail.com>
parents: 9
diff changeset
   689
					tempHolder.css('margin-top', 0); // Reset the margin.
0
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
   690
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
   691
					// Now that the element is complete, we can update...
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
   692
					updateSharedVars(ui);
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
   693
				},
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
   694
				stop: function(e, ui) {
5
5e2f62d02dcd upgrade wordpress + plugins
ymh <ymh.work@gmail.com>
parents: 0
diff changeset
   695
					var children, subMenuTitle,
5e2f62d02dcd upgrade wordpress + plugins
ymh <ymh.work@gmail.com>
parents: 0
diff changeset
   696
						depthChange = currentDepth - originalDepth;
0
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
   697
16
a86126ab1dd4 update enmi-conf
ymh <ymh.work@gmail.com>
parents: 9
diff changeset
   698
					// Return child elements to the list.
0
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
   699
					children = transport.children().insertAfter(ui.item);
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
   700
16
a86126ab1dd4 update enmi-conf
ymh <ymh.work@gmail.com>
parents: 9
diff changeset
   701
					// Add "sub menu" description.
5
5e2f62d02dcd upgrade wordpress + plugins
ymh <ymh.work@gmail.com>
parents: 0
diff changeset
   702
					subMenuTitle = ui.item.find( '.item-title .is-submenu' );
0
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
   703
					if ( 0 < currentDepth )
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
   704
						subMenuTitle.show();
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
   705
					else
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
   706
						subMenuTitle.hide();
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
   707
16
a86126ab1dd4 update enmi-conf
ymh <ymh.work@gmail.com>
parents: 9
diff changeset
   708
					// Update depth classes.
5
5e2f62d02dcd upgrade wordpress + plugins
ymh <ymh.work@gmail.com>
parents: 0
diff changeset
   709
					if ( 0 !== depthChange ) {
0
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
   710
						ui.item.updateDepthClass( currentDepth );
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
   711
						children.shiftDepthClass( depthChange );
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
   712
						updateMenuMaxDepth( depthChange );
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
   713
					}
16
a86126ab1dd4 update enmi-conf
ymh <ymh.work@gmail.com>
parents: 9
diff changeset
   714
					// Register a change.
0
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
   715
					api.registerChange();
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
   716
					// Update the item data.
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
   717
					ui.item.updateParentMenuItemDBId();
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
   718
16
a86126ab1dd4 update enmi-conf
ymh <ymh.work@gmail.com>
parents: 9
diff changeset
   719
					// Address sortable's incorrectly-calculated top in Opera.
0
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
   720
					ui.item[0].style.top = 0;
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
   721
16
a86126ab1dd4 update enmi-conf
ymh <ymh.work@gmail.com>
parents: 9
diff changeset
   722
					// Handle drop placement for rtl orientation.
0
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
   723
					if ( api.isRTL ) {
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
   724
						ui.item[0].style.left = 'auto';
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
   725
						ui.item[0].style.right = 0;
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
   726
					}
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
   727
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
   728
					api.refreshKeyboardAccessibility();
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
   729
					api.refreshAdvancedAccessibility();
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
   730
				},
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
   731
				change: function(e, ui) {
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
   732
					// Make sure the placeholder is inside the menu.
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
   733
					// Otherwise fix it, or we're in trouble.
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
   734
					if( ! ui.placeholder.parent().hasClass('menu') )
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
   735
						(prev.length) ? prev.after( ui.placeholder ) : api.menuList.prepend( ui.placeholder );
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
   736
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
   737
					updateSharedVars(ui);
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
   738
				},
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
   739
				sort: function(e, ui) {
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
   740
					var offset = ui.helper.offset(),
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
   741
						edge = api.isRTL ? offset.left + ui.helper.width() : offset.left,
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
   742
						depth = api.negateIfRTL * api.pxToDepth( edge - menuEdge );
7
cf61fcea0001 resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents: 5
diff changeset
   743
16
a86126ab1dd4 update enmi-conf
ymh <ymh.work@gmail.com>
parents: 9
diff changeset
   744
					/*
a86126ab1dd4 update enmi-conf
ymh <ymh.work@gmail.com>
parents: 9
diff changeset
   745
					 * Check and correct if depth is not within range.
a86126ab1dd4 update enmi-conf
ymh <ymh.work@gmail.com>
parents: 9
diff changeset
   746
					 * Also, if the dragged element is dragged upwards over an item,
a86126ab1dd4 update enmi-conf
ymh <ymh.work@gmail.com>
parents: 9
diff changeset
   747
					 * shift the placeholder to a child position.
a86126ab1dd4 update enmi-conf
ymh <ymh.work@gmail.com>
parents: 9
diff changeset
   748
					 */
7
cf61fcea0001 resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents: 5
diff changeset
   749
					if ( depth > maxDepth || offset.top < ( prevBottom - api.options.targetTolerance ) ) {
cf61fcea0001 resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents: 5
diff changeset
   750
						depth = maxDepth;
cf61fcea0001 resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents: 5
diff changeset
   751
					} else if ( depth < minDepth ) {
cf61fcea0001 resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents: 5
diff changeset
   752
						depth = minDepth;
cf61fcea0001 resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents: 5
diff changeset
   753
					}
0
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
   754
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
   755
					if( depth != currentDepth )
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
   756
						updateCurrentDepth(ui, depth);
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
   757
16
a86126ab1dd4 update enmi-conf
ymh <ymh.work@gmail.com>
parents: 9
diff changeset
   758
					// If we overlap the next element, manually shift downwards.
0
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
   759
					if( nextThreshold && offset.top + helperHeight > nextThreshold ) {
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
   760
						next.after( ui.placeholder );
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
   761
						updateSharedVars( ui );
5
5e2f62d02dcd upgrade wordpress + plugins
ymh <ymh.work@gmail.com>
parents: 0
diff changeset
   762
						$( this ).sortable( 'refreshPositions' );
0
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
   763
					}
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
   764
				}
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
   765
			});
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
   766
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
   767
			function updateSharedVars(ui) {
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
   768
				var depth;
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
   769
7
cf61fcea0001 resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents: 5
diff changeset
   770
				prev = ui.placeholder.prev( '.menu-item' );
cf61fcea0001 resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents: 5
diff changeset
   771
				next = ui.placeholder.next( '.menu-item' );
0
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
   772
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
   773
				// Make sure we don't select the moving item.
7
cf61fcea0001 resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents: 5
diff changeset
   774
				if( prev[0] == ui.item[0] ) prev = prev.prev( '.menu-item' );
cf61fcea0001 resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents: 5
diff changeset
   775
				if( next[0] == ui.item[0] ) next = next.next( '.menu-item' );
0
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
   776
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
   777
				prevBottom = (prev.length) ? prev.offset().top + prev.height() : 0;
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
   778
				nextThreshold = (next.length) ? next.offset().top + next.height() / 3 : 0;
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
   779
				minDepth = (next.length) ? next.menuItemDepth() : 0;
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
   780
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
   781
				if( prev.length )
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
   782
					maxDepth = ( (depth = prev.menuItemDepth() + 1) > api.options.globalMaxDepth ) ? api.options.globalMaxDepth : depth;
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
   783
				else
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
   784
					maxDepth = 0;
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
   785
			}
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
   786
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
   787
			function updateCurrentDepth(ui, depth) {
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
   788
				ui.placeholder.updateDepthClass( depth, currentDepth );
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
   789
				currentDepth = depth;
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
   790
			}
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
   791
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
   792
			function initialMenuMaxDepth() {
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
   793
				if( ! body[0].className ) return 0;
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
   794
				var match = body[0].className.match(/menu-max-depth-(\d+)/);
5
5e2f62d02dcd upgrade wordpress + plugins
ymh <ymh.work@gmail.com>
parents: 0
diff changeset
   795
				return match && match[1] ? parseInt( match[1], 10 ) : 0;
0
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
   796
			}
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
   797
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
   798
			function updateMenuMaxDepth( depthChange ) {
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
   799
				var depth, newDepth = menuMaxDepth;
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
   800
				if ( depthChange === 0 ) {
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
   801
					return;
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
   802
				} else if ( depthChange > 0 ) {
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
   803
					depth = maxChildDepth + depthChange;
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
   804
					if( depth > menuMaxDepth )
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
   805
						newDepth = depth;
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
   806
				} else if ( depthChange < 0 && maxChildDepth == menuMaxDepth ) {
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
   807
					while( ! $('.menu-item-depth-' + newDepth, api.menuList).length && newDepth > 0 )
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
   808
						newDepth--;
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
   809
				}
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
   810
				// Update the depth class.
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
   811
				body.removeClass( 'menu-max-depth-' + menuMaxDepth ).addClass( 'menu-max-depth-' + newDepth );
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
   812
				menuMaxDepth = newDepth;
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
   813
			}
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
   814
		},
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
   815
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
   816
		initManageLocations : function () {
18
be944660c56a Site enmi version 09/2022
ymh <ymh.work@gmail.com>
parents: 16
diff changeset
   817
			$('#menu-locations-wrap form').on( 'submit', function(){
0
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
   818
				window.onbeforeunload = null;
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
   819
			});
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
   820
			$('.menu-location-menus select').on('change', function () {
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
   821
				var editLink = $(this).closest('tr').find('.locations-edit-menu-link');
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
   822
				if ($(this).find('option:selected').data('orig'))
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
   823
					editLink.show();
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
   824
				else
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
   825
					editLink.hide();
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
   826
			});
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
   827
		},
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
   828
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
   829
		attachMenuEditListeners : function() {
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
   830
			var that = this;
18
be944660c56a Site enmi version 09/2022
ymh <ymh.work@gmail.com>
parents: 16
diff changeset
   831
			$('#update-nav-menu').on('click', function(e) {
0
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
   832
				if ( e.target && e.target.className ) {
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
   833
					if ( -1 != e.target.className.indexOf('item-edit') ) {
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
   834
						return that.eventOnClickEditLink(e.target);
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
   835
					} else if ( -1 != e.target.className.indexOf('menu-save') ) {
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
   836
						return that.eventOnClickMenuSave(e.target);
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
   837
					} else if ( -1 != e.target.className.indexOf('menu-delete') ) {
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
   838
						return that.eventOnClickMenuDelete(e.target);
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
   839
					} else if ( -1 != e.target.className.indexOf('item-delete') ) {
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
   840
						return that.eventOnClickMenuItemDelete(e.target);
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
   841
					} else if ( -1 != e.target.className.indexOf('item-cancel') ) {
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
   842
						return that.eventOnClickCancelLink(e.target);
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
   843
					}
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
   844
				}
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
   845
			});
9
177826044cd9 upgrade wordpress to 5.2.3
ymh <ymh.work@gmail.com>
parents: 7
diff changeset
   846
177826044cd9 upgrade wordpress to 5.2.3
ymh <ymh.work@gmail.com>
parents: 7
diff changeset
   847
			$( '#menu-name' ).on( 'input', _.debounce( function () {
177826044cd9 upgrade wordpress to 5.2.3
ymh <ymh.work@gmail.com>
parents: 7
diff changeset
   848
				var menuName = $( document.getElementById( 'menu-name' ) ),
177826044cd9 upgrade wordpress to 5.2.3
ymh <ymh.work@gmail.com>
parents: 7
diff changeset
   849
					menuNameVal = menuName.val();
177826044cd9 upgrade wordpress to 5.2.3
ymh <ymh.work@gmail.com>
parents: 7
diff changeset
   850
177826044cd9 upgrade wordpress to 5.2.3
ymh <ymh.work@gmail.com>
parents: 7
diff changeset
   851
				if ( ! menuNameVal || ! menuNameVal.replace( /\s+/, '' ) ) {
177826044cd9 upgrade wordpress to 5.2.3
ymh <ymh.work@gmail.com>
parents: 7
diff changeset
   852
					// Add warning for invalid menu name.
177826044cd9 upgrade wordpress to 5.2.3
ymh <ymh.work@gmail.com>
parents: 7
diff changeset
   853
					menuName.parent().addClass( 'form-invalid' );
177826044cd9 upgrade wordpress to 5.2.3
ymh <ymh.work@gmail.com>
parents: 7
diff changeset
   854
				} else {
177826044cd9 upgrade wordpress to 5.2.3
ymh <ymh.work@gmail.com>
parents: 7
diff changeset
   855
					// Remove warning for valid menu name.
177826044cd9 upgrade wordpress to 5.2.3
ymh <ymh.work@gmail.com>
parents: 7
diff changeset
   856
					menuName.parent().removeClass( 'form-invalid' );
177826044cd9 upgrade wordpress to 5.2.3
ymh <ymh.work@gmail.com>
parents: 7
diff changeset
   857
				}
177826044cd9 upgrade wordpress to 5.2.3
ymh <ymh.work@gmail.com>
parents: 7
diff changeset
   858
			}, 500 ) );
177826044cd9 upgrade wordpress to 5.2.3
ymh <ymh.work@gmail.com>
parents: 7
diff changeset
   859
18
be944660c56a Site enmi version 09/2022
ymh <ymh.work@gmail.com>
parents: 16
diff changeset
   860
			$('#add-custom-links input[type="text"]').on( 'keypress', function(e){
7
cf61fcea0001 resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents: 5
diff changeset
   861
				$('#customlinkdiv').removeClass('form-invalid');
cf61fcea0001 resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents: 5
diff changeset
   862
0
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
   863
				if ( e.keyCode === 13 ) {
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
   864
					e.preventDefault();
18
be944660c56a Site enmi version 09/2022
ymh <ymh.work@gmail.com>
parents: 16
diff changeset
   865
					$( '#submit-customlinkdiv' ).trigger( 'click' );
be944660c56a Site enmi version 09/2022
ymh <ymh.work@gmail.com>
parents: 16
diff changeset
   866
				}
be944660c56a Site enmi version 09/2022
ymh <ymh.work@gmail.com>
parents: 16
diff changeset
   867
			});
be944660c56a Site enmi version 09/2022
ymh <ymh.work@gmail.com>
parents: 16
diff changeset
   868
		},
be944660c56a Site enmi version 09/2022
ymh <ymh.work@gmail.com>
parents: 16
diff changeset
   869
be944660c56a Site enmi version 09/2022
ymh <ymh.work@gmail.com>
parents: 16
diff changeset
   870
		/**
be944660c56a Site enmi version 09/2022
ymh <ymh.work@gmail.com>
parents: 16
diff changeset
   871
		 * Handle toggling bulk selection checkboxes for menu items.
be944660c56a Site enmi version 09/2022
ymh <ymh.work@gmail.com>
parents: 16
diff changeset
   872
		 *
be944660c56a Site enmi version 09/2022
ymh <ymh.work@gmail.com>
parents: 16
diff changeset
   873
		 * @since 5.8.0
be944660c56a Site enmi version 09/2022
ymh <ymh.work@gmail.com>
parents: 16
diff changeset
   874
		 */ 
be944660c56a Site enmi version 09/2022
ymh <ymh.work@gmail.com>
parents: 16
diff changeset
   875
		attachBulkSelectButtonListeners : function() {
be944660c56a Site enmi version 09/2022
ymh <ymh.work@gmail.com>
parents: 16
diff changeset
   876
			var that = this;
be944660c56a Site enmi version 09/2022
ymh <ymh.work@gmail.com>
parents: 16
diff changeset
   877
be944660c56a Site enmi version 09/2022
ymh <ymh.work@gmail.com>
parents: 16
diff changeset
   878
			$( '.bulk-select-switcher' ).on( 'change', function() {
be944660c56a Site enmi version 09/2022
ymh <ymh.work@gmail.com>
parents: 16
diff changeset
   879
				if ( this.checked ) {
be944660c56a Site enmi version 09/2022
ymh <ymh.work@gmail.com>
parents: 16
diff changeset
   880
					$( '.bulk-select-switcher' ).prop( 'checked', true );
be944660c56a Site enmi version 09/2022
ymh <ymh.work@gmail.com>
parents: 16
diff changeset
   881
					that.enableBulkSelection();
be944660c56a Site enmi version 09/2022
ymh <ymh.work@gmail.com>
parents: 16
diff changeset
   882
				} else {
be944660c56a Site enmi version 09/2022
ymh <ymh.work@gmail.com>
parents: 16
diff changeset
   883
					$( '.bulk-select-switcher' ).prop( 'checked', false );
be944660c56a Site enmi version 09/2022
ymh <ymh.work@gmail.com>
parents: 16
diff changeset
   884
					that.disableBulkSelection();
0
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
   885
				}
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
   886
			});
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
   887
		},
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
   888
18
be944660c56a Site enmi version 09/2022
ymh <ymh.work@gmail.com>
parents: 16
diff changeset
   889
		/**
be944660c56a Site enmi version 09/2022
ymh <ymh.work@gmail.com>
parents: 16
diff changeset
   890
		 * Enable bulk selection checkboxes for menu items.
be944660c56a Site enmi version 09/2022
ymh <ymh.work@gmail.com>
parents: 16
diff changeset
   891
		 *
be944660c56a Site enmi version 09/2022
ymh <ymh.work@gmail.com>
parents: 16
diff changeset
   892
		 * @since 5.8.0
be944660c56a Site enmi version 09/2022
ymh <ymh.work@gmail.com>
parents: 16
diff changeset
   893
		 */ 
be944660c56a Site enmi version 09/2022
ymh <ymh.work@gmail.com>
parents: 16
diff changeset
   894
		enableBulkSelection : function() {
be944660c56a Site enmi version 09/2022
ymh <ymh.work@gmail.com>
parents: 16
diff changeset
   895
			var checkbox = $( '#menu-to-edit .menu-item-checkbox' );
be944660c56a Site enmi version 09/2022
ymh <ymh.work@gmail.com>
parents: 16
diff changeset
   896
be944660c56a Site enmi version 09/2022
ymh <ymh.work@gmail.com>
parents: 16
diff changeset
   897
			$( '#menu-to-edit' ).addClass( 'bulk-selection' );
be944660c56a Site enmi version 09/2022
ymh <ymh.work@gmail.com>
parents: 16
diff changeset
   898
			$( '#nav-menu-bulk-actions-top' ).addClass( 'bulk-selection' );
be944660c56a Site enmi version 09/2022
ymh <ymh.work@gmail.com>
parents: 16
diff changeset
   899
			$( '#nav-menu-bulk-actions-bottom' ).addClass( 'bulk-selection' );
be944660c56a Site enmi version 09/2022
ymh <ymh.work@gmail.com>
parents: 16
diff changeset
   900
be944660c56a Site enmi version 09/2022
ymh <ymh.work@gmail.com>
parents: 16
diff changeset
   901
			$.each( checkbox, function() {
be944660c56a Site enmi version 09/2022
ymh <ymh.work@gmail.com>
parents: 16
diff changeset
   902
				$(this).prop( 'disabled', false );
be944660c56a Site enmi version 09/2022
ymh <ymh.work@gmail.com>
parents: 16
diff changeset
   903
			});
be944660c56a Site enmi version 09/2022
ymh <ymh.work@gmail.com>
parents: 16
diff changeset
   904
		},
be944660c56a Site enmi version 09/2022
ymh <ymh.work@gmail.com>
parents: 16
diff changeset
   905
be944660c56a Site enmi version 09/2022
ymh <ymh.work@gmail.com>
parents: 16
diff changeset
   906
		/**
be944660c56a Site enmi version 09/2022
ymh <ymh.work@gmail.com>
parents: 16
diff changeset
   907
		 * Disable bulk selection checkboxes for menu items.
be944660c56a Site enmi version 09/2022
ymh <ymh.work@gmail.com>
parents: 16
diff changeset
   908
		 *
be944660c56a Site enmi version 09/2022
ymh <ymh.work@gmail.com>
parents: 16
diff changeset
   909
		 * @since 5.8.0
be944660c56a Site enmi version 09/2022
ymh <ymh.work@gmail.com>
parents: 16
diff changeset
   910
		 */ 
be944660c56a Site enmi version 09/2022
ymh <ymh.work@gmail.com>
parents: 16
diff changeset
   911
		disableBulkSelection : function() {
be944660c56a Site enmi version 09/2022
ymh <ymh.work@gmail.com>
parents: 16
diff changeset
   912
			var checkbox = $( '#menu-to-edit .menu-item-checkbox' );
be944660c56a Site enmi version 09/2022
ymh <ymh.work@gmail.com>
parents: 16
diff changeset
   913
be944660c56a Site enmi version 09/2022
ymh <ymh.work@gmail.com>
parents: 16
diff changeset
   914
			$( '#menu-to-edit' ).removeClass( 'bulk-selection' );
be944660c56a Site enmi version 09/2022
ymh <ymh.work@gmail.com>
parents: 16
diff changeset
   915
			$( '#nav-menu-bulk-actions-top' ).removeClass( 'bulk-selection' );
be944660c56a Site enmi version 09/2022
ymh <ymh.work@gmail.com>
parents: 16
diff changeset
   916
			$( '#nav-menu-bulk-actions-bottom' ).removeClass( 'bulk-selection' );
be944660c56a Site enmi version 09/2022
ymh <ymh.work@gmail.com>
parents: 16
diff changeset
   917
be944660c56a Site enmi version 09/2022
ymh <ymh.work@gmail.com>
parents: 16
diff changeset
   918
			if ( $( '.menu-items-delete' ).is( '[aria-describedby="pending-menu-items-to-delete"]' ) ) {
be944660c56a Site enmi version 09/2022
ymh <ymh.work@gmail.com>
parents: 16
diff changeset
   919
				$( '.menu-items-delete' ).removeAttr( 'aria-describedby' );
be944660c56a Site enmi version 09/2022
ymh <ymh.work@gmail.com>
parents: 16
diff changeset
   920
			}
be944660c56a Site enmi version 09/2022
ymh <ymh.work@gmail.com>
parents: 16
diff changeset
   921
be944660c56a Site enmi version 09/2022
ymh <ymh.work@gmail.com>
parents: 16
diff changeset
   922
			$.each( checkbox, function() {
be944660c56a Site enmi version 09/2022
ymh <ymh.work@gmail.com>
parents: 16
diff changeset
   923
				$(this).prop( 'disabled', true ).prop( 'checked', false );
be944660c56a Site enmi version 09/2022
ymh <ymh.work@gmail.com>
parents: 16
diff changeset
   924
			});
be944660c56a Site enmi version 09/2022
ymh <ymh.work@gmail.com>
parents: 16
diff changeset
   925
be944660c56a Site enmi version 09/2022
ymh <ymh.work@gmail.com>
parents: 16
diff changeset
   926
			$( '.menu-items-delete' ).addClass( 'disabled' );
be944660c56a Site enmi version 09/2022
ymh <ymh.work@gmail.com>
parents: 16
diff changeset
   927
			$( '#pending-menu-items-to-delete ul' ).empty();
be944660c56a Site enmi version 09/2022
ymh <ymh.work@gmail.com>
parents: 16
diff changeset
   928
		},
be944660c56a Site enmi version 09/2022
ymh <ymh.work@gmail.com>
parents: 16
diff changeset
   929
be944660c56a Site enmi version 09/2022
ymh <ymh.work@gmail.com>
parents: 16
diff changeset
   930
		/**
be944660c56a Site enmi version 09/2022
ymh <ymh.work@gmail.com>
parents: 16
diff changeset
   931
		 * Listen for state changes on bulk action checkboxes.
be944660c56a Site enmi version 09/2022
ymh <ymh.work@gmail.com>
parents: 16
diff changeset
   932
		 *
be944660c56a Site enmi version 09/2022
ymh <ymh.work@gmail.com>
parents: 16
diff changeset
   933
		 * @since 5.8.0
be944660c56a Site enmi version 09/2022
ymh <ymh.work@gmail.com>
parents: 16
diff changeset
   934
		 */ 
be944660c56a Site enmi version 09/2022
ymh <ymh.work@gmail.com>
parents: 16
diff changeset
   935
		attachMenuCheckBoxListeners : function() {
be944660c56a Site enmi version 09/2022
ymh <ymh.work@gmail.com>
parents: 16
diff changeset
   936
			var that = this;
be944660c56a Site enmi version 09/2022
ymh <ymh.work@gmail.com>
parents: 16
diff changeset
   937
be944660c56a Site enmi version 09/2022
ymh <ymh.work@gmail.com>
parents: 16
diff changeset
   938
			$( '#menu-to-edit' ).on( 'change', '.menu-item-checkbox', function() {
be944660c56a Site enmi version 09/2022
ymh <ymh.work@gmail.com>
parents: 16
diff changeset
   939
				that.setRemoveSelectedButtonStatus();
be944660c56a Site enmi version 09/2022
ymh <ymh.work@gmail.com>
parents: 16
diff changeset
   940
			});
be944660c56a Site enmi version 09/2022
ymh <ymh.work@gmail.com>
parents: 16
diff changeset
   941
		},
be944660c56a Site enmi version 09/2022
ymh <ymh.work@gmail.com>
parents: 16
diff changeset
   942
be944660c56a Site enmi version 09/2022
ymh <ymh.work@gmail.com>
parents: 16
diff changeset
   943
		/**
be944660c56a Site enmi version 09/2022
ymh <ymh.work@gmail.com>
parents: 16
diff changeset
   944
		 * Create delete button to remove menu items from collection.
be944660c56a Site enmi version 09/2022
ymh <ymh.work@gmail.com>
parents: 16
diff changeset
   945
		 *
be944660c56a Site enmi version 09/2022
ymh <ymh.work@gmail.com>
parents: 16
diff changeset
   946
		 * @since 5.8.0
be944660c56a Site enmi version 09/2022
ymh <ymh.work@gmail.com>
parents: 16
diff changeset
   947
		 */ 
be944660c56a Site enmi version 09/2022
ymh <ymh.work@gmail.com>
parents: 16
diff changeset
   948
		attachMenuItemDeleteButton : function() {
be944660c56a Site enmi version 09/2022
ymh <ymh.work@gmail.com>
parents: 16
diff changeset
   949
			var that = this;
be944660c56a Site enmi version 09/2022
ymh <ymh.work@gmail.com>
parents: 16
diff changeset
   950
be944660c56a Site enmi version 09/2022
ymh <ymh.work@gmail.com>
parents: 16
diff changeset
   951
			$( document ).on( 'click', '.menu-items-delete', function( e ) {
be944660c56a Site enmi version 09/2022
ymh <ymh.work@gmail.com>
parents: 16
diff changeset
   952
				var itemsPendingDeletion, itemsPendingDeletionList, deletionSpeech;
be944660c56a Site enmi version 09/2022
ymh <ymh.work@gmail.com>
parents: 16
diff changeset
   953
be944660c56a Site enmi version 09/2022
ymh <ymh.work@gmail.com>
parents: 16
diff changeset
   954
				e.preventDefault();
be944660c56a Site enmi version 09/2022
ymh <ymh.work@gmail.com>
parents: 16
diff changeset
   955
be944660c56a Site enmi version 09/2022
ymh <ymh.work@gmail.com>
parents: 16
diff changeset
   956
				if ( ! $(this).hasClass( 'disabled' ) ) {
be944660c56a Site enmi version 09/2022
ymh <ymh.work@gmail.com>
parents: 16
diff changeset
   957
					$.each( $( '.menu-item-checkbox:checked' ), function( index, element ) {
be944660c56a Site enmi version 09/2022
ymh <ymh.work@gmail.com>
parents: 16
diff changeset
   958
						$( element ).parents( 'li' ).find( 'a.item-delete' ).trigger( 'click' );
be944660c56a Site enmi version 09/2022
ymh <ymh.work@gmail.com>
parents: 16
diff changeset
   959
					});
be944660c56a Site enmi version 09/2022
ymh <ymh.work@gmail.com>
parents: 16
diff changeset
   960
be944660c56a Site enmi version 09/2022
ymh <ymh.work@gmail.com>
parents: 16
diff changeset
   961
					$( '.menu-items-delete' ).addClass( 'disabled' );
be944660c56a Site enmi version 09/2022
ymh <ymh.work@gmail.com>
parents: 16
diff changeset
   962
					$( '.bulk-select-switcher' ).prop( 'checked', false );
be944660c56a Site enmi version 09/2022
ymh <ymh.work@gmail.com>
parents: 16
diff changeset
   963
be944660c56a Site enmi version 09/2022
ymh <ymh.work@gmail.com>
parents: 16
diff changeset
   964
					itemsPendingDeletion     = '';
be944660c56a Site enmi version 09/2022
ymh <ymh.work@gmail.com>
parents: 16
diff changeset
   965
					itemsPendingDeletionList = $( '#pending-menu-items-to-delete ul li' );
be944660c56a Site enmi version 09/2022
ymh <ymh.work@gmail.com>
parents: 16
diff changeset
   966
be944660c56a Site enmi version 09/2022
ymh <ymh.work@gmail.com>
parents: 16
diff changeset
   967
					$.each( itemsPendingDeletionList, function( index, element ) {
be944660c56a Site enmi version 09/2022
ymh <ymh.work@gmail.com>
parents: 16
diff changeset
   968
						var itemName = $( element ).find( '.pending-menu-item-name' ).text();
be944660c56a Site enmi version 09/2022
ymh <ymh.work@gmail.com>
parents: 16
diff changeset
   969
						var itemSpeech = menus.menuItemDeletion.replace( '%s', itemName );
be944660c56a Site enmi version 09/2022
ymh <ymh.work@gmail.com>
parents: 16
diff changeset
   970
be944660c56a Site enmi version 09/2022
ymh <ymh.work@gmail.com>
parents: 16
diff changeset
   971
						itemsPendingDeletion += itemSpeech;
be944660c56a Site enmi version 09/2022
ymh <ymh.work@gmail.com>
parents: 16
diff changeset
   972
						if ( ( index + 1 ) < itemsPendingDeletionList.length ) {
be944660c56a Site enmi version 09/2022
ymh <ymh.work@gmail.com>
parents: 16
diff changeset
   973
							itemsPendingDeletion += ', ';
be944660c56a Site enmi version 09/2022
ymh <ymh.work@gmail.com>
parents: 16
diff changeset
   974
						}
be944660c56a Site enmi version 09/2022
ymh <ymh.work@gmail.com>
parents: 16
diff changeset
   975
					});
be944660c56a Site enmi version 09/2022
ymh <ymh.work@gmail.com>
parents: 16
diff changeset
   976
be944660c56a Site enmi version 09/2022
ymh <ymh.work@gmail.com>
parents: 16
diff changeset
   977
					deletionSpeech = menus.itemsDeleted.replace( '%s', itemsPendingDeletion );
be944660c56a Site enmi version 09/2022
ymh <ymh.work@gmail.com>
parents: 16
diff changeset
   978
					wp.a11y.speak( deletionSpeech, 'polite' );
be944660c56a Site enmi version 09/2022
ymh <ymh.work@gmail.com>
parents: 16
diff changeset
   979
					that.disableBulkSelection();
be944660c56a Site enmi version 09/2022
ymh <ymh.work@gmail.com>
parents: 16
diff changeset
   980
				}
be944660c56a Site enmi version 09/2022
ymh <ymh.work@gmail.com>
parents: 16
diff changeset
   981
			});
be944660c56a Site enmi version 09/2022
ymh <ymh.work@gmail.com>
parents: 16
diff changeset
   982
		},
be944660c56a Site enmi version 09/2022
ymh <ymh.work@gmail.com>
parents: 16
diff changeset
   983
be944660c56a Site enmi version 09/2022
ymh <ymh.work@gmail.com>
parents: 16
diff changeset
   984
		/**
be944660c56a Site enmi version 09/2022
ymh <ymh.work@gmail.com>
parents: 16
diff changeset
   985
		 * List menu items awaiting deletion.
be944660c56a Site enmi version 09/2022
ymh <ymh.work@gmail.com>
parents: 16
diff changeset
   986
		 *
be944660c56a Site enmi version 09/2022
ymh <ymh.work@gmail.com>
parents: 16
diff changeset
   987
		 * @since 5.8.0
be944660c56a Site enmi version 09/2022
ymh <ymh.work@gmail.com>
parents: 16
diff changeset
   988
		 */ 
be944660c56a Site enmi version 09/2022
ymh <ymh.work@gmail.com>
parents: 16
diff changeset
   989
		attachPendingMenuItemsListForDeletion : function() {
be944660c56a Site enmi version 09/2022
ymh <ymh.work@gmail.com>
parents: 16
diff changeset
   990
			$( '#post-body-content' ).on( 'change', '.menu-item-checkbox', function() {
be944660c56a Site enmi version 09/2022
ymh <ymh.work@gmail.com>
parents: 16
diff changeset
   991
				var menuItemName, menuItemType, menuItemID, listedMenuItem;
be944660c56a Site enmi version 09/2022
ymh <ymh.work@gmail.com>
parents: 16
diff changeset
   992
be944660c56a Site enmi version 09/2022
ymh <ymh.work@gmail.com>
parents: 16
diff changeset
   993
				if ( ! $( '.menu-items-delete' ).is( '[aria-describedby="pending-menu-items-to-delete"]' ) ) {
be944660c56a Site enmi version 09/2022
ymh <ymh.work@gmail.com>
parents: 16
diff changeset
   994
					$( '.menu-items-delete' ).attr( 'aria-describedby', 'pending-menu-items-to-delete' );
be944660c56a Site enmi version 09/2022
ymh <ymh.work@gmail.com>
parents: 16
diff changeset
   995
				}
be944660c56a Site enmi version 09/2022
ymh <ymh.work@gmail.com>
parents: 16
diff changeset
   996
be944660c56a Site enmi version 09/2022
ymh <ymh.work@gmail.com>
parents: 16
diff changeset
   997
				menuItemName = $(this).next().text();
be944660c56a Site enmi version 09/2022
ymh <ymh.work@gmail.com>
parents: 16
diff changeset
   998
				menuItemType = $(this).parent().next( '.item-controls' ).find( '.item-type' ).text();
be944660c56a Site enmi version 09/2022
ymh <ymh.work@gmail.com>
parents: 16
diff changeset
   999
				menuItemID   = $(this).attr( 'data-menu-item-id' );
be944660c56a Site enmi version 09/2022
ymh <ymh.work@gmail.com>
parents: 16
diff changeset
  1000
be944660c56a Site enmi version 09/2022
ymh <ymh.work@gmail.com>
parents: 16
diff changeset
  1001
				listedMenuItem = $( '#pending-menu-items-to-delete ul' ).find( '[data-menu-item-id=' + menuItemID + ']' );
be944660c56a Site enmi version 09/2022
ymh <ymh.work@gmail.com>
parents: 16
diff changeset
  1002
				if ( listedMenuItem.length > 0 ) {
be944660c56a Site enmi version 09/2022
ymh <ymh.work@gmail.com>
parents: 16
diff changeset
  1003
					listedMenuItem.remove();
be944660c56a Site enmi version 09/2022
ymh <ymh.work@gmail.com>
parents: 16
diff changeset
  1004
				}
be944660c56a Site enmi version 09/2022
ymh <ymh.work@gmail.com>
parents: 16
diff changeset
  1005
be944660c56a Site enmi version 09/2022
ymh <ymh.work@gmail.com>
parents: 16
diff changeset
  1006
				if ( this.checked === true ) {
be944660c56a Site enmi version 09/2022
ymh <ymh.work@gmail.com>
parents: 16
diff changeset
  1007
					$( '#pending-menu-items-to-delete ul' ).append(
be944660c56a Site enmi version 09/2022
ymh <ymh.work@gmail.com>
parents: 16
diff changeset
  1008
						'<li data-menu-item-id="' + menuItemID + '">' +
be944660c56a Site enmi version 09/2022
ymh <ymh.work@gmail.com>
parents: 16
diff changeset
  1009
							'<span class="pending-menu-item-name">' + menuItemName + '</span> ' +
be944660c56a Site enmi version 09/2022
ymh <ymh.work@gmail.com>
parents: 16
diff changeset
  1010
							'<span class="pending-menu-item-type">(' + menuItemType + ')</span>' +
be944660c56a Site enmi version 09/2022
ymh <ymh.work@gmail.com>
parents: 16
diff changeset
  1011
							'<span class="separator"></span>' +
be944660c56a Site enmi version 09/2022
ymh <ymh.work@gmail.com>
parents: 16
diff changeset
  1012
						'</li>'
be944660c56a Site enmi version 09/2022
ymh <ymh.work@gmail.com>
parents: 16
diff changeset
  1013
					);
be944660c56a Site enmi version 09/2022
ymh <ymh.work@gmail.com>
parents: 16
diff changeset
  1014
				}
be944660c56a Site enmi version 09/2022
ymh <ymh.work@gmail.com>
parents: 16
diff changeset
  1015
be944660c56a Site enmi version 09/2022
ymh <ymh.work@gmail.com>
parents: 16
diff changeset
  1016
				$( '#pending-menu-items-to-delete li .separator' ).html( ', ' );
be944660c56a Site enmi version 09/2022
ymh <ymh.work@gmail.com>
parents: 16
diff changeset
  1017
				$( '#pending-menu-items-to-delete li .separator' ).last().html( '.' );
be944660c56a Site enmi version 09/2022
ymh <ymh.work@gmail.com>
parents: 16
diff changeset
  1018
			});
be944660c56a Site enmi version 09/2022
ymh <ymh.work@gmail.com>
parents: 16
diff changeset
  1019
		},
be944660c56a Site enmi version 09/2022
ymh <ymh.work@gmail.com>
parents: 16
diff changeset
  1020
be944660c56a Site enmi version 09/2022
ymh <ymh.work@gmail.com>
parents: 16
diff changeset
  1021
		/**
be944660c56a Site enmi version 09/2022
ymh <ymh.work@gmail.com>
parents: 16
diff changeset
  1022
		 * Set status of bulk delete checkbox.
be944660c56a Site enmi version 09/2022
ymh <ymh.work@gmail.com>
parents: 16
diff changeset
  1023
		 *
be944660c56a Site enmi version 09/2022
ymh <ymh.work@gmail.com>
parents: 16
diff changeset
  1024
		 * @since 5.8.0
be944660c56a Site enmi version 09/2022
ymh <ymh.work@gmail.com>
parents: 16
diff changeset
  1025
		 */ 
be944660c56a Site enmi version 09/2022
ymh <ymh.work@gmail.com>
parents: 16
diff changeset
  1026
		setBulkDeleteCheckboxStatus : function() {
be944660c56a Site enmi version 09/2022
ymh <ymh.work@gmail.com>
parents: 16
diff changeset
  1027
			var that = this;
be944660c56a Site enmi version 09/2022
ymh <ymh.work@gmail.com>
parents: 16
diff changeset
  1028
			var checkbox = $( '#menu-to-edit .menu-item-checkbox' );
be944660c56a Site enmi version 09/2022
ymh <ymh.work@gmail.com>
parents: 16
diff changeset
  1029
be944660c56a Site enmi version 09/2022
ymh <ymh.work@gmail.com>
parents: 16
diff changeset
  1030
			$.each( checkbox, function() {
be944660c56a Site enmi version 09/2022
ymh <ymh.work@gmail.com>
parents: 16
diff changeset
  1031
				if ( $(this).prop( 'disabled' ) ) {
be944660c56a Site enmi version 09/2022
ymh <ymh.work@gmail.com>
parents: 16
diff changeset
  1032
					$(this).prop( 'disabled', false );
be944660c56a Site enmi version 09/2022
ymh <ymh.work@gmail.com>
parents: 16
diff changeset
  1033
				} else {
be944660c56a Site enmi version 09/2022
ymh <ymh.work@gmail.com>
parents: 16
diff changeset
  1034
					$(this).prop( 'disabled', true );
be944660c56a Site enmi version 09/2022
ymh <ymh.work@gmail.com>
parents: 16
diff changeset
  1035
				}
be944660c56a Site enmi version 09/2022
ymh <ymh.work@gmail.com>
parents: 16
diff changeset
  1036
be944660c56a Site enmi version 09/2022
ymh <ymh.work@gmail.com>
parents: 16
diff changeset
  1037
				if ( $(this).is( ':checked' ) ) {
be944660c56a Site enmi version 09/2022
ymh <ymh.work@gmail.com>
parents: 16
diff changeset
  1038
					$(this).prop( 'checked', false );
be944660c56a Site enmi version 09/2022
ymh <ymh.work@gmail.com>
parents: 16
diff changeset
  1039
				}
be944660c56a Site enmi version 09/2022
ymh <ymh.work@gmail.com>
parents: 16
diff changeset
  1040
			});
be944660c56a Site enmi version 09/2022
ymh <ymh.work@gmail.com>
parents: 16
diff changeset
  1041
be944660c56a Site enmi version 09/2022
ymh <ymh.work@gmail.com>
parents: 16
diff changeset
  1042
			that.setRemoveSelectedButtonStatus();
be944660c56a Site enmi version 09/2022
ymh <ymh.work@gmail.com>
parents: 16
diff changeset
  1043
		},
be944660c56a Site enmi version 09/2022
ymh <ymh.work@gmail.com>
parents: 16
diff changeset
  1044
be944660c56a Site enmi version 09/2022
ymh <ymh.work@gmail.com>
parents: 16
diff changeset
  1045
		/**
be944660c56a Site enmi version 09/2022
ymh <ymh.work@gmail.com>
parents: 16
diff changeset
  1046
		 * Set status of menu items removal button.
be944660c56a Site enmi version 09/2022
ymh <ymh.work@gmail.com>
parents: 16
diff changeset
  1047
		 *
be944660c56a Site enmi version 09/2022
ymh <ymh.work@gmail.com>
parents: 16
diff changeset
  1048
		 * @since 5.8.0
be944660c56a Site enmi version 09/2022
ymh <ymh.work@gmail.com>
parents: 16
diff changeset
  1049
		 */ 
be944660c56a Site enmi version 09/2022
ymh <ymh.work@gmail.com>
parents: 16
diff changeset
  1050
		setRemoveSelectedButtonStatus : function() {
be944660c56a Site enmi version 09/2022
ymh <ymh.work@gmail.com>
parents: 16
diff changeset
  1051
			var button = $( '.menu-items-delete' );
be944660c56a Site enmi version 09/2022
ymh <ymh.work@gmail.com>
parents: 16
diff changeset
  1052
be944660c56a Site enmi version 09/2022
ymh <ymh.work@gmail.com>
parents: 16
diff changeset
  1053
			if ( $( '.menu-item-checkbox:checked' ).length > 0 ) {
be944660c56a Site enmi version 09/2022
ymh <ymh.work@gmail.com>
parents: 16
diff changeset
  1054
				button.removeClass( 'disabled' );
be944660c56a Site enmi version 09/2022
ymh <ymh.work@gmail.com>
parents: 16
diff changeset
  1055
			} else {
be944660c56a Site enmi version 09/2022
ymh <ymh.work@gmail.com>
parents: 16
diff changeset
  1056
				button.addClass( 'disabled' );
be944660c56a Site enmi version 09/2022
ymh <ymh.work@gmail.com>
parents: 16
diff changeset
  1057
			}
be944660c56a Site enmi version 09/2022
ymh <ymh.work@gmail.com>
parents: 16
diff changeset
  1058
		},
be944660c56a Site enmi version 09/2022
ymh <ymh.work@gmail.com>
parents: 16
diff changeset
  1059
7
cf61fcea0001 resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents: 5
diff changeset
  1060
		attachMenuSaveSubmitListeners : function() {
cf61fcea0001 resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents: 5
diff changeset
  1061
			/*
cf61fcea0001 resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents: 5
diff changeset
  1062
			 * When a navigation menu is saved, store a JSON representation of all form data
cf61fcea0001 resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents: 5
diff changeset
  1063
			 * in a single input to avoid PHP `max_input_vars` limitations. See #14134.
cf61fcea0001 resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents: 5
diff changeset
  1064
			 */
18
be944660c56a Site enmi version 09/2022
ymh <ymh.work@gmail.com>
parents: 16
diff changeset
  1065
			$( '#update-nav-menu' ).on( 'submit', function() {
7
cf61fcea0001 resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents: 5
diff changeset
  1066
				var navMenuData = $( '#update-nav-menu' ).serializeArray();
cf61fcea0001 resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents: 5
diff changeset
  1067
				$( '[name="nav-menu-data"]' ).val( JSON.stringify( navMenuData ) );
0
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
  1068
			});
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
  1069
		},
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
  1070
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
  1071
		attachThemeLocationsListeners : function() {
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
  1072
			var loc = $('#nav-menu-theme-locations'), params = {};
5
5e2f62d02dcd upgrade wordpress + plugins
ymh <ymh.work@gmail.com>
parents: 0
diff changeset
  1073
			params.action = 'menu-locations-save';
0
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
  1074
			params['menu-settings-column-nonce'] = $('#menu-settings-column-nonce').val();
18
be944660c56a Site enmi version 09/2022
ymh <ymh.work@gmail.com>
parents: 16
diff changeset
  1075
			loc.find('input[type="submit"]').on( 'click', function() {
0
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
  1076
				loc.find('select').each(function() {
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
  1077
					params[this.name] = $(this).val();
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
  1078
				});
5
5e2f62d02dcd upgrade wordpress + plugins
ymh <ymh.work@gmail.com>
parents: 0
diff changeset
  1079
				loc.find( '.spinner' ).addClass( 'is-active' );
5e2f62d02dcd upgrade wordpress + plugins
ymh <ymh.work@gmail.com>
parents: 0
diff changeset
  1080
				$.post( ajaxurl, params, function() {
5e2f62d02dcd upgrade wordpress + plugins
ymh <ymh.work@gmail.com>
parents: 0
diff changeset
  1081
					loc.find( '.spinner' ).removeClass( 'is-active' );
0
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
  1082
				});
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
  1083
				return false;
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
  1084
			});
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
  1085
		},
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
  1086
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
  1087
		attachQuickSearchListeners : function() {
9
177826044cd9 upgrade wordpress to 5.2.3
ymh <ymh.work@gmail.com>
parents: 7
diff changeset
  1088
			var searchTimer;
7
cf61fcea0001 resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents: 5
diff changeset
  1089
cf61fcea0001 resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents: 5
diff changeset
  1090
			// Prevent form submission.
cf61fcea0001 resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents: 5
diff changeset
  1091
			$( '#nav-menu-meta' ).on( 'submit', function( event ) {
cf61fcea0001 resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents: 5
diff changeset
  1092
				event.preventDefault();
cf61fcea0001 resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents: 5
diff changeset
  1093
			});
0
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
  1094
9
177826044cd9 upgrade wordpress to 5.2.3
ymh <ymh.work@gmail.com>
parents: 7
diff changeset
  1095
			$( '#nav-menu-meta' ).on( 'input', '.quick-search', function() {
7
cf61fcea0001 resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents: 5
diff changeset
  1096
				var $this = $( this );
cf61fcea0001 resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents: 5
diff changeset
  1097
cf61fcea0001 resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents: 5
diff changeset
  1098
				$this.attr( 'autocomplete', 'off' );
cf61fcea0001 resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents: 5
diff changeset
  1099
cf61fcea0001 resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents: 5
diff changeset
  1100
				if ( searchTimer ) {
cf61fcea0001 resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents: 5
diff changeset
  1101
					clearTimeout( searchTimer );
0
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
  1102
				}
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
  1103
7
cf61fcea0001 resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents: 5
diff changeset
  1104
				searchTimer = setTimeout( function() {
cf61fcea0001 resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents: 5
diff changeset
  1105
					api.updateQuickSearchResults( $this );
18
be944660c56a Site enmi version 09/2022
ymh <ymh.work@gmail.com>
parents: 16
diff changeset
  1106
				}, 500 );
7
cf61fcea0001 resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents: 5
diff changeset
  1107
			}).on( 'blur', '.quick-search', function() {
cf61fcea0001 resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents: 5
diff changeset
  1108
				api.lastSearch = '';
cf61fcea0001 resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents: 5
diff changeset
  1109
			});
0
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
  1110
		},
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
  1111
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
  1112
		updateQuickSearchResults : function(input) {
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
  1113
			var panel, params,
7
cf61fcea0001 resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents: 5
diff changeset
  1114
				minSearchLength = 2,
cf61fcea0001 resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents: 5
diff changeset
  1115
				q = input.val();
0
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
  1116
7
cf61fcea0001 resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents: 5
diff changeset
  1117
			/*
16
a86126ab1dd4 update enmi-conf
ymh <ymh.work@gmail.com>
parents: 9
diff changeset
  1118
			 * Minimum characters for a search. Also avoid a new Ajax search when
7
cf61fcea0001 resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents: 5
diff changeset
  1119
			 * the pressed key (e.g. arrows) doesn't change the searched term.
cf61fcea0001 resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents: 5
diff changeset
  1120
			 */
cf61fcea0001 resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents: 5
diff changeset
  1121
			if ( q.length < minSearchLength || api.lastSearch == q ) {
cf61fcea0001 resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents: 5
diff changeset
  1122
				return;
cf61fcea0001 resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents: 5
diff changeset
  1123
			}
cf61fcea0001 resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents: 5
diff changeset
  1124
cf61fcea0001 resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents: 5
diff changeset
  1125
			api.lastSearch = q;
0
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
  1126
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
  1127
			panel = input.parents('.tabs-panel');
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
  1128
			params = {
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
  1129
				'action': 'menu-quick-search',
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
  1130
				'response-format': 'markup',
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
  1131
				'menu': $('#menu').val(),
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
  1132
				'menu-settings-column-nonce': $('#menu-settings-column-nonce').val(),
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
  1133
				'q': q,
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
  1134
				'type': input.attr('name')
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
  1135
			};
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
  1136
5
5e2f62d02dcd upgrade wordpress + plugins
ymh <ymh.work@gmail.com>
parents: 0
diff changeset
  1137
			$( '.spinner', panel ).addClass( 'is-active' );
0
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
  1138
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
  1139
			$.post( ajaxurl, params, function(menuMarkup) {
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
  1140
				api.processQuickSearchQueryResponse(menuMarkup, params, panel);
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
  1141
			});
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
  1142
		},
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
  1143
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
  1144
		addCustomLink : function( processMethod ) {
18
be944660c56a Site enmi version 09/2022
ymh <ymh.work@gmail.com>
parents: 16
diff changeset
  1145
			var url = $('#custom-menu-item-url').val().toString(),
0
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
  1146
				label = $('#custom-menu-item-name').val();
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
  1147
18
be944660c56a Site enmi version 09/2022
ymh <ymh.work@gmail.com>
parents: 16
diff changeset
  1148
			if ( '' !== url ) {
be944660c56a Site enmi version 09/2022
ymh <ymh.work@gmail.com>
parents: 16
diff changeset
  1149
				url = url.trim();
be944660c56a Site enmi version 09/2022
ymh <ymh.work@gmail.com>
parents: 16
diff changeset
  1150
			}
be944660c56a Site enmi version 09/2022
ymh <ymh.work@gmail.com>
parents: 16
diff changeset
  1151
0
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
  1152
			processMethod = processMethod || api.addMenuItemToBottom;
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
  1153
16
a86126ab1dd4 update enmi-conf
ymh <ymh.work@gmail.com>
parents: 9
diff changeset
  1154
			if ( '' === url || 'https://' == url || 'http://' == url ) {
7
cf61fcea0001 resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents: 5
diff changeset
  1155
				$('#customlinkdiv').addClass('form-invalid');
0
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
  1156
				return false;
7
cf61fcea0001 resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents: 5
diff changeset
  1157
			}
0
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
  1158
16
a86126ab1dd4 update enmi-conf
ymh <ymh.work@gmail.com>
parents: 9
diff changeset
  1159
			// Show the Ajax spinner.
5
5e2f62d02dcd upgrade wordpress + plugins
ymh <ymh.work@gmail.com>
parents: 0
diff changeset
  1160
			$( '.customlinkdiv .spinner' ).addClass( 'is-active' );
0
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
  1161
			this.addLinkToMenu( url, label, processMethod, function() {
16
a86126ab1dd4 update enmi-conf
ymh <ymh.work@gmail.com>
parents: 9
diff changeset
  1162
				// Remove the Ajax spinner.
5
5e2f62d02dcd upgrade wordpress + plugins
ymh <ymh.work@gmail.com>
parents: 0
diff changeset
  1163
				$( '.customlinkdiv .spinner' ).removeClass( 'is-active' );
16
a86126ab1dd4 update enmi-conf
ymh <ymh.work@gmail.com>
parents: 9
diff changeset
  1164
				// Set custom link form back to defaults.
18
be944660c56a Site enmi version 09/2022
ymh <ymh.work@gmail.com>
parents: 16
diff changeset
  1165
				$('#custom-menu-item-name').val('').trigger( 'blur' );
16
a86126ab1dd4 update enmi-conf
ymh <ymh.work@gmail.com>
parents: 9
diff changeset
  1166
				$( '#custom-menu-item-url' ).val( '' ).attr( 'placeholder', 'https://' );
0
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
  1167
			});
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
  1168
		},
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
  1169
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
  1170
		addLinkToMenu : function(url, label, processMethod, callback) {
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
  1171
			processMethod = processMethod || api.addMenuItemToBottom;
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
  1172
			callback = callback || function(){};
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
  1173
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
  1174
			api.addItemToMenu({
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
  1175
				'-1': {
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
  1176
					'menu-item-type': 'custom',
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
  1177
					'menu-item-url': url,
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
  1178
					'menu-item-title': label
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
  1179
				}
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
  1180
			}, processMethod, callback);
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
  1181
		},
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
  1182
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
  1183
		addItemToMenu : function(menuItem, processMethod, callback) {
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
  1184
			var menu = $('#menu').val(),
5
5e2f62d02dcd upgrade wordpress + plugins
ymh <ymh.work@gmail.com>
parents: 0
diff changeset
  1185
				nonce = $('#menu-settings-column-nonce').val(),
5e2f62d02dcd upgrade wordpress + plugins
ymh <ymh.work@gmail.com>
parents: 0
diff changeset
  1186
				params;
0
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
  1187
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
  1188
			processMethod = processMethod || function(){};
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
  1189
			callback = callback || function(){};
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
  1190
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
  1191
			params = {
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
  1192
				'action': 'add-menu-item',
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
  1193
				'menu': menu,
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
  1194
				'menu-settings-column-nonce': nonce,
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
  1195
				'menu-item': menuItem
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
  1196
			};
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
  1197
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
  1198
			$.post( ajaxurl, params, function(menuMarkup) {
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
  1199
				var ins = $('#menu-instructions');
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
  1200
18
be944660c56a Site enmi version 09/2022
ymh <ymh.work@gmail.com>
parents: 16
diff changeset
  1201
				menuMarkup = menuMarkup || '';
be944660c56a Site enmi version 09/2022
ymh <ymh.work@gmail.com>
parents: 16
diff changeset
  1202
				menuMarkup = menuMarkup.toString().trim(); // Trim leading whitespaces.
0
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
  1203
				processMethod(menuMarkup, params);
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
  1204
16
a86126ab1dd4 update enmi-conf
ymh <ymh.work@gmail.com>
parents: 9
diff changeset
  1205
				// Make it stand out a bit more visually, by adding a fadeIn.
0
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
  1206
				$( 'li.pending' ).hide().fadeIn('slow');
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
  1207
				$( '.drag-instructions' ).show();
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
  1208
				if( ! ins.hasClass( 'menu-instructions-inactive' ) && ins.siblings().length )
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
  1209
					ins.addClass( 'menu-instructions-inactive' );
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
  1210
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
  1211
				callback();
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
  1212
			});
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
  1213
		},
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
  1214
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
  1215
		/**
7
cf61fcea0001 resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents: 5
diff changeset
  1216
		 * Process the add menu item request response into menu list item. Appends to menu.
0
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
  1217
		 *
7
cf61fcea0001 resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents: 5
diff changeset
  1218
		 * @param {string} menuMarkup The text server response of menu item markup.
cf61fcea0001 resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents: 5
diff changeset
  1219
		 *
cf61fcea0001 resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents: 5
diff changeset
  1220
		 * @fires document#menu-item-added Passes menuMarkup as a jQuery object.
0
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
  1221
		 */
5
5e2f62d02dcd upgrade wordpress + plugins
ymh <ymh.work@gmail.com>
parents: 0
diff changeset
  1222
		addMenuItemToBottom : function( menuMarkup ) {
7
cf61fcea0001 resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents: 5
diff changeset
  1223
			var $menuMarkup = $( menuMarkup );
cf61fcea0001 resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents: 5
diff changeset
  1224
			$menuMarkup.hideAdvancedMenuItemFields().appendTo( api.targetList );
0
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
  1225
			api.refreshKeyboardAccessibility();
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
  1226
			api.refreshAdvancedAccessibility();
7
cf61fcea0001 resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents: 5
diff changeset
  1227
			$( document ).trigger( 'menu-item-added', [ $menuMarkup ] );
0
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
  1228
		},
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
  1229
7
cf61fcea0001 resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents: 5
diff changeset
  1230
		/**
cf61fcea0001 resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents: 5
diff changeset
  1231
		 * Process the add menu item request response into menu list item. Prepends to menu.
cf61fcea0001 resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents: 5
diff changeset
  1232
		 *
cf61fcea0001 resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents: 5
diff changeset
  1233
		 * @param {string} menuMarkup The text server response of menu item markup.
cf61fcea0001 resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents: 5
diff changeset
  1234
		 *
cf61fcea0001 resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents: 5
diff changeset
  1235
		 * @fires document#menu-item-added Passes menuMarkup as a jQuery object.
cf61fcea0001 resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents: 5
diff changeset
  1236
		 */
5
5e2f62d02dcd upgrade wordpress + plugins
ymh <ymh.work@gmail.com>
parents: 0
diff changeset
  1237
		addMenuItemToTop : function( menuMarkup ) {
7
cf61fcea0001 resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents: 5
diff changeset
  1238
			var $menuMarkup = $( menuMarkup );
cf61fcea0001 resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents: 5
diff changeset
  1239
			$menuMarkup.hideAdvancedMenuItemFields().prependTo( api.targetList );
0
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
  1240
			api.refreshKeyboardAccessibility();
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
  1241
			api.refreshAdvancedAccessibility();
7
cf61fcea0001 resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents: 5
diff changeset
  1242
			$( document ).trigger( 'menu-item-added', [ $menuMarkup ] );
0
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
  1243
		},
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
  1244
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
  1245
		attachUnsavedChangesListener : function() {
18
be944660c56a Site enmi version 09/2022
ymh <ymh.work@gmail.com>
parents: 16
diff changeset
  1246
			$('#menu-management input, #menu-management select, #menu-management, #menu-management textarea, .menu-location-menus select').on( 'change', function(){
0
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
  1247
				api.registerChange();
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
  1248
			});
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
  1249
5
5e2f62d02dcd upgrade wordpress + plugins
ymh <ymh.work@gmail.com>
parents: 0
diff changeset
  1250
			if ( 0 !== $('#menu-to-edit').length || 0 !== $('.menu-location-menus select').length ) {
0
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
  1251
				window.onbeforeunload = function(){
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
  1252
					if ( api.menusChanged )
16
a86126ab1dd4 update enmi-conf
ymh <ymh.work@gmail.com>
parents: 9
diff changeset
  1253
						return wp.i18n.__( 'The changes you made will be lost if you navigate away from this page.' );
0
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
  1254
				};
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
  1255
			} else {
16
a86126ab1dd4 update enmi-conf
ymh <ymh.work@gmail.com>
parents: 9
diff changeset
  1256
				// Make the post boxes read-only, as they can't be used yet.
18
be944660c56a Site enmi version 09/2022
ymh <ymh.work@gmail.com>
parents: 16
diff changeset
  1257
				$( '#menu-settings-column' ).find( 'input,select' ).end().find( 'a' ).attr( 'href', '#' ).off( 'click' );
0
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
  1258
			}
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
  1259
		},
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
  1260
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
  1261
		registerChange : function() {
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
  1262
			api.menusChanged = true;
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
  1263
		},
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
  1264
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
  1265
		attachTabsPanelListeners : function() {
18
be944660c56a Site enmi version 09/2022
ymh <ymh.work@gmail.com>
parents: 16
diff changeset
  1266
			$('#menu-settings-column').on('click', function(e) {
16
a86126ab1dd4 update enmi-conf
ymh <ymh.work@gmail.com>
parents: 9
diff changeset
  1267
				var selectAreaMatch, selectAll, panelId, wrapper, items,
0
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
  1268
					target = $(e.target);
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
  1269
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
  1270
				if ( target.hasClass('nav-tab-link') ) {
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
  1271
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
  1272
					panelId = target.data( 'type' );
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
  1273
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
  1274
					wrapper = target.parents('.accordion-section-content').first();
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
  1275
16
a86126ab1dd4 update enmi-conf
ymh <ymh.work@gmail.com>
parents: 9
diff changeset
  1276
					// Upon changing tabs, we want to uncheck all checkboxes.
a86126ab1dd4 update enmi-conf
ymh <ymh.work@gmail.com>
parents: 9
diff changeset
  1277
					$( 'input', wrapper ).prop( 'checked', false );
0
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
  1278
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
  1279
					$('.tabs-panel-active', wrapper).removeClass('tabs-panel-active').addClass('tabs-panel-inactive');
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
  1280
					$('#' + panelId, wrapper).removeClass('tabs-panel-inactive').addClass('tabs-panel-active');
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
  1281
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
  1282
					$('.tabs', wrapper).removeClass('tabs');
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
  1283
					target.parent().addClass('tabs');
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
  1284
16
a86126ab1dd4 update enmi-conf
ymh <ymh.work@gmail.com>
parents: 9
diff changeset
  1285
					// Select the search bar.
18
be944660c56a Site enmi version 09/2022
ymh <ymh.work@gmail.com>
parents: 16
diff changeset
  1286
					$('.quick-search', wrapper).trigger( 'focus' );
0
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
  1287
7
cf61fcea0001 resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents: 5
diff changeset
  1288
					// Hide controls in the search tab if no items found.
cf61fcea0001 resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents: 5
diff changeset
  1289
					if ( ! wrapper.find( '.tabs-panel-active .menu-item-title' ).length ) {
cf61fcea0001 resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents: 5
diff changeset
  1290
						wrapper.addClass( 'has-no-menu-item' );
cf61fcea0001 resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents: 5
diff changeset
  1291
					} else {
cf61fcea0001 resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents: 5
diff changeset
  1292
						wrapper.removeClass( 'has-no-menu-item' );
cf61fcea0001 resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents: 5
diff changeset
  1293
					}
cf61fcea0001 resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents: 5
diff changeset
  1294
0
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
  1295
					e.preventDefault();
16
a86126ab1dd4 update enmi-conf
ymh <ymh.work@gmail.com>
parents: 9
diff changeset
  1296
				} else if ( target.hasClass( 'select-all' ) ) {
a86126ab1dd4 update enmi-conf
ymh <ymh.work@gmail.com>
parents: 9
diff changeset
  1297
					selectAreaMatch = target.closest( '.button-controls' ).data( 'items-type' );
a86126ab1dd4 update enmi-conf
ymh <ymh.work@gmail.com>
parents: 9
diff changeset
  1298
					if ( selectAreaMatch ) {
a86126ab1dd4 update enmi-conf
ymh <ymh.work@gmail.com>
parents: 9
diff changeset
  1299
						items = $( '#' + selectAreaMatch + ' .tabs-panel-active .menu-item-title input' );
a86126ab1dd4 update enmi-conf
ymh <ymh.work@gmail.com>
parents: 9
diff changeset
  1300
a86126ab1dd4 update enmi-conf
ymh <ymh.work@gmail.com>
parents: 9
diff changeset
  1301
						if ( items.length === items.filter( ':checked' ).length && ! target.is( ':checked' ) ) {
a86126ab1dd4 update enmi-conf
ymh <ymh.work@gmail.com>
parents: 9
diff changeset
  1302
							items.prop( 'checked', false );
a86126ab1dd4 update enmi-conf
ymh <ymh.work@gmail.com>
parents: 9
diff changeset
  1303
						} else if ( target.is( ':checked' ) ) {
a86126ab1dd4 update enmi-conf
ymh <ymh.work@gmail.com>
parents: 9
diff changeset
  1304
							items.prop( 'checked', true );
a86126ab1dd4 update enmi-conf
ymh <ymh.work@gmail.com>
parents: 9
diff changeset
  1305
						}
a86126ab1dd4 update enmi-conf
ymh <ymh.work@gmail.com>
parents: 9
diff changeset
  1306
					}
a86126ab1dd4 update enmi-conf
ymh <ymh.work@gmail.com>
parents: 9
diff changeset
  1307
				} else if ( target.hasClass( 'menu-item-checkbox' ) ) {
a86126ab1dd4 update enmi-conf
ymh <ymh.work@gmail.com>
parents: 9
diff changeset
  1308
					selectAreaMatch = target.closest( '.tabs-panel-active' ).parent().attr( 'id' );
a86126ab1dd4 update enmi-conf
ymh <ymh.work@gmail.com>
parents: 9
diff changeset
  1309
					if ( selectAreaMatch ) {
a86126ab1dd4 update enmi-conf
ymh <ymh.work@gmail.com>
parents: 9
diff changeset
  1310
						items     = $( '#' + selectAreaMatch + ' .tabs-panel-active .menu-item-title input' );
a86126ab1dd4 update enmi-conf
ymh <ymh.work@gmail.com>
parents: 9
diff changeset
  1311
						selectAll = $( '.button-controls[data-items-type="' + selectAreaMatch + '"] .select-all' );
a86126ab1dd4 update enmi-conf
ymh <ymh.work@gmail.com>
parents: 9
diff changeset
  1312
a86126ab1dd4 update enmi-conf
ymh <ymh.work@gmail.com>
parents: 9
diff changeset
  1313
						if ( items.length === items.filter( ':checked' ).length && ! selectAll.is( ':checked' ) ) {
a86126ab1dd4 update enmi-conf
ymh <ymh.work@gmail.com>
parents: 9
diff changeset
  1314
							selectAll.prop( 'checked', true );
a86126ab1dd4 update enmi-conf
ymh <ymh.work@gmail.com>
parents: 9
diff changeset
  1315
						} else if ( selectAll.is( ':checked' ) ) {
a86126ab1dd4 update enmi-conf
ymh <ymh.work@gmail.com>
parents: 9
diff changeset
  1316
							selectAll.prop( 'checked', false );
a86126ab1dd4 update enmi-conf
ymh <ymh.work@gmail.com>
parents: 9
diff changeset
  1317
						}
0
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
  1318
					}
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
  1319
				} else if ( target.hasClass('submit-add-to-menu') ) {
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
  1320
					api.registerChange();
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
  1321
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
  1322
					if ( e.target.id && 'submit-customlinkdiv' == e.target.id )
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
  1323
						api.addCustomLink( api.addMenuItemToBottom );
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
  1324
					else if ( e.target.id && -1 != e.target.id.indexOf('submit-') )
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
  1325
						$('#' + e.target.id.replace(/submit-/, '')).addSelectedToMenu( api.addMenuItemToBottom );
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
  1326
					return false;
7
cf61fcea0001 resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents: 5
diff changeset
  1327
				}
cf61fcea0001 resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents: 5
diff changeset
  1328
			});
0
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
  1329
7
cf61fcea0001 resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents: 5
diff changeset
  1330
			/*
cf61fcea0001 resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents: 5
diff changeset
  1331
			 * Delegate the `click` event and attach it just to the pagination
cf61fcea0001 resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents: 5
diff changeset
  1332
			 * links thus excluding the current page `<span>`. See ticket #35577.
cf61fcea0001 resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents: 5
diff changeset
  1333
			 */
cf61fcea0001 resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents: 5
diff changeset
  1334
			$( '#nav-menu-meta' ).on( 'click', 'a.page-numbers', function() {
cf61fcea0001 resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents: 5
diff changeset
  1335
				var $container = $( this ).closest( '.inside' );
0
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
  1336
7
cf61fcea0001 resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents: 5
diff changeset
  1337
				$.post( ajaxurl, this.href.replace( /.*\?/, '' ).replace( /action=([^&]*)/, '' ) + '&action=menu-get-metabox',
cf61fcea0001 resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents: 5
diff changeset
  1338
					function( resp ) {
18
be944660c56a Site enmi version 09/2022
ymh <ymh.work@gmail.com>
parents: 16
diff changeset
  1339
						var metaBoxData = JSON.parse( resp ),
7
cf61fcea0001 resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents: 5
diff changeset
  1340
							toReplace;
0
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
  1341
7
cf61fcea0001 resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents: 5
diff changeset
  1342
						if ( -1 === resp.indexOf( 'replace-id' ) ) {
cf61fcea0001 resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents: 5
diff changeset
  1343
							return;
cf61fcea0001 resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents: 5
diff changeset
  1344
						}
0
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
  1345
7
cf61fcea0001 resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents: 5
diff changeset
  1346
						// Get the post type menu meta box to update.
cf61fcea0001 resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents: 5
diff changeset
  1347
						toReplace = document.getElementById( metaBoxData['replace-id'] );
0
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
  1348
7
cf61fcea0001 resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents: 5
diff changeset
  1349
						if ( ! metaBoxData.markup || ! toReplace ) {
cf61fcea0001 resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents: 5
diff changeset
  1350
							return;
0
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
  1351
						}
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
  1352
7
cf61fcea0001 resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents: 5
diff changeset
  1353
						// Update the post type menu meta box with new content from the response.
cf61fcea0001 resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents: 5
diff changeset
  1354
						$container.html( metaBoxData.markup );
cf61fcea0001 resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents: 5
diff changeset
  1355
					}
cf61fcea0001 resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents: 5
diff changeset
  1356
				);
cf61fcea0001 resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents: 5
diff changeset
  1357
cf61fcea0001 resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents: 5
diff changeset
  1358
				return false;
0
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
  1359
			});
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
  1360
		},
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
  1361
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
  1362
		eventOnClickEditLink : function(clickedEl) {
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
  1363
			var settings, item,
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
  1364
			matchedSection = /#(.*)$/.exec(clickedEl.href);
16
a86126ab1dd4 update enmi-conf
ymh <ymh.work@gmail.com>
parents: 9
diff changeset
  1365
0
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
  1366
			if ( matchedSection && matchedSection[1] ) {
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
  1367
				settings = $('#'+matchedSection[1]);
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
  1368
				item = settings.parent();
5
5e2f62d02dcd upgrade wordpress + plugins
ymh <ymh.work@gmail.com>
parents: 0
diff changeset
  1369
				if( 0 !== item.length ) {
0
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
  1370
					if( item.hasClass('menu-item-edit-inactive') ) {
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
  1371
						if( ! settings.data('menu-item-data') ) {
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
  1372
							settings.data( 'menu-item-data', settings.getItemData() );
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
  1373
						}
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
  1374
						settings.slideDown('fast');
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
  1375
						item.removeClass('menu-item-edit-inactive')
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
  1376
							.addClass('menu-item-edit-active');
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
  1377
					} else {
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
  1378
						settings.slideUp('fast');
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
  1379
						item.removeClass('menu-item-edit-active')
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
  1380
							.addClass('menu-item-edit-inactive');
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
  1381
					}
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
  1382
					return false;
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
  1383
				}
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
  1384
			}
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
  1385
		},
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
  1386
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
  1387
		eventOnClickCancelLink : function(clickedEl) {
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
  1388
			var settings = $( clickedEl ).closest( '.menu-item-settings' ),
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
  1389
				thisMenuItem = $( clickedEl ).closest( '.menu-item' );
16
a86126ab1dd4 update enmi-conf
ymh <ymh.work@gmail.com>
parents: 9
diff changeset
  1390
a86126ab1dd4 update enmi-conf
ymh <ymh.work@gmail.com>
parents: 9
diff changeset
  1391
			thisMenuItem.removeClass( 'menu-item-edit-active' ).addClass( 'menu-item-edit-inactive' );
a86126ab1dd4 update enmi-conf
ymh <ymh.work@gmail.com>
parents: 9
diff changeset
  1392
			settings.setItemData( settings.data( 'menu-item-data' ) ).hide();
a86126ab1dd4 update enmi-conf
ymh <ymh.work@gmail.com>
parents: 9
diff changeset
  1393
			// Restore the title of the currently active/expanded menu item.
a86126ab1dd4 update enmi-conf
ymh <ymh.work@gmail.com>
parents: 9
diff changeset
  1394
			thisMenuItem.find( '.menu-item-title' ).text( settings.data( 'menu-item-data' )['menu-item-title'] );
a86126ab1dd4 update enmi-conf
ymh <ymh.work@gmail.com>
parents: 9
diff changeset
  1395
0
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
  1396
			return false;
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
  1397
		},
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
  1398
5
5e2f62d02dcd upgrade wordpress + plugins
ymh <ymh.work@gmail.com>
parents: 0
diff changeset
  1399
		eventOnClickMenuSave : function() {
0
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
  1400
			var locs = '',
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
  1401
			menuName = $('#menu-name'),
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
  1402
			menuNameVal = menuName.val();
16
a86126ab1dd4 update enmi-conf
ymh <ymh.work@gmail.com>
parents: 9
diff changeset
  1403
a86126ab1dd4 update enmi-conf
ymh <ymh.work@gmail.com>
parents: 9
diff changeset
  1404
			// Cancel and warn if invalid menu name.
9
177826044cd9 upgrade wordpress to 5.2.3
ymh <ymh.work@gmail.com>
parents: 7
diff changeset
  1405
			if ( ! menuNameVal || ! menuNameVal.replace( /\s+/, '' ) ) {
177826044cd9 upgrade wordpress to 5.2.3
ymh <ymh.work@gmail.com>
parents: 7
diff changeset
  1406
				menuName.parent().addClass( 'form-invalid' );
0
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
  1407
				return false;
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
  1408
			}
16
a86126ab1dd4 update enmi-conf
ymh <ymh.work@gmail.com>
parents: 9
diff changeset
  1409
			// Copy menu theme locations.
0
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
  1410
			$('#nav-menu-theme-locations select').each(function() {
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
  1411
				locs += '<input type="hidden" name="' + this.name + '" value="' + $(this).val() + '" />';
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
  1412
			});
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
  1413
			$('#update-nav-menu').append( locs );
16
a86126ab1dd4 update enmi-conf
ymh <ymh.work@gmail.com>
parents: 9
diff changeset
  1414
			// Update menu item position data.
0
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
  1415
			api.menuList.find('.menu-item-data-position').val( function(index) { return index + 1; } );
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
  1416
			window.onbeforeunload = null;
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
  1417
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
  1418
			return true;
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
  1419
		},
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
  1420
5
5e2f62d02dcd upgrade wordpress + plugins
ymh <ymh.work@gmail.com>
parents: 0
diff changeset
  1421
		eventOnClickMenuDelete : function() {
16
a86126ab1dd4 update enmi-conf
ymh <ymh.work@gmail.com>
parents: 9
diff changeset
  1422
			// Delete warning AYS.
a86126ab1dd4 update enmi-conf
ymh <ymh.work@gmail.com>
parents: 9
diff changeset
  1423
			if ( window.confirm( wp.i18n.__( 'You are about to permanently delete this menu.\n\'Cancel\' to stop, \'OK\' to delete.' ) ) ) {
0
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
  1424
				window.onbeforeunload = null;
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
  1425
				return true;
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
  1426
			}
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
  1427
			return false;
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
  1428
		},
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
  1429
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
  1430
		eventOnClickMenuItemDelete : function(clickedEl) {
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
  1431
			var itemID = parseInt(clickedEl.id.replace('delete-', ''), 10);
16
a86126ab1dd4 update enmi-conf
ymh <ymh.work@gmail.com>
parents: 9
diff changeset
  1432
0
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
  1433
			api.removeMenuItem( $('#menu-item-' + itemID) );
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
  1434
			api.registerChange();
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
  1435
			return false;
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
  1436
		},
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
  1437
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
  1438
		/**
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
  1439
		 * Process the quick search response into a search result
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
  1440
		 *
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
  1441
		 * @param string resp The server response to the query.
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
  1442
		 * @param object req The request arguments.
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
  1443
		 * @param jQuery panel The tabs panel we're searching in.
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
  1444
		 */
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
  1445
		processQuickSearchQueryResponse : function(resp, req, panel) {
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
  1446
			var matched, newID,
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
  1447
			takenIDs = {},
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
  1448
			form = document.getElementById('nav-menu-meta'),
5
5e2f62d02dcd upgrade wordpress + plugins
ymh <ymh.work@gmail.com>
parents: 0
diff changeset
  1449
			pattern = /menu-item[(\[^]\]*/,
0
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
  1450
			$items = $('<div>').html(resp).find('li'),
7
cf61fcea0001 resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents: 5
diff changeset
  1451
			wrapper = panel.closest( '.accordion-section-content' ),
16
a86126ab1dd4 update enmi-conf
ymh <ymh.work@gmail.com>
parents: 9
diff changeset
  1452
			selectAll = wrapper.find( '.button-controls .select-all' ),
0
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
  1453
			$item;
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
  1454
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
  1455
			if( ! $items.length ) {
16
a86126ab1dd4 update enmi-conf
ymh <ymh.work@gmail.com>
parents: 9
diff changeset
  1456
				$('.categorychecklist', panel).html( '<li><p>' + wp.i18n.__( 'No results found.' ) + '</p></li>' );
5
5e2f62d02dcd upgrade wordpress + plugins
ymh <ymh.work@gmail.com>
parents: 0
diff changeset
  1457
				$( '.spinner', panel ).removeClass( 'is-active' );
7
cf61fcea0001 resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents: 5
diff changeset
  1458
				wrapper.addClass( 'has-no-menu-item' );
0
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
  1459
				return;
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
  1460
			}
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
  1461
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
  1462
			$items.each(function(){
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
  1463
				$item = $(this);
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
  1464
16
a86126ab1dd4 update enmi-conf
ymh <ymh.work@gmail.com>
parents: 9
diff changeset
  1465
				// Make a unique DB ID number.
0
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
  1466
				matched = pattern.exec($item.html());
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
  1467
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
  1468
				if ( matched && matched[1] ) {
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
  1469
					newID = matched[1];
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
  1470
					while( form.elements['menu-item[' + newID + '][menu-item-type]'] || takenIDs[ newID ] ) {
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
  1471
						newID--;
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
  1472
					}
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
  1473
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
  1474
					takenIDs[newID] = true;
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
  1475
					if ( newID != matched[1] ) {
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
  1476
						$item.html( $item.html().replace(new RegExp(
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
  1477
							'menu-item\\[' + matched[1] + '\\]', 'g'),
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
  1478
							'menu-item[' + newID + ']'
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
  1479
						) );
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
  1480
					}
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
  1481
				}
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
  1482
			});
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
  1483
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
  1484
			$('.categorychecklist', panel).html( $items );
5
5e2f62d02dcd upgrade wordpress + plugins
ymh <ymh.work@gmail.com>
parents: 0
diff changeset
  1485
			$( '.spinner', panel ).removeClass( 'is-active' );
7
cf61fcea0001 resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents: 5
diff changeset
  1486
			wrapper.removeClass( 'has-no-menu-item' );
16
a86126ab1dd4 update enmi-conf
ymh <ymh.work@gmail.com>
parents: 9
diff changeset
  1487
a86126ab1dd4 update enmi-conf
ymh <ymh.work@gmail.com>
parents: 9
diff changeset
  1488
			if ( selectAll.is( ':checked' ) ) {
a86126ab1dd4 update enmi-conf
ymh <ymh.work@gmail.com>
parents: 9
diff changeset
  1489
				selectAll.prop( 'checked', false );
a86126ab1dd4 update enmi-conf
ymh <ymh.work@gmail.com>
parents: 9
diff changeset
  1490
			}
0
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
  1491
		},
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
  1492
7
cf61fcea0001 resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents: 5
diff changeset
  1493
		/**
cf61fcea0001 resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents: 5
diff changeset
  1494
		 * Remove a menu item.
16
a86126ab1dd4 update enmi-conf
ymh <ymh.work@gmail.com>
parents: 9
diff changeset
  1495
		 *
a86126ab1dd4 update enmi-conf
ymh <ymh.work@gmail.com>
parents: 9
diff changeset
  1496
		 * @param {Object} el The element to be removed as a jQuery object.
7
cf61fcea0001 resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents: 5
diff changeset
  1497
		 *
cf61fcea0001 resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents: 5
diff changeset
  1498
		 * @fires document#menu-removing-item Passes the element to be removed.
cf61fcea0001 resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents: 5
diff changeset
  1499
		 */
0
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
  1500
		removeMenuItem : function(el) {
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
  1501
			var children = el.childMenuItems();
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
  1502
7
cf61fcea0001 resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents: 5
diff changeset
  1503
			$( document ).trigger( 'menu-removing-item', [ el ] );
0
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
  1504
			el.addClass('deleting').animate({
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
  1505
					opacity : 0,
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
  1506
					height: 0
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
  1507
				}, 350, function() {
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
  1508
					var ins = $('#menu-instructions');
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
  1509
					el.remove();
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
  1510
					children.shiftDepthClass( -1 ).updateParentMenuItemDBId();
5
5e2f62d02dcd upgrade wordpress + plugins
ymh <ymh.work@gmail.com>
parents: 0
diff changeset
  1511
					if ( 0 === $( '#menu-to-edit li' ).length ) {
0
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
  1512
						$( '.drag-instructions' ).hide();
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
  1513
						ins.removeClass( 'menu-instructions-inactive' );
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
  1514
					}
5
5e2f62d02dcd upgrade wordpress + plugins
ymh <ymh.work@gmail.com>
parents: 0
diff changeset
  1515
					api.refreshAdvancedAccessibility();
0
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
  1516
				});
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
  1517
		},
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
  1518
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
  1519
		depthToPx : function(depth) {
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
  1520
			return depth * api.options.menuItemDepthPerLevel;
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
  1521
		},
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
  1522
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
  1523
		pxToDepth : function(px) {
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
  1524
			return Math.floor(px / api.options.menuItemDepthPerLevel);
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
  1525
		}
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
  1526
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
  1527
	};
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
  1528
18
be944660c56a Site enmi version 09/2022
ymh <ymh.work@gmail.com>
parents: 16
diff changeset
  1529
	$( function() {
be944660c56a Site enmi version 09/2022
ymh <ymh.work@gmail.com>
parents: 16
diff changeset
  1530
be944660c56a Site enmi version 09/2022
ymh <ymh.work@gmail.com>
parents: 16
diff changeset
  1531
		wpNavMenu.init();
be944660c56a Site enmi version 09/2022
ymh <ymh.work@gmail.com>
parents: 16
diff changeset
  1532
be944660c56a Site enmi version 09/2022
ymh <ymh.work@gmail.com>
parents: 16
diff changeset
  1533
		// Prevent focused element from being hidden by the sticky footer.
be944660c56a Site enmi version 09/2022
ymh <ymh.work@gmail.com>
parents: 16
diff changeset
  1534
		$( '.menu-edit a, .menu-edit button, .menu-edit input, .menu-edit textarea, .menu-edit select' ).on('focus', function() {
be944660c56a Site enmi version 09/2022
ymh <ymh.work@gmail.com>
parents: 16
diff changeset
  1535
			if ( window.innerWidth >= 783 ) {
be944660c56a Site enmi version 09/2022
ymh <ymh.work@gmail.com>
parents: 16
diff changeset
  1536
				var navMenuHeight = $( '#nav-menu-footer' ).height() + 20;
be944660c56a Site enmi version 09/2022
ymh <ymh.work@gmail.com>
parents: 16
diff changeset
  1537
				var bottomOffset = $(this).offset().top - ( $(window).scrollTop() + $(window).height() - $(this).height() );
be944660c56a Site enmi version 09/2022
ymh <ymh.work@gmail.com>
parents: 16
diff changeset
  1538
be944660c56a Site enmi version 09/2022
ymh <ymh.work@gmail.com>
parents: 16
diff changeset
  1539
				if ( bottomOffset > 0 ) {
be944660c56a Site enmi version 09/2022
ymh <ymh.work@gmail.com>
parents: 16
diff changeset
  1540
					bottomOffset = 0;
be944660c56a Site enmi version 09/2022
ymh <ymh.work@gmail.com>
parents: 16
diff changeset
  1541
				}
be944660c56a Site enmi version 09/2022
ymh <ymh.work@gmail.com>
parents: 16
diff changeset
  1542
				bottomOffset = bottomOffset * -1;
be944660c56a Site enmi version 09/2022
ymh <ymh.work@gmail.com>
parents: 16
diff changeset
  1543
be944660c56a Site enmi version 09/2022
ymh <ymh.work@gmail.com>
parents: 16
diff changeset
  1544
				if( bottomOffset < navMenuHeight ) {
be944660c56a Site enmi version 09/2022
ymh <ymh.work@gmail.com>
parents: 16
diff changeset
  1545
					var scrollTop = $(document).scrollTop();
be944660c56a Site enmi version 09/2022
ymh <ymh.work@gmail.com>
parents: 16
diff changeset
  1546
					$(document).scrollTop( scrollTop + ( navMenuHeight - bottomOffset ) );
be944660c56a Site enmi version 09/2022
ymh <ymh.work@gmail.com>
parents: 16
diff changeset
  1547
				}
be944660c56a Site enmi version 09/2022
ymh <ymh.work@gmail.com>
parents: 16
diff changeset
  1548
			}
be944660c56a Site enmi version 09/2022
ymh <ymh.work@gmail.com>
parents: 16
diff changeset
  1549
		});
be944660c56a Site enmi version 09/2022
ymh <ymh.work@gmail.com>
parents: 16
diff changeset
  1550
	});
0
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
  1551
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
  1552
})(jQuery);