2008-01-03 02:34:11 +01:00
|
|
|
// this file shoudl contain all the scripts used in the post/edit page
|
|
|
|
|
|
|
|
function new_tag_remove_tag() {
|
|
|
|
var id = jQuery( this ).attr( 'id' );
|
|
|
|
var num = id.substr( 10 );
|
|
|
|
var current_tags = jQuery( '#tags-input' ).val().split(',');
|
|
|
|
delete current_tags[num];
|
|
|
|
var new_tags = [];
|
|
|
|
jQuery.each( current_tags, function( key, val ) {
|
|
|
|
if ( val && !val.match(/^\s+$/) && '' != val ) {
|
|
|
|
new_tags = new_tags.concat( val );
|
|
|
|
}
|
|
|
|
});
|
|
|
|
jQuery( '#tags-input' ).val( new_tags.join( ',' ).replace( /\s*,+\s*/, ',' ).replace( /,+/, ',' ).replace( /,+\s+,+/, ',' ).replace( /,+\s*$/, '' ).replace( /^\s*,+/, '' ) );
|
|
|
|
tag_update_quickclicks();
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
function tag_update_quickclicks() {
|
|
|
|
var current_tags = jQuery( '#tags-input' ).val().split(',');
|
|
|
|
jQuery( '#tagchecklist' ).empty();
|
|
|
|
shown = false;
|
|
|
|
// jQuery.merge( current_tags, current_tags ); // this doesn't work anymore, need something to array_unique
|
|
|
|
jQuery.each( current_tags, function( key, val ) {
|
|
|
|
val = val.replace( /^\s+/, '' ).replace( /\s+$/, '' ); // trim
|
|
|
|
if ( !val.match(/^\s+$/) && '' != val ) {
|
|
|
|
txt = '<span><a id="tag-check-' + key + '" class="ntdelbutton">X</a> ' + val + '</span> ';
|
|
|
|
jQuery( '#tagchecklist' ).append( txt );
|
|
|
|
jQuery( '#tag-check-' + key ).click( new_tag_remove_tag );
|
|
|
|
shown = true;
|
|
|
|
}
|
|
|
|
});
|
|
|
|
if ( shown )
|
|
|
|
jQuery( '#tagchecklist' ).prepend( '<strong>Tags used on this post:</strong><br />' );
|
|
|
|
}
|
|
|
|
|
|
|
|
function tag_flush_to_text() {
|
|
|
|
var newtags = jQuery('#tags-input').val() + ',' + jQuery('#newtag').val();
|
|
|
|
// massage
|
|
|
|
newtags = newtags.replace( /\s+,+\s*/g, ',' ).replace( /,+/g, ',' ).replace( /,+\s+,+/g, ',' ).replace( /,+\s*$/g, '' ).replace( /^\s*,+/g, '' );
|
|
|
|
jQuery('#tags-input').val( newtags );
|
|
|
|
tag_update_quickclicks();
|
|
|
|
jQuery('#newtag').val('');
|
|
|
|
jQuery('#newtag').blur();
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
function tag_press_key( e ) {
|
|
|
|
if ( 13 == e.keyCode ) {
|
|
|
|
tag_flush_to_text();
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2008-01-09 08:52:30 +01:00
|
|
|
function add_postbox_toggles() {
|
|
|
|
jQuery('.postbox h3').prepend('<a class="togbox">+</a> ');
|
|
|
|
jQuery('.togbox').click( function() { jQuery(jQuery(this).parent().parent().get(0)).toggleClass('closed'); } );
|
|
|
|
}
|
|
|
|
|
2008-01-03 02:34:11 +01:00
|
|
|
addLoadEvent( function() {
|
|
|
|
jQuery('#tags-input').hide();
|
|
|
|
tag_update_quickclicks();
|
|
|
|
// add the quickadd form
|
|
|
|
jQuery('#jaxtag').prepend('<span id="ajaxtag"><input type="text" name="newtag" id="newtag" size="16" autocomplete="off" value="Add new tag" /><input type="button" class="button" id="tagadd" value="' + catL10n.add + '"/><input type="hidden"/><input type="hidden"/><span class="howto">Separate tags with commas</span></span>');
|
|
|
|
jQuery('#tagadd').click( tag_flush_to_text );
|
|
|
|
// jQuery('#newtag').keydown( tag_press_key );
|
|
|
|
jQuery('#newtag').focus(function() {
|
|
|
|
if ( this.value == 'Add new tag' ) {
|
|
|
|
this.value = '';
|
|
|
|
this.style.color = '#333';
|
|
|
|
}
|
|
|
|
});
|
|
|
|
jQuery('#newtag').blur(function() {
|
|
|
|
if ( this.value == '' ) {
|
|
|
|
this.value = 'Add new tag';
|
|
|
|
this.style.color = '#999'
|
|
|
|
}
|
|
|
|
});
|
|
|
|
|
|
|
|
// auto-suggest stuff
|
2008-01-09 07:22:14 +01:00
|
|
|
jQuery('#newtag').suggest( 'admin-ajax.php?action=ajax-tag-search', { onSelect: tag_flush_to_text, delay: 500, minchars: 2 } );
|
2008-01-09 08:52:30 +01:00
|
|
|
add_postbox_toggles();
|
2008-01-03 02:34:11 +01:00
|
|
|
});
|