Diferencia entre revisiones de «MediaWiki:Gadget-Versalitas.js»

De EIFA - Estudios Interdisciplinares de las Fuentes Avilistas
Etiqueta: Revertido
 
(No se muestran 31 ediciones intermedias del mismo usuario)
Línea 1: Línea 1:
/**
ve.ui.VersalitasCommand = function VeUiVersalitasCommand() {
* Adds dialog for selecting citation tempalte.
ve.ui.VersalitasCommand.super.call( this, 'Versalitas' );
* Written by: [[User:ערן]] and [[User:Ravid ziv]]
};
*/
OO.inheritClass( ve.ui.VersalitasCommand, ve.ui.Command );
(function () {


/************* Configuration section *******************************************/
ve.ui.VersalitasCommand.prototype.execute = function ( surface ) {
var model = surface.getModel(),
doc = model.getDocument(),
range = model.getSelection().getRange(),
docRange = doc.shallowCloneFromRange( range );


var DialogTitle = 'Select citation template';
ve.init.target.getWikitextFragment( docRange, false ).done( function ( wikitext ) {
//Configurate the most common citation templates and their parameters here
model.getFragment().insertContent([
var CitationTemplates = {
{
'Cite Web ': { template: {
type: 'mwTransclusionInline',
target: {
attributes: {
href: 'Template:cite web',
mw: {
wt: 'cite web'
parts: [{
},
template: {
params: {
target: {
'first': {wt: ''},
href: 'Template:Versales',
'last': {wt: ''},
wt: 'Versales'
'title': {wt: ''},
},
'url': {wt: ''},
params: {
'publisher': {wt: ''},
1: {
'accessdate': {wt: ''}
wt: wikitext
}
}
}
}
},
}
'Cite news': { template: {
}]
target: {
}
href: 'Template:cite news',
wt: 'cite news'
},
params: {
'first': {wt: ''},
'last': {wt: ''},
'title': {wt: ''},
'url': {wt: ''},
'accessdate': {wt: ''},
'newspaper': {wt: ''}
}
}
},
'Cite book': { template: {
target: {
href: 'Template:cite book',
wt: 'cite book'
},
params: {
'first': {wt: ''},
'last': {wt: ''},
'date': {wt: ''},
'publisher': {wt: ''},
'location': {wt: ''},
'isbn': {wt: ''},
'page': {wt: ''},
'url': {wt: ''}
}
}
},
'Cite journal ': { template: {
target: {
href: 'Template:cite journal',
wt: 'cite journal'
},
params: {
'first': {wt: ''},
'last': {wt: ''},
'coauthors': {wt: ''},
'journal': {wt: ''},
'date': {wt: ''},
'volume': {wt: ''},
'series': {wt: ''},
'issue': {wt: ''},
'page': {wt: ''},
'doi': {wt: ''},
'pmid': {wt: ''},
'url': {wt: ''},
'accessdate': {wt: ''}
}
}
}
} , {
}
type: '/mwTransclusionInline'
}
} ] );
 
} );
/*************************** end of configuration section *********************/
ve.ui.VeUiMWCiteDialog = function VeUiMWCiteDialog( surface, config ) {
// Configuration initialization
config = ve.extendObject( { 'size': 'medium' }, config );
// Parent constructor
ve.ui.MWReferenceDialog.call( this, surface, config );
this.followTransactions  = false;
};
};
/* Inheritance */
OO.inheritClass( ve.ui.VeUiMWCiteDialog, ve.ui.MWReferenceDialog );
/* Static Properties */
ve.ui.VeUiMWCiteDialog.static.name = 'Cite';
ve.ui.VeUiMWCiteDialog.static.title = DialogTitle;
ve.ui.VeUiMWCiteDialog.prototype.initialize = function ( ) {
ve.ui.MWReferenceDialog.prototype.initialize.call(this);
// hide reference panel
this.editPanel.$element.hide()
this.$foot.hide();
this.templatesPanel = new OO.ui.PanelLayout( {
'$': this.$, 'scrollable': true, 'padded': true
} );
this.panels.addItems( [ this.templatesPanel ] );
var buttons = [];
for (var buttonName in CitationTemplates) {
var button = new OO.ui.ButtonWidget( {
'$': this.$,
'label': buttonName,
} );
button.connect( this, { 'click': [ 'citeWeb', CitationTemplates[buttonName] ] } );
buttons.push(button.$element);
}
this.templatesPanel.$element.append(buttons).show();


}
ve.ui.commandRegistry.register( new ve.ui.VersalitasCommand() );


ve.ui.VeUiMWCiteDialog.prototype.useReference = function ( ref ) {
ve.ui.VersalitasTool = function VeUiVersalitasTool() {
 
ve.ui.VersalitasTool.super.apply( this, arguments );
this.followTransactions  = false;
ve.ui.MWReferenceDialog.prototype.useReference.call(this, ref);
}
ve.ui.VeUiMWCiteDialog.prototype.citeWeb = function( emptyTemplate ){
this.referenceSurface.getSurface().getModel().getFragment().collapseRangeToEnd().insertContent([{'type': 'mwTransclusionInline','attributes': {'mw':
{
parts: [ emptyTemplate ]
}}}]);
this.followTransactions  = true;
this.referenceSurface.getSurface().execute('dialog', 'open', 'transclusion', null);
var self = this;
this.referenceSurface.getSurface().getDialogs().getWindow('transclusion').on(
'close',function (data){
if (data.action=='cancel')
{
self.close({ 'action': 'cancel' });
}
});
}
ve.ui.VeUiMWCiteDialog.prototype.onDocumentTransact = function () {
if (!this.followTransactions) return;
var data = this.referenceSurface.getSurface().getModel().getDocument().getFullData();
for (var j=0;j<data.length;j++)
{
var node = data[j];
if (node.type ==="mwTransclusionInline" && node.hasOwnProperty('attributes') )
{
var params = node.attributes.mw.parts[0].template.params;
this.close( { 'action': 'insert' } );
}
}
};
/* Registration */
ve.ui.dialogFactory.register( ve.ui.VeUiMWCiteDialog );
function CiteTool( toolGroup, config ) {
OO.ui.Tool.call( this, toolGroup, config );
}
OO.inheritClass( CiteTool, OO.ui.Tool );
CiteTool.static.name = 'CiteTool';
CiteTool.static.title = 'Cite'
CiteTool.prototype.onSelect = function () {
this.toolbar.getSurface().execute('dialog', 'open', 'Cite', null);
};
CiteTool.prototype.onUpdateState = function () {
this.setActive( false );
};
};
OO.inheritClass( ve.ui.VersalitasTool, ve.ui.Tool );
ve.ui.toolFactory.register( CiteTool );
ve.ui.VersalitasTool.static.name = 'Versalitas';
ve.ui.VersalitasTool.static.group = 'textStyle';
})();
ve.ui.VersalitasTool.static.icon = 'largerText';
ve.ui.VersalitasTool.static.title = 'Versalitas';
ve.ui.VersalitasTool.static.commandName = 'Versalitas';
ve.ui.toolFactory.register( ve.ui.VersalitasTool );

