2010-03-17 17:13:16 +01:00
|
|
|
/**
|
2010-03-22 20:56:16 +01:00
|
|
|
* WordPress Administration Navigation Menu
|
2010-03-17 17:13:16 +01:00
|
|
|
* Interface JS functions
|
|
|
|
*
|
2010-03-22 20:56:16 +01:00
|
|
|
* @version 2.0.0
|
2010-03-17 17:13:16 +01:00
|
|
|
*
|
|
|
|
* @package WordPress
|
|
|
|
* @subpackage Administration
|
|
|
|
*/
|
|
|
|
|
2010-05-02 21:09:10 +02:00
|
|
|
var WPNavMenuHandler = function ($) {
|
|
|
|
var autoCompleteData = {},
|
2010-05-03 22:26:11 +02:00
|
|
|
|
2010-05-02 21:09:10 +02:00
|
|
|
menuItemDepthPerLevel = 30, // Do not use directly. Use depthToPx and pxToDepth instead.
|
|
|
|
globalMaxDepth = 11,
|
2010-04-27 03:05:58 +02:00
|
|
|
|
|
|
|
formatAutocompleteResponse = function( resultRow, pos, total, queryTerm ) {
|
|
|
|
if ( resultRow && resultRow[0] ) {
|
|
|
|
var data = $.parseJSON(resultRow[0]);
|
|
|
|
if ( data.post_title ) {
|
|
|
|
if ( data.ID && data.post_type )
|
|
|
|
autoCompleteData[data.post_title] = {ID: data.ID, object_type: data.post_type};
|
|
|
|
return data.post_title;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
},
|
2010-03-22 20:56:16 +01:00
|
|
|
|
2010-04-27 03:05:58 +02:00
|
|
|
formatAutocompleteResult = function( resultRow, pos, total, queryTerm ) {
|
|
|
|
if ( resultRow && resultRow[0] ) {
|
|
|
|
var data = $.parseJSON(resultRow[0]);
|
|
|
|
if ( data.post_title )
|
|
|
|
return data.post_title;
|
|
|
|
}
|
|
|
|
},
|
2010-05-03 22:26:11 +02:00
|
|
|
|
2010-04-27 03:05:58 +02:00
|
|
|
getListDataFromID = function(menuItemID, parentEl) {
|
2010-05-03 22:26:11 +02:00
|
|
|
if ( ! menuItemID )
|
2010-04-27 03:05:58 +02:00
|
|
|
return false;
|
|
|
|
parentEl = parentEl || document;
|
|
|
|
var fields = [
|
|
|
|
'menu-item-db-id',
|
|
|
|
'menu-item-object-id',
|
|
|
|
'menu-item-object',
|
|
|
|
'menu-item-parent-id',
|
|
|
|
'menu-item-position',
|
|
|
|
'menu-item-type',
|
|
|
|
'menu-item-append',
|
|
|
|
'menu-item-title',
|
|
|
|
'menu-item-url',
|
|
|
|
'menu-item-description',
|
|
|
|
'menu-item-attr-title',
|
|
|
|
'menu-item-target',
|
|
|
|
'menu-item-classes',
|
|
|
|
'menu-item-xfn'
|
|
|
|
],
|
|
|
|
itemData = {},
|
|
|
|
inputs = parentEl.getElementsByTagName('input'),
|
|
|
|
i = inputs.length,
|
|
|
|
j,
|
|
|
|
menuID = document.getElementById('nav-menu-meta-object-id').value;
|
|
|
|
|
|
|
|
while ( i-- ) {
|
|
|
|
j = fields.length;
|
|
|
|
while ( j-- ) {
|
2010-05-03 22:26:11 +02:00
|
|
|
if (
|
2010-04-27 03:05:58 +02:00
|
|
|
inputs[i] &&
|
|
|
|
inputs[i].name &&
|
2010-05-03 22:26:11 +02:00
|
|
|
'menu-item[' + menuItemID + '][' + fields[j] + ']' == inputs[i].name
|
2010-04-27 03:05:58 +02:00
|
|
|
) {
|
|
|
|
itemData[fields[j]] = inputs[i].value;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return itemData;
|
|
|
|
},
|
2010-05-03 22:26:11 +02:00
|
|
|
|
2010-05-02 21:09:10 +02:00
|
|
|
recalculateMenuItemPositions = function() {
|
|
|
|
menuList.find('.menu-item-data-position').val( function(index) { return index + 1; } );
|
2010-04-27 03:05:58 +02:00
|
|
|
},
|
2010-05-03 22:26:11 +02:00
|
|
|
|
2010-05-02 21:09:10 +02:00
|
|
|
depthToPx = function(depth) {
|
|
|
|
return depth * menuItemDepthPerLevel;
|
|
|
|
},
|
2010-05-03 22:26:11 +02:00
|
|
|
|
2010-05-02 21:09:10 +02:00
|
|
|
pxToDepth = function(px) {
|
|
|
|
return Math.floor(px / menuItemDepthPerLevel);
|
2010-04-27 03:05:58 +02:00
|
|
|
},
|
|
|
|
|
2010-05-04 09:24:49 +02:00
|
|
|
menuList, targetList;
|
2010-05-03 22:26:11 +02:00
|
|
|
|
2010-05-02 21:09:10 +02:00
|
|
|
// jQuery extensions
|
|
|
|
$.fn.extend({
|
|
|
|
menuItemDepth : function() {
|
|
|
|
return pxToDepth( this.eq(0).css('margin-left').slice(0, -2) );
|
|
|
|
},
|
|
|
|
updateDepthClass : function(current, prev) {
|
|
|
|
return this.each(function(){
|
|
|
|
var t = $(this);
|
|
|
|
prev = prev || t.menuItemDepth();
|
|
|
|
$(this).removeClass('menu-item-depth-'+ prev )
|
|
|
|
.addClass('menu-item-depth-'+ current );
|
|
|
|
});
|
|
|
|
},
|
|
|
|
shiftDepthClass : function(change) {
|
|
|
|
return this.each(function(){
|
|
|
|
var t = $(this),
|
|
|
|
depth = t.menuItemDepth();
|
|
|
|
$(this).removeClass('menu-item-depth-'+ depth )
|
|
|
|
.addClass('menu-item-depth-'+ (depth + change) );
|
|
|
|
});
|
|
|
|
},
|
|
|
|
childMenuItems : function() {
|
|
|
|
var result = $();
|
|
|
|
this.each(function(){
|
|
|
|
var t = $(this), depth = t.menuItemDepth(), next = t.next();
|
|
|
|
while( next.length && next.menuItemDepth() > depth ) {
|
|
|
|
result = result.add( next );
|
|
|
|
next = next.next();
|
|
|
|
}
|
|
|
|
});
|
|
|
|
return result;
|
|
|
|
},
|
|
|
|
updateParentMenuItemDBId : function() {
|
|
|
|
return this.each(function(){
|
|
|
|
var item = $(this),
|
|
|
|
input = item.find('.menu-item-data-parent-id'),
|
|
|
|
depth = item.menuItemDepth(),
|
|
|
|
parent = item.prev();
|
|
|
|
|
|
|
|
if( depth == 0 ) { // Item is on the top level, has no parent
|
|
|
|
input.val(0);
|
|
|
|
} else { // Find the parent item, and retrieve its object id.
|
|
|
|
while( parent.menuItemDepth() != depth - 1 ) {
|
|
|
|
parent = parent.prev();
|
|
|
|
}
|
|
|
|
input.val( parent.find('.menu-item-data-object-id').val() );
|
|
|
|
}
|
|
|
|
});
|
|
|
|
},
|
|
|
|
hideAdvancedMenuItemFields : function() {
|
|
|
|
return this.each(function(){
|
|
|
|
var that = $(this);
|
|
|
|
$('.hide-column-tog').not(':checked').each(function(){
|
|
|
|
that.find('.field-' + $(this).val() ).addClass('hidden-field');
|
|
|
|
});
|
|
|
|
});
|
|
|
|
},
|
2010-05-04 10:54:35 +02:00
|
|
|
selectItem : function() {
|
|
|
|
return this.each(function(){
|
|
|
|
$(this).addClass('selected-menu-item')
|
|
|
|
.next().children('input').attr('checked','checked');
|
|
|
|
});
|
|
|
|
},
|
|
|
|
deselectItem : function() {
|
|
|
|
return this.each(function(){
|
|
|
|
$(this).removeClass('selected-menu-item')
|
|
|
|
.next().children('input').removeAttr('checked');
|
|
|
|
});
|
|
|
|
},
|
|
|
|
toggleItem : function() {
|
|
|
|
return this.each(function(){
|
|
|
|
var t = $(this);
|
|
|
|
if( t.hasClass('selected-menu-item') )
|
|
|
|
t.deselectItem();
|
|
|
|
else
|
|
|
|
t.selectItem();
|
|
|
|
});
|
|
|
|
}
|
2010-05-02 21:09:10 +02:00
|
|
|
});
|
2010-04-27 03:05:58 +02:00
|
|
|
|
|
|
|
return {
|
2010-05-03 22:26:11 +02:00
|
|
|
|
2010-03-22 20:56:16 +01:00
|
|
|
// Functions that run on init.
|
|
|
|
init : function() {
|
2010-05-02 21:09:10 +02:00
|
|
|
menuList = $('#menu-to-edit');
|
2010-05-04 09:24:49 +02:00
|
|
|
targetList = menuList;
|
2010-05-03 22:26:11 +02:00
|
|
|
|
2010-04-27 03:05:58 +02:00
|
|
|
this.attachMenuEditListeners();
|
|
|
|
|
|
|
|
this.attachMenuMetaListeners(document.getElementById('nav-menu-meta'));
|
2010-05-03 22:26:11 +02:00
|
|
|
|
2010-04-27 03:05:58 +02:00
|
|
|
this.attachTabsPanelListeners();
|
2010-05-03 22:26:11 +02:00
|
|
|
|
2010-05-04 12:01:15 +02:00
|
|
|
this.attachHomeLinkListener();
|
|
|
|
|
2010-05-02 21:09:10 +02:00
|
|
|
if( menuList.length ) // If no menu, we're in the + tab.
|
|
|
|
this.initSortables();
|
2010-03-22 20:56:16 +01:00
|
|
|
|
2010-04-29 05:43:11 +02:00
|
|
|
this.initToggles();
|
2010-05-03 22:26:11 +02:00
|
|
|
|
2010-05-03 12:28:35 +02:00
|
|
|
this.initTabManager();
|
2010-05-04 09:24:49 +02:00
|
|
|
|
|
|
|
this.initAddMenuItemDraggables();
|
2010-05-04 12:01:15 +02:00
|
|
|
|
|
|
|
this.checkForEmptyMenu();
|
2010-04-29 05:43:11 +02:00
|
|
|
},
|
2010-05-03 22:26:11 +02:00
|
|
|
|
2010-04-29 05:43:11 +02:00
|
|
|
initToggles : function() {
|
|
|
|
// init postboxes
|
2010-04-27 03:05:58 +02:00
|
|
|
postboxes.add_postbox_toggles('nav-menus');
|
2010-05-03 22:26:11 +02:00
|
|
|
|
2010-04-29 05:43:11 +02:00
|
|
|
// adjust columns functions for menus UI
|
|
|
|
columns.useCheckboxesForHidden();
|
|
|
|
columns.checked = function(field) {
|
|
|
|
$('.field-' + field).removeClass('hidden-field');
|
|
|
|
}
|
|
|
|
columns.unchecked = function(field) {
|
|
|
|
$('.field-' + field).addClass('hidden-field');
|
|
|
|
}
|
|
|
|
// hide fields
|
2010-05-02 21:09:10 +02:00
|
|
|
menuList.hideAdvancedMenuItemFields();
|
2010-04-29 05:43:11 +02:00
|
|
|
},
|
2010-05-03 22:26:11 +02:00
|
|
|
|
2010-05-02 21:09:10 +02:00
|
|
|
initSortables : function() {
|
|
|
|
var currentDepth = 0, originalDepth, minDepth, maxDepth,
|
2010-05-04 09:24:49 +02:00
|
|
|
menuLeft = menuList.offset().left,
|
|
|
|
newItem, transport;
|
2010-05-03 22:26:11 +02:00
|
|
|
|
2010-05-02 21:09:10 +02:00
|
|
|
menuList.sortable({
|
2010-05-04 09:24:49 +02:00
|
|
|
handle: '.menu-item-handle',
|
2010-05-02 21:09:10 +02:00
|
|
|
placeholder: 'sortable-placeholder',
|
|
|
|
start: function(e, ui) {
|
2010-05-04 09:24:49 +02:00
|
|
|
var next, height, width, parent, children, maxChildDepth;
|
|
|
|
|
|
|
|
transport = ui.item.children('.menu-item-transport');
|
|
|
|
// Check if the item is in the menu, or new
|
|
|
|
newItem = ( ui.helper.hasClass('new-menu-item') );
|
|
|
|
|
|
|
|
// Set depths. currentDepth must be set before children are located.
|
|
|
|
originalDepth = ( newItem ) ? 0 : ui.item.menuItemDepth();
|
2010-05-02 21:09:10 +02:00
|
|
|
updateCurrentDepth(ui, originalDepth);
|
2010-05-04 09:24:49 +02:00
|
|
|
|
|
|
|
if( ! newItem ) {
|
|
|
|
// Attach child elements to parent
|
|
|
|
// Skip the placeholder
|
|
|
|
parent = ( ui.item.next()[0] == ui.placeholder[0] ) ? ui.item.next() : ui.item;
|
|
|
|
children = parent.childMenuItems();
|
|
|
|
transport.append( children );
|
|
|
|
}
|
2010-05-02 21:09:10 +02:00
|
|
|
|
|
|
|
// Now that the element is complete, we can update...
|
|
|
|
updateDepthRange(ui);
|
2010-05-03 22:26:11 +02:00
|
|
|
|
2010-05-02 21:09:10 +02:00
|
|
|
// Update the height of the placeholder to match the moving item.
|
|
|
|
height = transport.outerHeight();
|
|
|
|
// If there are children, account for distance between top of children and parent
|
|
|
|
height += ( height > 0 ) ? (ui.placeholder.css('margin-top').slice(0, -2) * 1) : 0;
|
2010-05-04 09:24:49 +02:00
|
|
|
height += ui.helper.outerHeight();
|
2010-05-02 21:09:10 +02:00
|
|
|
height -= 2; // Subtract 2 for borders
|
|
|
|
ui.placeholder.height(height);
|
2010-05-03 22:26:11 +02:00
|
|
|
|
2010-05-02 21:09:10 +02:00
|
|
|
// Update the width of the placeholder to match the moving item.
|
|
|
|
maxChildDepth = originalDepth;
|
2010-05-04 09:24:49 +02:00
|
|
|
if( ! newItem ) { // Children have already been attached to new items
|
|
|
|
children.each(function(){
|
|
|
|
var depth = $(this).menuItemDepth();
|
|
|
|
maxChildDepth = (depth > maxChildDepth) ? depth : maxChildDepth;
|
|
|
|
});
|
|
|
|
}
|
|
|
|
width = ui.helper.find('.menu-item-handle').outerWidth(); // Get original width
|
2010-05-02 21:09:10 +02:00
|
|
|
width += depthToPx(maxChildDepth - originalDepth); // Account for children
|
|
|
|
width -= 2; // Subtract 2 for borders
|
|
|
|
ui.placeholder.width(width);
|
|
|
|
},
|
|
|
|
stop: function(e, ui) {
|
|
|
|
var children, depthChange = currentDepth - originalDepth;
|
2010-05-03 22:26:11 +02:00
|
|
|
|
2010-05-02 21:09:10 +02:00
|
|
|
// Return child elements to the list
|
2010-05-04 09:24:49 +02:00
|
|
|
children = transport.children().insertAfter(ui.item);
|
|
|
|
|
|
|
|
if( newItem ) {
|
|
|
|
// Remove the helper item
|
|
|
|
ui.item.remove();
|
|
|
|
// Update depth classes
|
|
|
|
if( depthChange != 0 )
|
|
|
|
children.shiftDepthClass( depthChange );
|
|
|
|
// All new menu items must be updated
|
|
|
|
children.updateParentMenuItemDBId();
|
|
|
|
} else {
|
|
|
|
// Update depth classes
|
|
|
|
if( depthChange != 0 ) {
|
|
|
|
ui.item.updateDepthClass( currentDepth );
|
|
|
|
children.shiftDepthClass( depthChange );
|
|
|
|
}
|
|
|
|
// Update the item data.
|
|
|
|
ui.item.updateParentMenuItemDBId();
|
2010-05-02 21:09:10 +02:00
|
|
|
}
|
2010-05-04 09:24:49 +02:00
|
|
|
// Update positions
|
2010-05-02 21:09:10 +02:00
|
|
|
recalculateMenuItemPositions();
|
|
|
|
},
|
|
|
|
change: function(e, ui) {
|
|
|
|
// Make sure the placeholder is inside the menu.
|
|
|
|
// Otherwise fix it, or we're in trouble.
|
|
|
|
if( ! ui.placeholder.parent().hasClass('menu') )
|
|
|
|
ui.placeholder.appendTo(menuList);
|
2010-05-03 22:26:11 +02:00
|
|
|
|
2010-05-02 21:09:10 +02:00
|
|
|
updateDepthRange(ui);
|
|
|
|
},
|
|
|
|
sort: function(e, ui) {
|
2010-05-04 09:24:49 +02:00
|
|
|
var depth = pxToDepth(ui.helper.offset().left - menuLeft);
|
2010-05-02 21:09:10 +02:00
|
|
|
// Check and correct if depth is not within range.
|
|
|
|
if ( depth < minDepth ) depth = minDepth;
|
|
|
|
else if ( depth > maxDepth ) depth = maxDepth;
|
2010-05-03 22:26:11 +02:00
|
|
|
|
2010-05-02 21:09:10 +02:00
|
|
|
if( depth != currentDepth )
|
|
|
|
updateCurrentDepth(ui, depth);
|
2010-05-04 09:24:49 +02:00
|
|
|
},
|
|
|
|
receive: function(e, ui) {
|
|
|
|
transport = ui.sender.children('.menu-item-transport');
|
2010-05-02 21:09:10 +02:00
|
|
|
}
|
2010-04-29 05:43:11 +02:00
|
|
|
});
|
2010-05-03 22:26:11 +02:00
|
|
|
|
2010-05-02 21:09:10 +02:00
|
|
|
function updateDepthRange(ui) {
|
|
|
|
var prev = ui.placeholder.prev(),
|
|
|
|
next = ui.placeholder.next(), depth;
|
2010-05-03 22:26:11 +02:00
|
|
|
|
2010-05-02 21:09:10 +02:00
|
|
|
// Make sure we don't select the moving item.
|
2010-05-03 22:26:11 +02:00
|
|
|
if( prev[0] == ui.item[0] ) prev = prev.prev();
|
2010-05-02 21:09:10 +02:00
|
|
|
if( next[0] == ui.item[0] ) next = next.next();
|
2010-05-03 22:26:11 +02:00
|
|
|
|
2010-05-02 21:09:10 +02:00
|
|
|
minDepth = (next.length) ? next.menuItemDepth() : 0;
|
2010-05-03 22:26:11 +02:00
|
|
|
|
2010-05-02 21:09:10 +02:00
|
|
|
if( prev.length )
|
|
|
|
maxDepth = ( (depth = prev.menuItemDepth() + 1) > globalMaxDepth ) ? globalMaxDepth : depth;
|
|
|
|
else
|
|
|
|
maxDepth = 0;
|
|
|
|
}
|
2010-05-03 22:26:11 +02:00
|
|
|
|
2010-05-02 21:09:10 +02:00
|
|
|
function updateCurrentDepth(ui, depth) {
|
|
|
|
ui.placeholder.updateDepthClass( depth, currentDepth );
|
|
|
|
currentDepth = depth;
|
|
|
|
}
|
2010-04-27 03:05:58 +02:00
|
|
|
},
|
2010-05-04 09:24:49 +02:00
|
|
|
|
|
|
|
initAddMenuItemDraggables : function() {
|
|
|
|
var menuItems = $('.potential-menu-item');
|
|
|
|
menuItems.click(function(e){
|
|
|
|
$(this).toggleItem();
|
|
|
|
}).children().draggable({
|
|
|
|
helper: 'clone',
|
|
|
|
connectToSortable: 'ul#menu-to-edit',
|
|
|
|
distance: 5,
|
|
|
|
zIndex: 100,
|
|
|
|
start: function(e, ui) {
|
|
|
|
var target = $(e.target),
|
|
|
|
item = target.parent(),
|
|
|
|
li = item.parent(),
|
|
|
|
items;
|
|
|
|
|
|
|
|
// Make sure the item we're dragging is selected.
|
2010-05-04 10:54:35 +02:00
|
|
|
item.selectItem();
|
2010-05-04 09:24:49 +02:00
|
|
|
// Set us to be the ajax target
|
|
|
|
targetList = target.children('.menu-item-transport');
|
|
|
|
// Get all checked elements and assemble selected items.
|
2010-05-04 12:01:15 +02:00
|
|
|
items = li.parents('.tabs-panel').find('.selected-menu-item').children().not( ui.helper ).clone();
|
2010-05-04 09:24:49 +02:00
|
|
|
ui.helper.children('.additional-menu-items').append( items );
|
|
|
|
// This class tells the sortables to treat it as a new item.
|
|
|
|
ui.helper.addClass('new-menu-item');
|
|
|
|
|
|
|
|
// CSS tweaks to remove some unnecessary items
|
|
|
|
ui.helper.children('div').hide();
|
|
|
|
items.first().css('margin-top', 0);
|
|
|
|
|
|
|
|
// Make the items look like menu items
|
|
|
|
items.children('div').addClass('menu-item-handle');
|
|
|
|
ui.helper.children('div').addClass('hidden-handle');
|
|
|
|
|
|
|
|
// Trigger the ajax
|
2010-05-04 10:31:40 +02:00
|
|
|
li.parents('.inside').find('.add-to-menu input').click();
|
2010-05-04 09:24:49 +02:00
|
|
|
|
|
|
|
// Lock dimensions
|
|
|
|
ui.helper.width( ui.helper.width() );
|
|
|
|
ui.helper.height( ui.helper.height() );
|
|
|
|
},
|
|
|
|
stop: function(e, ui) {
|
|
|
|
// Reset the targetList and unselect the menu items
|
|
|
|
targetList = menuList;
|
2010-05-04 12:01:15 +02:00
|
|
|
$(e.target).parents('.tabs-panel').find('.selected-menu-item').deselectItem();
|
2010-05-04 09:24:49 +02:00
|
|
|
}
|
|
|
|
});
|
|
|
|
},
|
2010-05-03 22:26:11 +02:00
|
|
|
|
2010-04-27 03:05:58 +02:00
|
|
|
attachMenuEditListeners : function() {
|
|
|
|
var that = this;
|
|
|
|
$('#update-nav-menu').bind('click', function(e) {
|
|
|
|
if ( e.target && e.target.className ) {
|
|
|
|
if ( -1 != e.target.className.indexOf('item-edit') ) {
|
|
|
|
return that.eventOnClickEditLink(e.target);
|
|
|
|
} else if ( -1 != e.target.className.indexOf('menu-delete') ) {
|
|
|
|
return that.eventOnClickMenuDelete(e.target);
|
|
|
|
} else if ( -1 != e.target.className.indexOf('item-delete') ) {
|
|
|
|
return that.eventOnClickMenuItemDelete(e.target);
|
2010-04-29 05:43:11 +02:00
|
|
|
} else if ( -1 != e.target.className.indexOf('item-close') ) {
|
|
|
|
return that.eventOnClickCloseLink(e.target);
|
2010-04-27 03:05:58 +02:00
|
|
|
}
|
2010-03-22 20:56:16 +01:00
|
|
|
}
|
|
|
|
});
|
2010-04-27 03:05:58 +02:00
|
|
|
},
|
2010-05-03 22:26:11 +02:00
|
|
|
|
2010-05-02 21:09:10 +02:00
|
|
|
/**
|
|
|
|
* An interface for managing default values for input elements
|
|
|
|
* that is both JS and accessibility-friendly.
|
|
|
|
*
|
|
|
|
* Input elements that add the class 'input-with-default-title'
|
|
|
|
* will have their values set to the provided HTML title when empty.
|
|
|
|
*/
|
|
|
|
setupInputWithDefaultTitle : function() {
|
|
|
|
var name = 'input-with-default-title';
|
2010-05-03 22:26:11 +02:00
|
|
|
|
2010-05-02 21:09:10 +02:00
|
|
|
$('.' + name).each( function(){
|
2010-04-29 05:43:11 +02:00
|
|
|
var $t = $(this), title = $t.attr('title'), val = $t.val();
|
2010-05-02 21:09:10 +02:00
|
|
|
$t.data( name, title );
|
2010-05-03 22:26:11 +02:00
|
|
|
|
2010-05-02 21:09:10 +02:00
|
|
|
if( '' == val ) $t.val( title );
|
2010-04-29 05:43:11 +02:00
|
|
|
else if ( title == val ) return;
|
2010-05-02 21:09:10 +02:00
|
|
|
else $t.removeClass( name );
|
|
|
|
}).focus( function(){
|
2010-04-29 05:43:11 +02:00
|
|
|
var $t = $(this);
|
2010-05-02 21:09:10 +02:00
|
|
|
if( $t.val() == $t.data(name) )
|
|
|
|
$t.val('').removeClass( name );
|
|
|
|
}).blur( function(){
|
2010-04-29 05:43:11 +02:00
|
|
|
var $t = $(this);
|
|
|
|
if( '' == $t.val() )
|
2010-05-02 21:09:10 +02:00
|
|
|
$t.val( $t.data(name) ).addClass( name );
|
2010-04-29 05:43:11 +02:00
|
|
|
});
|
2010-05-02 21:09:10 +02:00
|
|
|
},
|
|
|
|
|
|
|
|
attachMenuMetaListeners : function(formEL) {
|
|
|
|
if ( ! formEL )
|
|
|
|
return;
|
2010-03-22 20:56:16 +01:00
|
|
|
|
2010-05-02 21:09:10 +02:00
|
|
|
var that = this;
|
|
|
|
this.setupInputWithDefaultTitle();
|
2010-05-03 22:26:11 +02:00
|
|
|
|
2010-04-27 03:05:58 +02:00
|
|
|
// auto-suggest for the quick-search boxes
|
|
|
|
$('input.quick-search').each(function(i, el) {
|
2010-05-03 22:26:11 +02:00
|
|
|
that.setupQuickSearchEventListeners(el);
|
2010-03-22 20:56:16 +01:00
|
|
|
});
|
2010-05-03 22:26:11 +02:00
|
|
|
|
2010-05-04 10:31:40 +02:00
|
|
|
// If a "Add to Menu" button was clicked, submit that metabox ajax style.
|
|
|
|
$(formEL).click(function(e) {
|
|
|
|
// based on the input, call that function
|
|
|
|
var divcontainer = $(e.target).parent().parent().parent();
|
|
|
|
|
|
|
|
if ( $(e.target).is('input') && $(e.target).hasClass('button-secondary') && !$(e.target).hasClass('quick-search-submit') ) {
|
|
|
|
if ( $(divcontainer).hasClass('customlinkdiv') ) {
|
|
|
|
that.addCustomLink();
|
|
|
|
} else if ( $(divcontainer).hasClass('posttypediv') || $(divcontainer).hasClass('taxonomydiv') ) {
|
|
|
|
that.addItemsToMenu( $(divcontainer).attr('id') );
|
|
|
|
};
|
|
|
|
return false;
|
|
|
|
} else if ( $(e.target).is('input') && $(e.target).hasClass('quick-search-submit') ) {
|
|
|
|
that.quickSearch( $(divcontainer).attr('id') );
|
|
|
|
return false;
|
|
|
|
};
|
2010-03-22 20:56:16 +01:00
|
|
|
});
|
2010-05-04 10:31:40 +02:00
|
|
|
},
|
|
|
|
|
|
|
|
quickSearch : function(id) {
|
|
|
|
var type = $('#' + id + ' .quick-search').attr('name'),
|
|
|
|
q = $('#' + id + ' .quick-search').val(),
|
|
|
|
menu = $('#menu').val(),
|
|
|
|
nonce = $('#menu-settings-column-nonce').val(),
|
|
|
|
params = {},
|
|
|
|
that = this,
|
|
|
|
processMethod = function(){};
|
|
|
|
|
|
|
|
processMethod = that.processQuickSearchQueryResponse;
|
|
|
|
|
|
|
|
params = {
|
|
|
|
'action': 'menu-quick-search',
|
|
|
|
'response-format': 'markup',
|
|
|
|
'menu': menu,
|
|
|
|
'menu-settings-column-nonce': nonce,
|
|
|
|
'q': q,
|
|
|
|
'type': type
|
|
|
|
};
|
|
|
|
|
|
|
|
$.post( ajaxurl, params, function(menuMarkup) {
|
|
|
|
processMethod.call(that, menuMarkup, params);
|
|
|
|
});
|
|
|
|
},
|
|
|
|
|
2010-05-04 12:01:15 +02:00
|
|
|
addCustomLink : function(url, label, addToTop) {
|
|
|
|
var url = url || $('#custom-menu-item-url').val(),
|
|
|
|
label = label || $('#custom-menu-item-name').val(),
|
|
|
|
addToTop = addToTop || false,
|
2010-05-04 10:31:40 +02:00
|
|
|
menu = $('#menu').val(),
|
|
|
|
nonce = $('#menu-settings-column-nonce').val(),
|
|
|
|
params = {},
|
|
|
|
that = this,
|
|
|
|
processMethod = function(){};
|
|
|
|
|
|
|
|
if ( '' == url || 'http://' == url )
|
|
|
|
return false;
|
|
|
|
|
|
|
|
// Show the ajax spinner
|
|
|
|
$('.customlinkdiv img.waiting').show();
|
|
|
|
|
|
|
|
params = {
|
|
|
|
'action': 'add-menu-item',
|
|
|
|
'menu': menu,
|
|
|
|
'menu-settings-column-nonce': nonce,
|
|
|
|
'menu-item': {
|
|
|
|
'-1': {
|
|
|
|
'menu-item-type': 'custom',
|
|
|
|
'menu-item-url': url,
|
|
|
|
'menu-item-title': label
|
|
|
|
}
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
2010-05-04 12:01:15 +02:00
|
|
|
processMethod = addToTop ? that.addMenuItemToTop : that.addMenuItemToBottom;
|
|
|
|
|
2010-05-04 10:31:40 +02:00
|
|
|
$.post( ajaxurl, params, function(menuMarkup) {
|
|
|
|
processMethod.call(that, menuMarkup, params);
|
|
|
|
|
|
|
|
// Remove the ajax spinner
|
|
|
|
$('.customlinkdiv img.waiting').hide();
|
2010-05-04 12:01:15 +02:00
|
|
|
|
|
|
|
// Reset the form
|
|
|
|
wpNavMenu.resetCustomLinkForm();
|
|
|
|
});
|
|
|
|
},
|
|
|
|
|
|
|
|
resetCustomLinkForm : function() {
|
|
|
|
// set custom link form back to defaults
|
|
|
|
$('#custom-menu-item-name').val('').blur();
|
|
|
|
$('#custom-menu-item-url').val('http://');
|
|
|
|
},
|
|
|
|
|
|
|
|
attachHomeLinkListener : function() {
|
|
|
|
$('.add-home-link', '.customlinkdiv').click(function(e) {
|
|
|
|
wpNavMenu.addCustomLink( navMenuL10n.homeurl, navMenuL10n.home, true);
|
|
|
|
return false;
|
2010-05-02 23:05:55 +02:00
|
|
|
});
|
2010-04-27 03:05:58 +02:00
|
|
|
},
|
2010-03-22 20:56:16 +01:00
|
|
|
|
2010-04-27 03:05:58 +02:00
|
|
|
attachTabsPanelListeners : function() {
|
|
|
|
$('#menu-settings-column').bind('click', function(e) {
|
2010-04-29 05:43:11 +02:00
|
|
|
if ( e.target && e.target.className && -1 != e.target.className.indexOf('nav-tab-link') ) {
|
2010-04-28 20:30:32 +02:00
|
|
|
var activePanel,
|
2010-04-27 03:05:58 +02:00
|
|
|
panelIdMatch = /#(.*)$/.exec(e.target.href),
|
2010-04-28 20:30:32 +02:00
|
|
|
tabPanels,
|
2010-05-02 20:12:13 +02:00
|
|
|
wrapper = $(e.target).parents('.inside').first()[0],
|
2010-04-28 20:30:32 +02:00
|
|
|
inputs = wrapper ? wrapper.getElementsByTagName('input') : [],
|
|
|
|
i = inputs.length;
|
|
|
|
|
|
|
|
// upon changing tabs, we want to uncheck all checkboxes
|
2010-05-03 22:26:11 +02:00
|
|
|
while( i-- )
|
2010-04-28 20:30:32 +02:00
|
|
|
inputs[i].checked = false;
|
|
|
|
|
|
|
|
$('.tabs-panel', wrapper).each(function() {
|
2010-04-27 03:05:58 +02:00
|
|
|
if ( this.className )
|
|
|
|
this.className = this.className.replace('tabs-panel-active', 'tabs-panel-inactive');
|
|
|
|
});
|
|
|
|
|
2010-04-28 20:30:32 +02:00
|
|
|
$('.tabs', wrapper).each(function() {
|
2010-04-27 03:05:58 +02:00
|
|
|
this.className = this.className.replace('tabs', '');
|
|
|
|
});
|
|
|
|
|
|
|
|
e.target.parentNode.className += ' tabs';
|
|
|
|
|
|
|
|
if ( panelIdMatch && panelIdMatch[1] ) {
|
|
|
|
activePanel = document.getElementById(panelIdMatch[1]);
|
|
|
|
if ( activePanel ) {
|
|
|
|
activePanel.className = activePanel.className.replace('tabs-panel-inactive', 'tabs-panel-active');
|
|
|
|
}
|
|
|
|
}
|
2010-05-03 22:26:11 +02:00
|
|
|
|
2010-04-27 03:05:58 +02:00
|
|
|
return false;
|
|
|
|
} else if ( e.target && e.target.className && -1 != e.target.className.indexOf('select-all') ) {
|
2010-05-04 10:54:35 +02:00
|
|
|
var selectAreaMatch = /#(.*)$/.exec(e.target.href), items;
|
2010-04-27 03:05:58 +02:00
|
|
|
if ( selectAreaMatch && selectAreaMatch[1] ) {
|
2010-05-04 10:54:35 +02:00
|
|
|
items = $('#' + selectAreaMatch[1] + ' .tabs-panel-active .potential-menu-item');
|
|
|
|
if( items.length === items.filter('.selected-menu-item').length )
|
|
|
|
items.deselectItem();
|
|
|
|
else
|
|
|
|
items.selectItem();
|
2010-04-27 03:05:58 +02:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
}
|
2010-03-22 20:56:16 +01:00
|
|
|
});
|
2010-04-27 03:05:58 +02:00
|
|
|
},
|
2010-05-03 22:26:11 +02:00
|
|
|
|
2010-05-03 12:28:35 +02:00
|
|
|
initTabManager : function() {
|
|
|
|
var fixed = $('.nav-tabs-wrapper'),
|
|
|
|
fluid = fixed.children('.nav-tabs'),
|
|
|
|
active = fluid.children('.nav-tab-active'),
|
|
|
|
tabs = fluid.children('.nav-tab'),
|
|
|
|
tabsWidth = 0,
|
|
|
|
fixedRight, fixedLeft,
|
|
|
|
arrowLeft, arrowRight
|
|
|
|
resizing = false;
|
2010-05-03 22:26:11 +02:00
|
|
|
|
2010-05-03 12:28:35 +02:00
|
|
|
function resetMenuTabs() {
|
|
|
|
fixedLeft = fixed.offset().left;
|
|
|
|
fixedRight = fixedLeft + fixed.width();
|
|
|
|
active.makeTabVisible();
|
|
|
|
}
|
2010-05-03 22:26:11 +02:00
|
|
|
|
2010-05-03 12:28:35 +02:00
|
|
|
$.fn.extend({
|
|
|
|
makeTabVisible : function() {
|
2010-05-03 21:35:54 +02:00
|
|
|
var t = this.eq(0), left, right;
|
|
|
|
if( ! t.length ) return;
|
|
|
|
left = t.offset().left;
|
|
|
|
right = left + t.outerWidth();
|
2010-05-03 12:28:35 +02:00
|
|
|
if( right > fixedRight )
|
|
|
|
fluid.animate({ 'margin-left' : "+=" + (fixedRight - right) + 'px', }, 'fast');
|
|
|
|
else if ( left < fixedLeft )
|
|
|
|
fluid.animate({ 'margin-left' : "-=" + (left - fixedLeft) + 'px', }, 'fast');
|
|
|
|
return t;
|
|
|
|
},
|
|
|
|
isTabVisible : function() {
|
|
|
|
var t = this.eq(0),
|
|
|
|
left = t.offset().left,
|
|
|
|
right = left + t.outerWidth();
|
|
|
|
return ( right <= fixedRight && left >= fixedLeft ) ? true : false;
|
|
|
|
}
|
|
|
|
});
|
2010-05-03 22:26:11 +02:00
|
|
|
|
2010-05-03 18:59:51 +02:00
|
|
|
// Find the width of all tabs
|
|
|
|
tabs.each(function(){
|
|
|
|
tabsWidth += $(this).outerWidth(true);
|
|
|
|
});
|
2010-05-03 22:26:11 +02:00
|
|
|
|
2010-05-03 18:59:51 +02:00
|
|
|
// Check if we need the tab manager
|
|
|
|
if( tabsWidth <= fixed.width()
|
|
|
|
- fluid.css('padding-left').slice(0,-2)
|
|
|
|
- fluid.css('padding-right').slice(0,-2) )
|
|
|
|
return;
|
2010-05-03 22:26:11 +02:00
|
|
|
|
2010-05-03 18:59:51 +02:00
|
|
|
// Set up right margin for overflow, unset padding
|
|
|
|
fluid.css({
|
|
|
|
'margin-right' : (-1 * tabsWidth) + 'px',
|
|
|
|
'padding' : 0,
|
|
|
|
});
|
2010-05-03 22:26:11 +02:00
|
|
|
|
2010-05-03 12:28:35 +02:00
|
|
|
// Build tab navigation
|
|
|
|
arrowLeft = $('<div class="nav-tabs-arrow nav-tabs-arrow-left"><a>«</a></div>');
|
|
|
|
arrowRight = $('<div class="nav-tabs-arrow nav-tabs-arrow-right"><a>»</a></div>');
|
|
|
|
// Attach to the document
|
|
|
|
fixed.wrap('<div class="nav-tabs-nav"/>').parent().prepend( arrowLeft ).append( arrowRight );
|
2010-05-03 22:26:11 +02:00
|
|
|
|
2010-05-03 12:28:35 +02:00
|
|
|
// Set the menu tabs
|
|
|
|
resetMenuTabs();
|
|
|
|
// Make sure the tabs reset on resize
|
|
|
|
$(window).resize(function() {
|
|
|
|
if( resizing ) return;
|
|
|
|
resizing = true;
|
2010-05-03 22:26:11 +02:00
|
|
|
setTimeout(function(){
|
2010-05-03 12:28:35 +02:00
|
|
|
resetMenuTabs();
|
|
|
|
resizing = false;
|
|
|
|
}, 1000);
|
|
|
|
});
|
2010-05-03 22:26:11 +02:00
|
|
|
|
|
|
|
// Build arrow functions
|
2010-05-03 12:28:35 +02:00
|
|
|
$.each([{
|
|
|
|
arrow : arrowLeft,
|
|
|
|
next : "next",
|
|
|
|
last : "first",
|
|
|
|
operator : "+=",
|
|
|
|
},{
|
|
|
|
arrow : arrowRight,
|
|
|
|
next : "prev",
|
|
|
|
last : "last",
|
|
|
|
operator : "-=",
|
|
|
|
}], function(){
|
|
|
|
var that = this;
|
|
|
|
this.arrow.mousedown(function(){
|
|
|
|
var last = tabs[that.last](),
|
|
|
|
fn = function() {
|
|
|
|
if( ! last.isTabVisible() )
|
|
|
|
fluid.animate({ 'margin-left' : that.operator + '90px', }, 300, "linear", fn);
|
|
|
|
};
|
|
|
|
fn();
|
|
|
|
}).mouseup(function(){
|
|
|
|
var tab, next;
|
|
|
|
fluid.stop(true);
|
|
|
|
tab = tabs[that.last]();
|
|
|
|
while( (next = tab[that.next]()) && next.length && ! next.isTabVisible() ) {
|
|
|
|
tab = next;
|
|
|
|
}
|
|
|
|
tab.makeTabVisible();
|
|
|
|
});
|
|
|
|
});
|
|
|
|
},
|
2010-03-22 20:56:16 +01:00
|
|
|
|
2010-04-27 03:05:58 +02:00
|
|
|
/**
|
|
|
|
* Set up quick-search input fields' events.
|
|
|
|
*
|
|
|
|
* @param object el The input element.
|
|
|
|
*/
|
|
|
|
setupQuickSearchEventListeners : function(el) {
|
|
|
|
var that = this;
|
2010-05-03 22:26:11 +02:00
|
|
|
$(el).autocomplete( ajaxurl + '?action=menu-quick-search&type=' + el.name,
|
|
|
|
{
|
|
|
|
delay: 500,
|
2010-04-27 03:05:58 +02:00
|
|
|
formatItem: formatAutocompleteResponse,
|
|
|
|
formatResult: formatAutocompleteResult,
|
2010-05-03 22:26:11 +02:00
|
|
|
minchars: 2,
|
|
|
|
multiple: false
|
2010-04-27 03:05:58 +02:00
|
|
|
}
|
|
|
|
).bind('blur', function(e) {
|
|
|
|
var changedData = autoCompleteData[this.value],
|
|
|
|
inputEl = this;
|
|
|
|
if ( changedData ) {
|
2010-05-03 22:26:11 +02:00
|
|
|
$.post(
|
2010-04-27 03:05:58 +02:00
|
|
|
ajaxurl + '?action=menu-quick-search&type=get-post-item&response-format=markup',
|
|
|
|
changedData,
|
|
|
|
function(r) {
|
2010-05-03 22:26:11 +02:00
|
|
|
that.processQuickSearchQueryResponse.call(that, r, changedData);
|
2010-04-27 03:05:58 +02:00
|
|
|
autoCompleteData[inputEl.value] = false;
|
|
|
|
}
|
|
|
|
);
|
|
|
|
}
|
2010-03-22 20:56:16 +01:00
|
|
|
});
|
2010-04-27 03:05:58 +02:00
|
|
|
},
|
2010-03-22 20:56:16 +01:00
|
|
|
|
2010-04-27 03:05:58 +02:00
|
|
|
eventOnClickEditLink : function(clickedEl) {
|
|
|
|
var activeEdit,
|
|
|
|
matchedSection = /#(.*)$/.exec(clickedEl.href);
|
|
|
|
if ( matchedSection && matchedSection[1] ) {
|
2010-04-29 05:43:11 +02:00
|
|
|
activeEdit = $('#'+matchedSection[1]);
|
|
|
|
if( 0 != activeEdit.length ) {
|
|
|
|
if( activeEdit.hasClass('menu-item-edit-inactive') ) {
|
|
|
|
activeEdit.slideDown('fast')
|
|
|
|
.siblings('dl').andSelf()
|
|
|
|
.removeClass('menu-item-edit-inactive')
|
|
|
|
.addClass('menu-item-edit-active');
|
|
|
|
} else {
|
|
|
|
activeEdit.slideUp('fast')
|
|
|
|
.siblings('dl').andSelf()
|
|
|
|
.removeClass('menu-item-edit-active')
|
|
|
|
.addClass('menu-item-edit-inactive');
|
2010-04-27 03:05:58 +02:00
|
|
|
}
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
}
|
2010-03-22 20:56:16 +01:00
|
|
|
},
|
2010-05-03 22:26:11 +02:00
|
|
|
|
2010-04-29 05:43:11 +02:00
|
|
|
eventOnClickCloseLink : function(clickedEl) {
|
|
|
|
$(clickedEl).closest('.menu-item-settings').siblings('dl').find('.item-edit').click();
|
|
|
|
return false;
|
|
|
|
},
|
2010-05-03 22:26:11 +02:00
|
|
|
|
2010-04-27 03:05:58 +02:00
|
|
|
eventOnClickMenuDelete : function(clickedEl) {
|
|
|
|
// Delete warning AYS
|
2010-05-04 12:01:15 +02:00
|
|
|
if ( confirm( navMenuL10n.warnDeleteMenu ) )
|
2010-04-27 03:05:58 +02:00
|
|
|
return true;
|
2010-05-04 12:01:15 +02:00
|
|
|
else
|
2010-04-27 03:05:58 +02:00
|
|
|
return false;
|
|
|
|
},
|
2010-03-17 17:13:16 +01:00
|
|
|
|
2010-04-27 03:05:58 +02:00
|
|
|
eventOnClickMenuItemDelete : function(clickedEl) {
|
|
|
|
var itemID,
|
|
|
|
matchedSection,
|
|
|
|
that = this;
|
|
|
|
|
|
|
|
// Delete warning AYS
|
|
|
|
if ( confirm( navMenuL10n.warnDeleteMenuItem ) ) {
|
|
|
|
matchedSection = /_wpnonce=([a-zA-Z0-9]*)$/.exec(clickedEl.href);
|
|
|
|
if ( matchedSection && matchedSection[1] ) {
|
2010-05-03 22:26:11 +02:00
|
|
|
itemID = parseInt(clickedEl.id.replace('delete-', ''), 10);
|
2010-04-27 03:05:58 +02:00
|
|
|
$.post(
|
|
|
|
ajaxurl,
|
|
|
|
{
|
|
|
|
action:'delete-menu-item',
|
|
|
|
'menu-item':itemID,
|
|
|
|
'_wpnonce':matchedSection[1]
|
|
|
|
},
|
|
|
|
function (resp) {
|
|
|
|
if ( '1' == resp )
|
|
|
|
that.removeMenuItem(document.getElementById('menu-item-' + itemID));
|
|
|
|
}
|
|
|
|
);
|
2010-05-03 22:26:11 +02:00
|
|
|
return false;
|
2010-04-27 03:05:58 +02:00
|
|
|
}
|
|
|
|
return true;
|
|
|
|
} else {
|
|
|
|
return false;
|
|
|
|
}
|
2010-03-22 20:56:16 +01:00
|
|
|
},
|
2010-04-27 03:05:58 +02:00
|
|
|
|
2010-03-22 20:56:16 +01:00
|
|
|
/**
|
2010-05-04 10:31:40 +02:00
|
|
|
* Adds menu items to the menu.
|
2010-03-22 20:56:16 +01:00
|
|
|
*
|
2010-05-04 10:31:40 +02:00
|
|
|
* @param string id The id of the metabox
|
2010-03-22 20:56:16 +01:00
|
|
|
*/
|
2010-05-04 12:01:15 +02:00
|
|
|
addItemsToMenu : function(id, addToTop) {
|
2010-05-04 10:31:40 +02:00
|
|
|
var items = $( '.tabs-panel-active .categorychecklist li input:checked', '#' + id),
|
|
|
|
menu = $('#menu').val(),
|
|
|
|
nonce = $('#menu-settings-column-nonce').val(),
|
2010-04-27 03:05:58 +02:00
|
|
|
params = {},
|
2010-05-04 10:31:40 +02:00
|
|
|
that = this,
|
2010-05-04 12:01:15 +02:00
|
|
|
addToTop = addToTop || false,
|
2010-04-27 03:05:58 +02:00
|
|
|
processMethod = function(){},
|
|
|
|
re = new RegExp('menu-item\\[(\[^\\]\]*)');
|
2010-05-04 10:31:40 +02:00
|
|
|
|
2010-05-04 12:01:15 +02:00
|
|
|
processMethod = addToTop ? that.addMenuItemToTop : that.addMenuItemToBottom;
|
2010-05-04 10:31:40 +02:00
|
|
|
|
|
|
|
// If no items are checked, bail.
|
|
|
|
if ( !items.length )
|
|
|
|
return false;
|
|
|
|
|
|
|
|
// Show the ajax spinner
|
|
|
|
$('#' + id + ' img.waiting').show();
|
|
|
|
|
|
|
|
// do stuff
|
|
|
|
$(items).each(function(){
|
|
|
|
listItemDBIDMatch = re.exec( $(this).attr('name') );
|
|
|
|
listItemDBID = 'undefined' == typeof listItemDBIDMatch[1] ? 0 : parseInt(listItemDBIDMatch[1], 10);
|
|
|
|
listItemData = getListDataFromID(listItemDBID);
|
|
|
|
|
|
|
|
params = {
|
|
|
|
'action': 'add-menu-item',
|
|
|
|
'menu': menu,
|
|
|
|
'menu-settings-column-nonce': nonce,
|
|
|
|
'menu-item': {}
|
|
|
|
};
|
|
|
|
|
|
|
|
params['menu-item'][listItemDBID] = listItemData;
|
|
|
|
|
|
|
|
$.post( ajaxurl, params, function(menuMarkup) {
|
|
|
|
processMethod.call(that, menuMarkup, params);
|
|
|
|
});
|
2010-04-27 03:05:58 +02:00
|
|
|
|
2010-05-04 10:31:40 +02:00
|
|
|
// Uncheck the item
|
2010-05-04 12:01:15 +02:00
|
|
|
$(this).parent().prev().deselectItem();
|
2010-03-22 20:56:16 +01:00
|
|
|
});
|
2010-04-27 03:05:58 +02:00
|
|
|
|
2010-05-04 10:31:40 +02:00
|
|
|
// Remove the ajax spinner
|
|
|
|
$('#' + id + ' img.waiting').hide();
|
2010-03-22 20:56:16 +01:00
|
|
|
},
|
2010-04-27 03:05:58 +02:00
|
|
|
|
2010-03-22 20:56:16 +01:00
|
|
|
/**
|
2010-04-27 03:05:58 +02:00
|
|
|
* Process the add menu item request response into menu list item.
|
2010-03-22 20:56:16 +01:00
|
|
|
*
|
2010-04-27 03:05:58 +02:00
|
|
|
* @param string menuMarkup The text server response of menu item markup.
|
|
|
|
* @param object req The request arguments.
|
2010-03-22 20:56:16 +01:00
|
|
|
*/
|
2010-05-04 12:01:15 +02:00
|
|
|
addMenuItemToBottom : function( menuMarkup, req ) {
|
2010-05-04 09:24:49 +02:00
|
|
|
$(menuMarkup).hideAdvancedMenuItemFields().appendTo( targetList );
|
2010-03-17 17:13:16 +01:00
|
|
|
},
|
2010-05-04 12:01:15 +02:00
|
|
|
|
|
|
|
addMenuItemToTop : function( menuMarkup, req ) {
|
|
|
|
$(menuMarkup).hideAdvancedMenuItemFields().prependTo( targetList );
|
|
|
|
},
|
2010-04-27 03:05:58 +02:00
|
|
|
|
2010-03-22 20:56:16 +01:00
|
|
|
/**
|
2010-04-27 03:05:58 +02:00
|
|
|
* Process the quick search response into a search result
|
2010-05-03 22:26:11 +02:00
|
|
|
*
|
2010-04-27 03:05:58 +02:00
|
|
|
* @param string resp The server response to the query.
|
|
|
|
* @param object req The request arguments.
|
2010-03-22 20:56:16 +01:00
|
|
|
*/
|
2010-04-27 03:05:58 +02:00
|
|
|
processQuickSearchQueryResponse : function(resp, req) {
|
|
|
|
if ( ! req )
|
|
|
|
req = {};
|
|
|
|
var wrap = document.createElement('ul'),
|
|
|
|
form = document.getElementById('nav-menu-meta'),
|
|
|
|
i,
|
|
|
|
items,
|
|
|
|
matched,
|
2010-04-28 22:44:08 +02:00
|
|
|
message,
|
2010-04-27 03:05:58 +02:00
|
|
|
newID,
|
|
|
|
pattern = new RegExp('menu-item\\[(\[^\\]\]*)'),
|
|
|
|
resultList;
|
|
|
|
|
|
|
|
// make a unique DB ID number
|
|
|
|
matched = pattern.exec(resp);
|
|
|
|
if ( matched && matched[1] ) {
|
|
|
|
newID = matched[1];
|
|
|
|
while( form.elements['menu-item[' + newID + '][menu-item-type]'] ) {
|
|
|
|
newID--;
|
|
|
|
}
|
|
|
|
|
|
|
|
if ( newID != matched[1] ) {
|
|
|
|
resp = resp.replace(new RegExp('menu-item\\[' + matched[1] + '\\]', 'g'), 'menu-item[' + newID + ']');
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
wrap.innerHTML = resp;
|
2010-05-03 22:26:11 +02:00
|
|
|
|
2010-04-27 03:05:58 +02:00
|
|
|
items = wrap.getElementsByTagName('li');
|
2010-03-22 20:56:16 +01:00
|
|
|
|
2010-04-27 03:05:58 +02:00
|
|
|
if ( items[0] && req.object_type ) {
|
|
|
|
resultList = document.getElementById(req.object_type + '-search-checklist');
|
|
|
|
if ( resultList ) {
|
|
|
|
resultList.appendChild(items[0]);
|
|
|
|
}
|
|
|
|
} else if ( req.type ) {
|
2010-04-28 22:44:08 +02:00
|
|
|
matched = /quick-search-(posttype|taxonomy)-([a-zA-Z_-]*)/.exec(req.type);
|
|
|
|
if ( matched && matched[2] ) {
|
|
|
|
resultList = document.getElementById(matched[2] + '-search-checklist');
|
2010-04-27 03:05:58 +02:00
|
|
|
if ( resultList ) {
|
|
|
|
i = items.length;
|
2010-04-28 22:44:08 +02:00
|
|
|
if ( ! i ) {
|
|
|
|
message = document.createElement('li');
|
|
|
|
message.appendChild(document.createTextNode(navMenuL10n.noResultsFound));
|
|
|
|
resultList.appendChild(message);
|
|
|
|
}
|
2010-04-27 03:05:58 +02:00
|
|
|
while( i-- ) {
|
|
|
|
resultList.appendChild(items[i]);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
},
|
2010-03-22 20:56:16 +01:00
|
|
|
|
2010-04-27 03:05:58 +02:00
|
|
|
removeMenuItem : function(el) {
|
2010-05-02 21:09:10 +02:00
|
|
|
el = $(el)
|
|
|
|
var children = el.childMenuItems();
|
2010-05-04 12:01:15 +02:00
|
|
|
var that = this;
|
2010-05-03 22:26:11 +02:00
|
|
|
|
2010-05-02 21:09:10 +02:00
|
|
|
el.addClass('deleting').fadeOut( 350 , function() {
|
|
|
|
el.remove();
|
|
|
|
children.shiftDepthClass(-1).updateParentMenuItemDBId();
|
|
|
|
recalculateMenuItemPositions();
|
2010-05-04 12:01:15 +02:00
|
|
|
that.checkForEmptyMenu();
|
|
|
|
});
|
|
|
|
},
|
|
|
|
|
|
|
|
checkForEmptyMenu : function() {
|
|
|
|
if( menuList.children().length ) return;
|
|
|
|
menuList.height(80).one('sortstop', function(){
|
|
|
|
$(this).height('auto');
|
2010-05-02 21:09:10 +02:00
|
|
|
});
|
2010-03-17 17:13:16 +01:00
|
|
|
}
|
|
|
|
}
|
2010-04-27 03:05:58 +02:00
|
|
|
}
|
|
|
|
|
2010-05-02 21:09:10 +02:00
|
|
|
var wpNavMenu = new WPNavMenuHandler(jQuery);
|
2010-04-27 03:05:58 +02:00
|
|
|
|
|
|
|
jQuery(function() {
|
|
|
|
wpNavMenu.init();
|
|
|
|
});
|