]> scripts.mit.edu Git - autoinstalls/wordpress.git/blobdiff - wp-admin/js/tags.dev.js
Wordpress 3.0
[autoinstalls/wordpress.git] / wp-admin / js / tags.dev.js
index 968738e8ca8a91dd0ca5e035d14cd17fc92b7a39..abb8ecc07c7111c34db06e6b86cfbbbd339c02de 100644 (file)
@@ -10,6 +10,9 @@ jQuery(document).ready(function($) {
                                if ( '1' == r ) {
                                        $('#ajax-response').empty();
                                        tr.fadeOut('normal', function(){ tr.remove(); });
+                                       // Remove the term from the parent box and tag cloud
+                                       $('select#parent option[value=' + data.match(/tag_ID=(\d+)/)[1] + ']').remove();
+                                       $('a.tag-link-' + data.match(/tag_ID=(\d+)/)[1]).remove();
                                } else if ( '-1' == r ) {
                                        $('#ajax-response').empty().append('<div class="error"><p>' + tagsl10n.noPerm + '</p></div>');
                                        tr.children().css('backgroundColor', '');
@@ -30,16 +33,34 @@ jQuery(document).ready(function($) {
                        return false;
 
                $.post(ajaxurl, $('#addtag').serialize(), function(r){
-                       if ( r.indexOf('<div class="error"') === 0 ) {
-                               $('#ajax-response').append(r);
-                       } else {
-                               $('#ajax-response').empty();
-                               $('#the-list').prepend(r);
-                               $('input[type="text"]:visible, textarea:visible', form).val('');
+                  $('#ajax-response').empty();
+                       var res = wpAjax.parseAjaxResponse(r, 'ajax-response');
+                       if ( ! res )
+                               return;
+
+                       var parent = form.find('select#parent').val();
+
+                       if ( parent > 0 && $('#tag-' + parent ).length > 0 ) // If the parent exists on this page, insert it below. Else insert it at the top of the list.
+                               $('#the-list #tag-' + parent).after( res.responses[0].supplemental['noparents'] ); // As the parent exists, Insert the version with - - - prefixed
+                       else
+                               $('#the-list').prepend( res.responses[0].supplemental['parents'] ); // As the parent is not visible, Insert the version with Parent - Child - ThisTerm
+
+                       if ( form.find('select#parent') ) {
+                               // Parents field exists, Add new term to the list.
+                               var term = res.responses[1].supplemental;
+
+                               // Create an indent for the Parent field
+                               var indent = '';
+                               for ( var i = 0; i < res.responses[1].position; i++ )
+                                       indent += '&nbsp;&nbsp;&nbsp;';
+
+                               form.find('select#parent option:selected').after('<option value="' + term['term_id'] + '">' + indent + term['name'] + '</option>');
                        }
+
+                       $('input[type="text"]:visible, textarea:visible', form).val('');
                });
 
                return false;
        });
 
-});
+});
\ No newline at end of file