User:Locke/common.js: Difference between revisions

From Zelda Dungeon Wiki
Jump to navigation Jump to search
Want an adless experience? Log in or Create an account.
mNo edit summary
mNo edit summary
Line 18: Line 18:
   var selector = $(this).attr( 'tab-selector' );
   var selector = $(this).attr( 'tab-selector' );
   tabstate[target] = {};
   tabstate[target] = {};
  console.log( this );
  console.log( $(this).attr( 'tab-target' ) );
   console.log( tabstate );
   console.log( tabstate );
   $(this).find( '.tab' ).each( function() {
   $(this).find( '.tab' ).each( function() {

Revision as of 01:46, November 13, 2014

/*
Three different behaviors desired:

1. all content on one page
-all content is initially visible for no-js. js hides all except "default"

2. content is on subpages, transcluded
-"no-js" content is initially visible, the rest hidden. js hides "no-js" and shows "default"

3. ajax
-"no-js" content is initially visible. js removes "no-js" and calls for "default"
*/

$(function() {
var tabstate = {};
$('.tabset').each( function() {
  var target = $(this).attr( 'tab-target' );
  var selector = $(this).attr( 'tab-selector' );
  tabstate[target] = {};
  console.log( this );
  console.log( $(this).attr( 'tab-target' ) );
  console.log( tabstate );
  $(this).find( '.tab' ).each( function() {
    var selection = $(this).attr( 'tab-selection' );
    //TODO defaults, no-js, ajax
    $(this).on( 'click', function() {
      $('#'+target+' div').hide();
      tabstate[target][selector] = selection;
      var content = tabstate[target].join( ' ' );
      $('#'+target+' div[tab-content="'+content+'"]').show();
    });
  });
});
});

function DataLoader( basepage, target ) {
    this.loadData = function( subpage ) {
        mw.loader.using( 'mediawiki.api', function () {
            (new mw.Api()).ajax( {
                action: 'parse',
                format: 'json',
                prop: 'text',
                page: basepage + '/' + subpage
            } ).done ( function ( data ) {
                $('#' + target).empty();
                $('#' + target).append( data['parse']['text']['*'] );
            } );
        } );
    };
}

var loader = new DataLoader( 'User:Locke/Sandbox', 'dl-target' );
loader.loadData( 'Template' );