mirror of
https://gerrit.wikimedia.org/r/mediawiki/extensions/CategoryTree
synced 2024-11-15 12:00:44 +00:00
150 lines
3.7 KiB
JavaScript
150 lines
3.7 KiB
JavaScript
/*
|
|
* JavaScript functions for the CategoryTree extension, an AJAX based gadget
|
|
* to display the category structure of a wiki
|
|
*
|
|
* @file
|
|
* @ingroup Extensions
|
|
* @author Daniel Kinzler, brightbyte.de
|
|
* @copyright © 2006 Daniel Kinzler
|
|
* @licence GNU General Public Licence 2.0 or later
|
|
*/
|
|
|
|
(function( $, mw ) {
|
|
|
|
var categoryTree = {
|
|
/**
|
|
* Sets display inline to tree toggle
|
|
*/
|
|
showToggles: function() {
|
|
$( 'span.CategoryTreeToggle' ).css( 'display', 'inline' );
|
|
},
|
|
|
|
/**
|
|
* Handles clicks on the expand buttons, and calls the appropriate function
|
|
*
|
|
* @context {Element} CategoryTreeToggle
|
|
* @param e {jQuery.Event}
|
|
*/
|
|
handleNode: function( e ) {
|
|
var $link = $( this );
|
|
if ( $link.data( 'ctState' ) === 'collapsed' ) {
|
|
categoryTree.expandNode( $link );
|
|
} else {
|
|
categoryTree.collapseNode( $link );
|
|
}
|
|
},
|
|
|
|
/**
|
|
* Expands a given node (loading it's children if not loaded)
|
|
*
|
|
* @param {jQuery} $link
|
|
*/
|
|
expandNode: function( $link ) {
|
|
// Show the children node
|
|
var $children = $link.parents( '.CategoryTreeItem' )
|
|
.siblings( '.CategoryTreeChildren' );
|
|
$children.show();
|
|
|
|
$link
|
|
.html( mw.msg( 'categorytree-collapse-bullet' ) )
|
|
.attr( 'title', mw.msg( 'categorytree-collapse' ) )
|
|
.data( 'ctState', 'expanded' );
|
|
|
|
if ( !$link.data( 'ctLoaded' ) ) {
|
|
categoryTree.loadChildren( $link, $children );
|
|
}
|
|
},
|
|
|
|
/**
|
|
* Collapses a node
|
|
*
|
|
* @param {jQuery} $link
|
|
*/
|
|
collapseNode: function( $link ) {
|
|
// Hide the children node
|
|
$link.parents( '.CategoryTreeItem' )
|
|
.siblings( '.CategoryTreeChildren' ).hide();
|
|
|
|
$link
|
|
.html( mw.msg( 'categorytree-expand-bullet' ) )
|
|
.attr( 'title', mw.msg( 'categorytree-expand' ) )
|
|
.data( 'ctState', 'collapsed' );
|
|
},
|
|
|
|
/**
|
|
* Loads children for a node via an HTTP call
|
|
*
|
|
* @param {jQuery} $link
|
|
* @param {jQuery} $children
|
|
*/
|
|
loadChildren: function( $link, $children ) {
|
|
$link.data( 'ctLoaded', true );
|
|
$children.html(
|
|
$( '<i class="CategoryTreeNotice"></i>' )
|
|
.text( mw.msg( 'categorytree-loading' ) )
|
|
);
|
|
|
|
var $parentTag = $link.parents( '.CategoryTreeTag' );
|
|
|
|
if ( $parentTag.length === 0 ) {
|
|
// Probably a CategoryPage
|
|
$parentTag = $( '<div />' )
|
|
.hide()
|
|
.data( 'ctOptions', mw.config.get( 'wgCategoryTreePageCategoryOptions' ) );
|
|
}
|
|
|
|
$.get(
|
|
mw.util.wikiScript(), {
|
|
action: 'ajax',
|
|
rs: 'efCategoryTreeAjaxWrapper',
|
|
rsargs: [$link.data( 'ctTitle' ), $parentTag.data( 'ctOptions' ), 'json'] // becomes &rsargs[]=arg1&rsargs[]=arg2...
|
|
}
|
|
)
|
|
.success( function ( data ) {
|
|
data = data.replace(/^\s+|\s+$/, '');
|
|
data = data.replace(/##LOAD##/g, mw.msg( 'categorytree-expand' ) );
|
|
|
|
if ( data === '' ) {
|
|
switch ( $parentTag.data( 'ctMode' ) ) {
|
|
case 0:
|
|
data = mw.msg( 'categorytree-no-subcategories' );
|
|
break;
|
|
case 10:
|
|
data = mw.msg( 'categorytree-no-pages' );
|
|
break;
|
|
case 100:
|
|
data = mw.msg( 'categorytree-no-parent-categories' );
|
|
break;
|
|
default:
|
|
data = mw.msg( 'categorytree-nothing-found' );
|
|
}
|
|
|
|
data = $( '<i class="CategoryTreeNotice"></i>' ).text( data );
|
|
}
|
|
|
|
$children
|
|
.html( data )
|
|
.find( '.CategoryTreeToggle' )
|
|
.click( categoryTree.handleNode );
|
|
categoryTree.showToggles();
|
|
} )
|
|
.error( function() {
|
|
var $retryLink = $( '<a />' )
|
|
.text( mw.msg( 'categorytree-retry' ) )
|
|
.attr( 'href', '#' )
|
|
.click( function() { categoryTree.loadChildren( $link, $children ); } );
|
|
$children
|
|
.text( mw.msg( 'categorytree-error' ) )
|
|
.append( $retryLink );
|
|
} );
|
|
}
|
|
};
|
|
|
|
// Register click events and show toggle buttons
|
|
$( function( $ ) {
|
|
$( '.CategoryTreeToggle' ).click( categoryTree.handleNode );
|
|
categoryTree.showToggles();
|
|
} );
|
|
|
|
} )( jQuery, mediaWiki );
|