Revisión actual - 17:48 22 ene 2022

ve.ui.VersalitasCommand = function VeUiVersalitasCommand() {
	ve.ui.VersalitasCommand.super.call(	this, 'Versalitas' );
};
OO.inheritClass( ve.ui.VersalitasCommand, ve.ui.Command );

ve.ui.VersalitasCommand.prototype.execute = function ( surface ) {
	var model = surface.getModel(),
		doc = model.getDocument(),
		range = model.getSelection().getRange(),
		docRange = doc.shallowCloneFromRange( range );

	ve.init.target.getWikitextFragment( docRange, false ).done( function ( wikitext ) {
		model.getFragment().insertContent([
			{
				type: 'mwTransclusionInline',
				attributes: {
					mw: {
						parts: [{
							template: {
								target: {
									href: 'Template:Versales',
									wt: 'Versales'
								},
								params: {
									1: {
										wt: wikitext
									}
								}
							}
						}]
					}
				}
			} , {
				type: '/mwTransclusionInline'
			} ] );
	} );
};

ve.ui.commandRegistry.register( new ve.ui.VersalitasCommand() );

ve.ui.VersalitasTool = function VeUiVersalitasTool() {
	ve.ui.VersalitasTool.super.apply( this, arguments );
};
OO.inheritClass( ve.ui.VersalitasTool, ve.ui.Tool );
ve.ui.VersalitasTool.static.name = 'Versalitas';
ve.ui.VersalitasTool.static.group = 'textStyle';
ve.ui.VersalitasTool.static.icon = 'largerText';
ve.ui.VersalitasTool.static.title = 'Versalitas';
ve.ui.VersalitasTool.static.commandName = 'Versalitas';
ve.ui.toolFactory.register( ve.ui.VersalitasTool );