2006-11-08 22:23:41 +01:00
< ? php @ require_once ( '../../wp-config.php' ); cache_javascript_headers (); ?>
2006-09-13 23:39:53 +02:00
addLoadEvent ( function (){ theList = new listMan ();});
2006-11-28 22:51:13 +01:00
function deleteSomething ( what , id , message , obj ){ if ( ! obj ) obj = theList ; if ( ! message ) message = " <?php printf(js_escape(__('Are you sure you want to delete this %s?')), " '+what+' " ); ?> " ; if ( confirm ( message )) return obj . ajaxDelete ( what , id ); else return false ;}
2006-09-13 23:39:53 +02:00
function dimSomething ( what , id , dimClass , obj ){ if ( ! obj ) obj = theList ; return obj . ajaxDimmer ( what , id , dimClass );}
var listMan = Class . create ();
Object . extend ( listMan . prototype , {
ajaxRespEl : 'ajax-response' ,
2006-11-08 22:23:41 +01:00
ajaxHandler : false ,
2006-09-13 23:39:53 +02:00
inputData : '' ,
clearInputs : [],
showLink : true ,
topAdder : false ,
alt : 'alternate' ,
altOffset : 0 ,
addComplete : null ,
delComplete : null ,
dimComplete : null ,
dataStore : null ,
formStore : null ,
initialize : function ( theListId ) {
this . theList = $ ( theListId ? theListId : 'the-list' );
if ( ! this . theList )
return false ;
2007-01-19 01:49:01 +01:00
Element . cleanWhitespace ( this . theList );
2006-09-13 23:39:53 +02:00
},
// sends add-what and fields contained in where
// recieves html with top element having an id like what-#
ajaxAdder : function ( what , where , update ) { // Do NOT wrap TR in TABLE TBODY
var ajaxAdd = new WPAjax ( this . ajaxHandler , this . ajaxRespEl );
if ( ajaxAdd . notInitialized () )
return true ;
2007-01-26 04:41:17 +01:00
var action = ( update ? 'update-' : 'add-' ) + what ;
ajaxAdd . options . parameters = $H ( ajaxAdd . options . parameters ) . merge ({ action : action }) . merge ( this . inputData . toQueryParams ()) . merge ( this . grabInputs ( where , ajaxAdd ) . toQueryParams ());
2006-09-13 23:39:53 +02:00
var tempObj = this ;
ajaxAdd . addOnComplete ( function ( transport ) {
var newItems = $A ( transport . responseXML . getElementsByTagName ( what ));
if ( newItems ) {
2006-12-02 00:00:04 +01:00
var showLinkMessage = '' ;
var m = '' ;
2006-09-13 23:39:53 +02:00
newItems . each ( function ( i ) {
var id = i . getAttribute ( 'id' );
var exists = $ ( what + '-' + id );
if ( exists )
tempObj . replaceListItem ( exists , getNodeValue ( i , 'response_data' ), update );
else
tempObj . addListItem ( getNodeValue ( i , 'response_data' ) );
2006-12-02 00:00:04 +01:00
m = getNodeValue ( i , 'show-link' );
showLinkMessage += showLinkMessage ? " <br /> \n " : '' ;
if ( m )
showLinkMessage += m ;
else
showLinkMessage += " <a href='# " + what + '-' + id + " '><?php echo js_escape(__('Jump to new item')); ?> " ;
2006-09-13 23:39:53 +02:00
});
2006-12-02 00:00:04 +01:00
if ( tempObj . showLink && showLinkMessage )
2007-01-19 01:49:01 +01:00
Element . update ( ajaxAdd . myResponseElement , " <div id='jumplink' class='updated fade'><p> " + showLinkMessage + " </p></div> " );
2006-09-13 23:39:53 +02:00
}
if ( tempObj . addComplete && typeof tempObj . addComplete == 'function' )
tempObj . addComplete ( what , where , update , transport );
tempObj . recolorList ();
ajaxAdd . restoreInputs = null ;
});
2006-11-08 22:23:41 +01:00
if ( ! update )
ajaxAdd . addOnWPError ( function ( transport ) { tempObj . restoreForm ( ajaxAdd . restoreInputs ); });
2006-09-13 23:39:53 +02:00
ajaxAdd . request ( ajaxAdd . url );
2006-11-08 22:23:41 +01:00
if ( ! update )
this . clear ();
2006-09-13 23:39:53 +02:00
return false ;
},
// sends update-what and fields contained in where
// recieves html with top element having an id like what-#
ajaxUpdater : function ( what , where ) { return this . ajaxAdder ( what , where , true ); },
// sends delete-what and id#
ajaxDelete : function ( what , id ) {
var ajaxDel = new WPAjax ( this . ajaxHandler , this . ajaxRespEl );
if ( ajaxDel . notInitialized () )
return true ;
var tempObj = this ;
2007-01-26 04:41:17 +01:00
var action = 'delete-' + what ;
var actionId = action + '&id=' + id ;
2006-09-13 23:39:53 +02:00
var idName = what . replace ( '-as-spam' , '' ) + '-' + id ;
ajaxDel . addOnComplete ( function ( transport ) {
2007-01-19 01:49:01 +01:00
Element . update ( ajaxDel . myResponseElement , '' );
2007-01-26 04:41:17 +01:00
tempObj . destore ( actionId );
2006-09-13 23:39:53 +02:00
if ( tempObj . delComplete && typeof tempObj . delComplete == 'function' )
tempObj . delComplete ( what , id , transport );
});
2007-01-26 04:41:17 +01:00
ajaxDel . addOnWPError ( function ( transport ) { tempObj . restore ( actionId , true ); });
ajaxDel . options . parameters = $H ( ajaxDel . options . parameters ) . merge ({ action : action , id : id }) . merge ( this . inputData . toQueryParams ());
2006-09-13 23:39:53 +02:00
ajaxDel . request ( ajaxDel . url );
2007-01-26 04:41:17 +01:00
this . store ( actionId , idName );
2006-09-13 23:39:53 +02:00
tempObj . removeListItem ( idName );
return false ;
},
// Toggles class nomes
// sends dim-what and id#
ajaxDimmer : function ( what , id , dimClass ) {
ajaxDim = new WPAjax ( this . ajaxHandler , this . ajaxRespEl );
if ( ajaxDim . notInitialized () )
return true ;
var tempObj = this ;
2007-01-26 04:41:17 +01:00
var action = 'dim-' + what ;
var actionId = action + '&id=' + id ;
2006-09-13 23:39:53 +02:00
var idName = what + '-' + id ;
ajaxDim . addOnComplete ( function ( transport ) {
2007-01-19 01:49:01 +01:00
Element . update ( ajaxDim . myResponseElement , '' );
2007-01-26 04:41:17 +01:00
tempObj . destore ( actionId );
2006-09-13 23:39:53 +02:00
if ( tempObj . dimComplete && typeof tempObj . dimComplete == 'function' )
tempObj . dimComplete ( what , id , dimClass , transport );
});
2007-01-26 04:41:17 +01:00
ajaxDim . addOnWPError ( function ( transport ) { tempObj . restore ( actionId , true ); });
ajaxDim . options . parameters = $H ( ajaxDim . options . parameters ) . merge ({ action : action , id : id }) . merge ( this . inputData . toQueryParams ());
2006-09-13 23:39:53 +02:00
ajaxDim . request ( ajaxDim . url );
2007-01-26 04:41:17 +01:00
this . store ( actionId , idName );
2006-09-13 23:39:53 +02:00
this . dimItem ( idName , dimClass );
return false ;
},
addListItem : function ( h ) {
new Insertion [ this . topAdder ? 'Top' : 'Bottom' ]( this . theList , h );
2007-01-19 01:49:01 +01:00
Element . cleanWhitespace ( this . theList );
2006-09-13 23:39:53 +02:00
var id = this . topAdder ? this . theList . firstChild . id : this . theList . lastChild . id ;
if ( this . alt )
if ( this . theList . childNodes . length % 2 )
2007-01-19 01:49:01 +01:00
Element . addClassName ( $ ( id ), this . alt );
2006-09-13 23:39:53 +02:00
Fat . fade_element ( id );
},
// only hides the element sa it can be put back again if necessary
removeListItem : function ( id , noFade ) {
id = $ ( id );
if ( ! noFade ) {
Fat . fade_element ( id . id , null , 700 , '#FF3333' );
var tempObj = this ;
var func = function () { id . hide (); tempObj . recolorList (); }
setTimeout ( func , 705 );
} else {
id . hide ();
this . recolorList ();
}
},
replaceListItem : function ( id , h , update ) {
id = $ ( id );
if ( ! update ) {
2007-01-19 01:49:01 +01:00
Element . remove ( id );
2006-09-13 23:39:53 +02:00
this . addListItem ( h );
return ;
}
id . replace ( h );
Fat . fade_element ( id . id );
},
// toggles class
dimItem : function ( id , dimClass , noFade ) {
id = $ ( id );
2007-01-19 01:49:01 +01:00
if ( Element . hasClassName ( id , dimClass ) ) {
2006-09-13 23:39:53 +02:00
if ( ! noFade )
Fat . fade_element ( id . id , null , 700 , null );
2007-01-19 01:49:01 +01:00
Element . removeClassName ( id , dimClass );
2006-09-13 23:39:53 +02:00
} else {
if ( ! noFade )
Fat . fade_element ( id . id , null , 700 , '#FF3333' );
2007-01-19 01:49:01 +01:00
Element . addClassName ( id , dimClass );
2006-09-13 23:39:53 +02:00
}
},
// store an element in case we need it later
store : function ( action , id ) {
if ( ! this . dataStore )
this . dataStore = $H ();
this . dataStore [ action ] = $ ( id ) . cloneNode ( true );
},
// delete from store
destore : function ( action ) { delete ( this . dataStore [ action ]); },
// restore element from store into existing (possibly hidden) element of same id
restore : function ( action , error ) {
var id = this . dataStore [ action ] . id ;
this . theList . replaceChild ( this . dataStore [ action ], $ ( id ));
delete ( this . dataStore [ action ]);
if ( error ) {
2007-01-19 01:49:01 +01:00
func = function () { Element . setStyle ( $ ( id ),{ backgroundColor : '#FF3333' }); }
2006-09-13 23:39:53 +02:00
func (); setTimeout ( func , 705 ); // Hit it twice in case it's still fading.
}
},
// Like Form.serialize, but excludes action and sets up clearInputs
grabInputs : function ( where , ajaxObj ) {
if ( ajaxObj )
ajaxObj . restoreInputs = [];
var elements = Form . getElements ( $ ( where ));
var queryComponents = new Array ();
for ( var i = 0 ; i < elements . length ; i ++ ) {
if ( 'action' == elements [ i ] . name )
continue ;
if ( 'hidden' != elements [ i ] . type && 'submit' != elements [ i ] . type && 'button' != elements [ i ] . type ) {
this . clearInputs . push ( elements [ i ]);
if ( ajaxObj )
ajaxObj . restoreInputs . push ([ elements [ i ], elements [ i ] . value ]);
}
var queryComponent = Form . Element . serialize ( elements [ i ]);
if ( queryComponent ) {
queryComponents . push ( queryComponent );
}
}
return queryComponents . join ( '&' );
},
// form.reset() can only do whole forms. This can do subsections.
clear : function () {
this . clearInputs . each ( function ( i ) {
i = $ ( i );
if ( 'textarea' == i . tagName . toLowerCase () )
i . value = '' ;
else
switch ( i . type . toLowerCase () ) {
case 'password' : case 'text' :
i . value = '' ;
break ;
case 'checkbox' : case 'radio' :
i . checked = false ;
break ;
case 'select' : case 'select-one' :
i . selectedIndex = null ;
break ;
case 'select-multiple' :
for ( var o = 0 ; o < i . length ; o ++ ) i . options [ o ] . selected = false ;
break ;
}
});
this . clearInputs = [];
},
restoreForm : function ( elements ) {
elements . each ( function ( i ) {
i [ 0 ] . value = i [ 1 ];
});
},
recolorList : function () {
if ( ! this . alt )
return ;
var alt = this . alt ;
var offset = this . altOffset ;
2007-01-19 01:49:01 +01:00
var listItems = $A ( this . theList . childNodes ) . findAll ( function ( i ) { return Element . visible ( i ) } );
2006-09-13 23:39:53 +02:00
listItems . each ( function ( i , n ) {
if ( ( n + offset ) % 2 )
2007-01-19 01:49:01 +01:00
Element . removeClassName ( i , alt );
2006-09-13 23:39:53 +02:00
else
2007-01-19 01:49:01 +01:00
Element . addClassName ( i , alt );
2006-09-13 23:39:53 +02:00
});
}
});
//No submit unless code returns true.
function killSubmit ( code , e ) {
e = e ? e : window . event ;
if ( ! e ) return ;
var t = e . target ? e . target : e . srcElement ;
if ( ( 'text' == t . type && e . keyCode == 13 ) || ( 'submit' == t . type && 'click' == e . type ) ) {
if ( ( 'string' == typeof code && ! eval ( code ) ) || ( 'function' == typeof code && ! code () ) ) {
e . returnValue = false ; e . cancelBubble = true ; return false ;
}
}
}
//Generic but lame JS closure
function encloseFunc ( f ){ var a = arguments [ 1 ]; return function (){ return f ( a );}}