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
 
(18 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 [[ */
  modules = jQuery.parseJSON("[\"ext.VIKI\",\"jquery.ui.slider\",\"jquery.ui.progressbar\"]");
/* Check if view is in edit mode and that the required modules are available. Then, customize the toolbar ... */
mw.loader.using(jQuery.parseJSON("[\"ext.VIKI\",\"jquery.ui.slider\",\"jquery.ui.progressbar\"]"), function () {
if ( [ 'edit', 'submit' ].indexOf( mw.config.get( 'wgAction' ) ) !== -1 ) {
$(document).ready(function() {
var g = new VIKI.VikiJS();
//autocompleter: https://en.wikipedia.org/wiki/User:%D7%A2%D7%A8%D7%9F/autocomplete
g.initialize("[\"Raspbery Pi I2C Sensor\"]", "[\"VIKI_0_graph\",\"VIKI_0_details_data\",\"VIKI_0_details_zoom_slider\",\"VIKI_0_errors\",\"VIKI_0_hamburger\"]", "{\"width\":1200,\"height\":600,\"imagePath\":\"http:\\/\\/wiki.squirrelslair.ca\\/extensions\\/VIKI\\/\",\"hooks\":[],\"logoURL\":\"\\/skins\\/common\\/images\\/squirrelslair_big.png\",\"hiddenCategories\":[],\"showSecondOrderLinks\":false}");
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 );
}
} );
}


    // if page name is Viki_this_page
/* Customize the WikiEditor Toolbar */
    if (wgPageName == 'Viki_this_page') {
      //works alert (mw.util.getParamValue ('viki'));


      // update viki call to use the page from the title
var customizeToolbar = function () {


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

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>}}"
				}
			}
		}
	}
  } );
}