Difference between revisions of "User:Podehaye/common.js"

From Wikibase Personal data
Jump to navigation Jump to search
Line 7: Line 7:
 
// Button:
 
// Button:
 
mw.loader.using( 'oojs-ui-core' ).done( function () {
 
mw.loader.using( 'oojs-ui-core' ).done( function () {
  $( function () {
+
$( function () {
var name = new OO.ui.TextInputWidget( {
+
var input = new OO.ui.TextInputWidget( {
placeholder: 'cookie name'
+
placeholder: 'This is an entry box'
 
} );
 
} );
 +
 +
input.on( 'enter', function () {
 +
// Check for duplicates and prevent empty input
 +
if ( list.findItemFromData( input.getValue() ) ||
 +
input.getValue() === '' ) {
 +
input.$element.addClass( 'todo-error' );
 +
return;
 +
}
 
 
 
} );
 
} );
Line 18: Line 26:
 
input.$element);
 
input.$element);
  
 +
} );
  
 
} );
 
} );

Revision as of 00:37, 18 May 2019

mw.notify( $('<span>Welcome, Paul, your <a href="https://wiki.personaldata.io/wiki/User:Podehaye/common.js">user script</a> is loading!</span>') );

mw.loader.load( '//wiki.personaldata.io/w/index.php?title=User:Podehaye/button.js&action=raw&ctype=text/javascript' ); // front button for testing



// Button:
mw.loader.using( 'oojs-ui-core' ).done( function () {
$( function () {
	var input = new OO.ui.TextInputWidget( {
			placeholder: 'This is an entry box'
		} );
		
	input.on( 'enter', function () {
		// Check for duplicates and prevent empty input
		if ( list.findItemFromData( input.getValue() ) ||
				input.getValue() === '' ) {
			input.$element.addClass( 'todo-error' );
			return;
		}
		
	} );

	// Append the app widgets
  $( '#mw-content-text' ).prepend(
		input.$element);

} );

} );