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
 
(17 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 (wgPageName == 'Test') {
/* load the dropdown that shows when you manually edit a page and put [[ */
console.log('on test page');
/* 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');


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


      // update viki call to use the page from the title
/* Customize the WikiEditor Toolbar */


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


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