Jump to content

MediaWiki:Common.js: Difference between revisions

From Squirrel's Lair
Ttenbergen (talk | contribs)
No edit summary
Ttenbergen (talk | contribs)
mNo edit summary
Tag: Manual revert
 
(19 intermediate revisions by the same user not shown)
Line 2: Line 2:


// Make sure the utilities module is loaded (will only load if not already)
// Make sure the utilities module is loaded (will only load if not already)
mw.loader.using( 'mediawiki.util', function () {
/*


    // if page name is Viki_this_page
/* load the dropdown that shows when you manually edit a page and put [[ */
    if (wgPageName == 'Viki_this_page') {
/* Check if view is in edit mode and that the required modules are available. Then, customize the toolbar ... */
      //works alert (mw.util.getParamValue ('viki'));  
if ( [ 'edit', 'submit' ].indexOf( mw.config.get( 'wgAction' ) ) !== -1 ) {
//autocompleter: https://en.wikipedia.org/wiki/User:%D7%A2%D7%A8%D7%9F/autocomplete
mw.loader.load('//he.wikipedia.org/w/load.php?modules=ext.gadget.autocomplete');


      // update viki call to use the page from the title
mw.loader.using( 'user.options' ).then( function () {
// This can be the string "0" if the user disabled the preference ([[phab:T54542#555387]])
if ( mw.user.options.get( 'usebetatoolbar' ) == 1 ) {
$.when(
mw.loader.using( 'ext.wikiEditor' ), $.ready
).then( customizeToolbar );
}
} );
}


      // and add viki code to top of page
/* Customize the WikiEditor Toolbar */
      //not the trick, just puts that text there...
      //var $txt = $( '#mw-content-text' );
      //$txt.prepend( '{{#viki:pageTitles=9DOF sensor}}' )


    } else {
var customizeToolbar = function () {
      //alert ('we are not here!');
    }


 
  /* add To do button */
    // Wait for the page to be parsed
  $( '#wpTextbox1' ).wikiEditor( 'addToToolbar', {
    $(document).ready( function () {  
section: 'main',
 
group: 'insert',
        //see below "Portlets" subsection
tools: {
        var link = mw.util.addPortletLink( 'p-cactions', '#', 'viki', 'ca-viki', 'Show viki diagram for this page');
"discussion": {
        $( link ).click( function ( event ) {
label: 'To Do',
            event.preventDefault();
type: 'button',
           
icon: '//wiki.squirrelslair.ca/images/6/61/40px-Swiss_Army_Knife.svg.png',
            var vikiURL = wgServer + '/index.php?title=Viki_this_page&viki=' + wgPageName
action: {
            // from testing alert(vikiURL);
type: 'encapsulate',
            window.open(vikiURL); //coment at end?
options: {
 
pre: "{{To Do \n | what = computer garage basement NF \n | question = \n * \n",
        } );
post: "| actionDt=<an action date if relevant to delay, defaults to today>}}"
 
}
    } );
}
} );
}
}
  } );
}

Latest revision as of 20:11, 2023 December 14

/* Any JavaScript here will be loaded for all users on every page load. */

// Make sure the utilities module is loaded (will only load if not already)
/* 

/* load the dropdown that shows when you manually edit a page and put [[ */
/* Check if view is in edit mode and that the required modules are available. Then, customize the toolbar ... */
if ( [ 'edit', 'submit' ].indexOf( mw.config.get( 'wgAction' ) ) !== -1 ) {
	
	//autocompleter: https://en.wikipedia.org/wiki/User:%D7%A2%D7%A8%D7%9F/autocomplete
	mw.loader.load('//he.wikipedia.org/w/load.php?modules=ext.gadget.autocomplete');

	mw.loader.using( 'user.options' ).then( function () {
		// This can be the string "0" if the user disabled the preference ([[phab:T54542#555387]])
		if ( mw.user.options.get( 'usebetatoolbar' ) == 1 ) {
			$.when(
				mw.loader.using( 'ext.wikiEditor' ), $.ready
			).then( customizeToolbar );
		}
	} );
}

/* Customize the WikiEditor Toolbar */

var customizeToolbar = function () {

  /* add To do button */
  $( '#wpTextbox1' ).wikiEditor( 'addToToolbar', {
	section: 'main',
	group: 'insert',
	tools: {
		"discussion": {
			label: 'To Do',
			type: 'button',
			icon: '//wiki.squirrelslair.ca/images/6/61/40px-Swiss_Army_Knife.svg.png',
			action: {
				type: 'encapsulate',
				options: {
					pre: "{{To Do \n | what = computer garage basement NF \n | question =  \n * \n", 
					post: "| actionDt=<an action date if relevant to delay, defaults to today>}}"
				}
			}
		}
	}
  } );
}