MediaWiki:Common.js : Différence entre versions

De AGX
Aller à : navigation, rechercher
 
(26 révisions intermédiaires par le même utilisateur non affichées)
Ligne 1 : Ligne 1 :
$ ( '# wpTextbox1' ). wikiEditor ( 'addToToolbar' , {  
+
var customizeToolbar = function () {
'section' : 'emoticons' ,  
+
$('#wpTextbox1').wikiEditor('addToToolbar', {
'group' : 'faces' ,  
+
'section': 'advanced',
'tools' : {  
+
'group': 'format',
'smile' : {  
+
'tools': {
label : 'Smile!' , // ou utilisez labelMsg pour une étiquette localisée, voir ci-dessus
+
'smile': {
tapez : 'bouton' ,  
+
label: 'Fonctions AGX',  
icône : '//upload.wikimedia.org/wikipedia/commons/thumb/a/a4/Gnome-face-smile.svg/22px-Gnome-face-smile.svg.png' ,  
+
type: 'select',
action :  
+
list: {
'encapsulate' ,  
+
'AGX Bleu': {
options : {  
+
labelMsg: 'AGX Bleu',
pre : ":)"  // texte à insérer
+
action: {
}  
+
type: 'encapsulate',
}  
+
options: {
}  
+
pre: '<p class="bleuAGX">',
}  
+
periMsg: 'wikieditor-toolbar-tool-nowiki-example',
} );
+
post: '</p>'
 +
}
 +
}
 +
},
 +
'AGX Violet': {
 +
labelMsg: 'AGX Violet',
 +
action: {
 +
type: 'encapsulate',
 +
options: {
 +
pre: '<p class="violetAGX">',
 +
periMsg: 'wikieditor-toolbar-tool-nowiki-example',
 +
post: '</p>'
 +
}
 +
}
 +
},
 +
'AGX Orange': {
 +
labelMsg: 'AGX Orange',
 +
action: {
 +
type: 'encapsulate',
 +
options: {
 +
pre: '<p class="orangeAGX">',
 +
periMsg: 'wikieditor-toolbar-tool-nowiki-example',
 +
post: '</p>'
 +
}
 +
}
 +
},
 +
'AGX Vert': {
 +
labelMsg: 'AGX Vert',
 +
action: {
 +
type: 'encapsulate',
 +
options: {
 +
pre: '<p class="vertAGX">',
 +
periMsg: 'wikieditor-toolbar-tool-nowiki-example',
 +
post: '</p>'
 +
}
 +
}
 +
},
  
/ * Vérifiez si la vue est en mode édition et que les modules requis sont disponibles. Ensuite, personnalisez la barre d'outils… * /
+
                                                                                'AGX Remarque': {
if  (  [  'edit' ,  'submit' ]. IndexOf (  mw . Config . Get (  'wgAction' )  )  ! ==  - 1  )  {  
+
labelMsg: 'AGX Remarque',
mw . chargeur . using (  'user.options'  ). then (  function  ()  {  
+
action: {
// Cela peut être la chaîne "0" si l'utilisateur a désactivé la préférence ([[phab: T54542 # 555387]])
+
type: 'encapsulate',
if  (  mw. l'utilisateur . options . get (  'usebetatoolbar' )  ==  1  )  {
+
options: {
$ . when (
+
pre: '<div class="remarque">[[Fichier:remarque.png]]',
mw . loader . using (  'ext.wikiEditor'  ), $ . ready
+
periMsg: 'wikieditor-toolbar-tool-nowiki-example',
). puis (  personnaliserToolbar  );
+
post: '</div>'
}  
+
}
} );  
+
}
 +
},
 +
  'AGX Astuce': {
 +
labelMsg: 'AGX Astuce',
 +
action: {
 +
type: 'encapsulate',
 +
options: {
 +
pre: '<div class="astuce">[[Fichier:astuce.png]]',
 +
periMsg: 'wikieditor-toolbar-tool-nowiki-example',
 +
post: '</div>'
 +
}
 +
}
 +
},
 +
 
 +
 
 +
 
 +
                                                                       
 +
}
 +
}
 +
}
 +
} );
 
};
 
};
 +
 +
/* Check if view is in edit mode and that the required modules are available. Then, customize the toolbar … */
 +
if ( $.inArray( mw.config.get( 'wgAction' ), [ 'edit', 'submit' ] ) !== -1 ) {
 +
    mw.loader.using( 'user.options', 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.toolbar' ), $.ready
 +
            ).then( customizeToolbar );
 +
        }
 +
    } );
 +
}
 +
// Add the customizations to LiquidThreads' edit toolbar, if available
 +
mw.hook( 'ext.lqt.textareaCreated' ).add( customizeToolbar );

Version actuelle datée du 23 avril 2021 à 10:26

var customizeToolbar = function () {
	$('#wpTextbox1').wikiEditor('addToToolbar', {
		'section': 'advanced',
		'group': 'format',
		'tools': {
			'smile': {
				label: 'Fonctions AGX', 
				type: 'select',
				list: {
										'AGX Bleu': {
											labelMsg: 'AGX Bleu',
											action: {
												type: 'encapsulate',
												options: {
													pre: '<p class="bleuAGX">',
													periMsg: 'wikieditor-toolbar-tool-nowiki-example',
													post: '</p>'
												}
											}
										},
										'AGX Violet': {
											labelMsg: 'AGX Violet',
											action: {
												type: 'encapsulate',
												options: {
													pre: '<p class="violetAGX">',
													periMsg: 'wikieditor-toolbar-tool-nowiki-example',
													post: '</p>'
												}
											}
										},
										'AGX Orange': {
											labelMsg: 'AGX Orange',
											action: {
												type: 'encapsulate',
												options: {
													pre: '<p class="orangeAGX">',
													periMsg: 'wikieditor-toolbar-tool-nowiki-example',
													post: '</p>'
												}
											}
										},
										'AGX Vert': {
											labelMsg: 'AGX Vert',
											action: {
												type: 'encapsulate',
												options: {
													pre: '<p class="vertAGX">',
													periMsg: 'wikieditor-toolbar-tool-nowiki-example',
													post: '</p>'
												}
											}
										},

                                                                                'AGX Remarque': {
											labelMsg: 'AGX Remarque',
											action: {
												type: 'encapsulate',
												options: {
													pre: '<div class="remarque">[[Fichier:remarque.png]]',
													periMsg: 'wikieditor-toolbar-tool-nowiki-example',
													post: '</div>'
												}
											}
										},
 'AGX Astuce': {
											labelMsg: 'AGX Astuce',
											action: {
												type: 'encapsulate',
												options: {
													pre: '<div class="astuce">[[Fichier:astuce.png]]',
													periMsg: 'wikieditor-toolbar-tool-nowiki-example',
													post: '</div>'
												}
											}
										},



                                                                         
									}
			}
		}
	} );
};

/* Check if view is in edit mode and that the required modules are available. Then, customize the toolbar … */
if ( $.inArray( mw.config.get( 'wgAction' ), [ 'edit', 'submit' ] ) !== -1 ) {
    mw.loader.using( 'user.options', 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.toolbar' ), $.ready
            ).then( customizeToolbar );
        }
    } );
}
// Add the customizations to LiquidThreads' edit toolbar, if available
mw.hook( 'ext.lqt.textareaCreated' ).add( customizeToolbar );