2013-04-17 17:53:26 +00:00
|
|
|
/*!
|
2014-08-19 18:32:46 +00:00
|
|
|
* VisualEditor ContentEditable MWReferencesListNode class.
|
2013-04-17 17:53:26 +00:00
|
|
|
*
|
2015-01-08 23:54:03 +00:00
|
|
|
* @copyright 2011-2015 VisualEditor Team and others; see AUTHORS.txt
|
2013-04-17 17:53:26 +00:00
|
|
|
* @license The MIT License (MIT); see LICENSE.txt
|
|
|
|
*/
|
|
|
|
|
|
|
|
/**
|
2014-08-19 18:32:46 +00:00
|
|
|
* ContentEditable MediaWiki references list node.
|
2013-04-17 17:53:26 +00:00
|
|
|
*
|
|
|
|
* @class
|
|
|
|
* @extends ve.ce.LeafNode
|
2014-06-10 23:19:50 +00:00
|
|
|
* @mixins ve.ce.FocusableNode
|
ve.ce.ProtectedNode
Objective:
Generalize the shield and phantom magic, so we can use it for pretty much
any node we like. Usually this will be used with generated content nodes,
but also with aliens (of course) and possible other stuff in the future.
Bonus:
Also fixes a bug in DM that would crash VE when you selected to the end
and hit backspace.
Changes:
*.php
* Added links to files
aliens.html
* Added attributes to aliens to make them aliens again
ve.ce.AlienNode.js
* Moved shield and phantom functionality to ve.ce.ProtectedNode
ve.ce.AlienNode.js, ve.ce.MWReferenceListNode.js,
ve.ce.MWReferenceNode.js, ve.ce.MWTemplateNode.js
* Mixed in ve.ce.ProtectedNode
ve.ce.Node.css
* Reorganized styles and updated class names
* Added simple light blue hover with outline (using inset box shadow) for
protected nodes, same style as before for aliens
ve.ce.Surface.css
* Moved phantom styles to ve.ce.Node.css
ve.ce.BranchNode.js
* Moved call to setLive(false) to happen before detach() so that the
surface object is still available and events can be disconnected
ve.ce.BranchNode.js, ve.ce.Document.js, ve.ce.js, ve.ce.Surface.js, ve.ce.SurfaceObserver.js
* Adjusted CSS class names
ve.ce.Node.js
* Moved shield template to ve.ce.ProtectedNode
ve.ce.ProtectedNode.js
* New class, mix into another class to protect it from editing
ve.ce.RelocatableNode.js
* Renamed temporary surface property to relocatingSurface to avoid
confusion when debugging
ve.ce.Surface.js
* Moved phantom template to ve.ce.ProtectedNode
ve.dm.Transaction.js
* Fixed bug where most of the internal list was being deleted when the
end of the document was selected and the user pressed backspace
Change-Id: I2468b16e1ba6785ad298e38190e33493135719c3
2013-05-07 00:07:01 +00:00
|
|
|
*
|
2013-04-17 17:53:26 +00:00
|
|
|
* @constructor
|
2014-08-19 18:32:46 +00:00
|
|
|
* @param {ve.dm.MWReferencesListNode} model Model to observe
|
2013-09-25 10:21:09 +00:00
|
|
|
* @param {Object} [config] Configuration options
|
2013-04-17 17:53:26 +00:00
|
|
|
*/
|
2014-08-19 18:32:46 +00:00
|
|
|
ve.ce.MWReferencesListNode = function VeCeMWReferencesListNode( model, config ) {
|
2013-04-17 17:53:26 +00:00
|
|
|
// Parent constructor
|
ve.Element refactor
Objectives:
* Move ve.ui.Element to ve.Element
* Make CE nodes inherit from ve.Element
Changes:
ve.ui.Element.js, ve.Element.js
* Move and rename
* Move ve.ui.get$$ to ve.Element.static.get$$
* Add static getDocument and getWindow methods
* Add instance getElementDocument and getElementWindow methods
* Add getTagName method, which by default reads the static tagName property, but when overridden can return a tag name based on other factors
*.php
* Updated file link
ve.ce.*Annotation.js, ve.ce.*Node.js, ve.ce.View.js, ve.ce.Document
* Added config options pass through
* Replaced passing elements through constructor with defining static tag names
* Added getTagName overrides where needed that derive tag name from model
* Refactore dom wrapper methods, now consistently using getTagName
ve.ce.Surface.js
* Removed static initialization (not needed)
ve.dm.Model.js, ve.ui.Window.js
* Added missing docs
ve.ui.GroupElement.js, ve.ui.Layout.js, ve.ui.Widget.js,
* Updated class name for elements
ve.ui.Frame.js, ve.ui.LookupInputWidget.js
* Updated location of get$$
ve.ui.js
* Move get$$ to ve.Element
ve.js
* Add auto-init of static properties to mixinClass
Change-Id: I39ae14966456903728e4d9e53f806ddce9ca2b70
2013-05-13 20:52:59 +00:00
|
|
|
ve.ce.LeafNode.call( this, model, config );
|
2013-04-17 17:53:26 +00:00
|
|
|
|
ve.ce.ProtectedNode
Objective:
Generalize the shield and phantom magic, so we can use it for pretty much
any node we like. Usually this will be used with generated content nodes,
but also with aliens (of course) and possible other stuff in the future.
Bonus:
Also fixes a bug in DM that would crash VE when you selected to the end
and hit backspace.
Changes:
*.php
* Added links to files
aliens.html
* Added attributes to aliens to make them aliens again
ve.ce.AlienNode.js
* Moved shield and phantom functionality to ve.ce.ProtectedNode
ve.ce.AlienNode.js, ve.ce.MWReferenceListNode.js,
ve.ce.MWReferenceNode.js, ve.ce.MWTemplateNode.js
* Mixed in ve.ce.ProtectedNode
ve.ce.Node.css
* Reorganized styles and updated class names
* Added simple light blue hover with outline (using inset box shadow) for
protected nodes, same style as before for aliens
ve.ce.Surface.css
* Moved phantom styles to ve.ce.Node.css
ve.ce.BranchNode.js
* Moved call to setLive(false) to happen before detach() so that the
surface object is still available and events can be disconnected
ve.ce.BranchNode.js, ve.ce.Document.js, ve.ce.js, ve.ce.Surface.js, ve.ce.SurfaceObserver.js
* Adjusted CSS class names
ve.ce.Node.js
* Moved shield template to ve.ce.ProtectedNode
ve.ce.ProtectedNode.js
* New class, mix into another class to protect it from editing
ve.ce.RelocatableNode.js
* Renamed temporary surface property to relocatingSurface to avoid
confusion when debugging
ve.ce.Surface.js
* Moved phantom template to ve.ce.ProtectedNode
ve.dm.Transaction.js
* Fixed bug where most of the internal list was being deleted when the
end of the document was selected and the user pressed backspace
Change-Id: I2468b16e1ba6785ad298e38190e33493135719c3
2013-05-07 00:07:01 +00:00
|
|
|
// Mixin constructors
|
2013-06-17 20:50:47 +00:00
|
|
|
ve.ce.FocusableNode.call( this );
|
ve.ce.ProtectedNode
Objective:
Generalize the shield and phantom magic, so we can use it for pretty much
any node we like. Usually this will be used with generated content nodes,
but also with aliens (of course) and possible other stuff in the future.
Bonus:
Also fixes a bug in DM that would crash VE when you selected to the end
and hit backspace.
Changes:
*.php
* Added links to files
aliens.html
* Added attributes to aliens to make them aliens again
ve.ce.AlienNode.js
* Moved shield and phantom functionality to ve.ce.ProtectedNode
ve.ce.AlienNode.js, ve.ce.MWReferenceListNode.js,
ve.ce.MWReferenceNode.js, ve.ce.MWTemplateNode.js
* Mixed in ve.ce.ProtectedNode
ve.ce.Node.css
* Reorganized styles and updated class names
* Added simple light blue hover with outline (using inset box shadow) for
protected nodes, same style as before for aliens
ve.ce.Surface.css
* Moved phantom styles to ve.ce.Node.css
ve.ce.BranchNode.js
* Moved call to setLive(false) to happen before detach() so that the
surface object is still available and events can be disconnected
ve.ce.BranchNode.js, ve.ce.Document.js, ve.ce.js, ve.ce.Surface.js, ve.ce.SurfaceObserver.js
* Adjusted CSS class names
ve.ce.Node.js
* Moved shield template to ve.ce.ProtectedNode
ve.ce.ProtectedNode.js
* New class, mix into another class to protect it from editing
ve.ce.RelocatableNode.js
* Renamed temporary surface property to relocatingSurface to avoid
confusion when debugging
ve.ce.Surface.js
* Moved phantom template to ve.ce.ProtectedNode
ve.dm.Transaction.js
* Fixed bug where most of the internal list was being deleted when the
end of the document was selected and the user pressed backspace
Change-Id: I2468b16e1ba6785ad298e38190e33493135719c3
2013-05-07 00:07:01 +00:00
|
|
|
|
2013-07-02 19:06:56 +00:00
|
|
|
// Properties
|
|
|
|
this.internalList = null;
|
|
|
|
this.listNode = null;
|
|
|
|
|
2013-08-28 23:18:55 +00:00
|
|
|
// DOM changes
|
2015-04-29 16:17:28 +00:00
|
|
|
this.$element.addClass( 've-ce-mwReferencesListNode' );
|
|
|
|
this.$reflist = $( '<ol class="mw-references"></ol>' );
|
2015-04-09 23:47:15 +00:00
|
|
|
this.$refmsg = $( '<p>' )
|
2014-08-19 18:32:46 +00:00
|
|
|
.addClass( 've-ce-mwReferencesListNode-muted' );
|
2013-08-28 23:18:55 +00:00
|
|
|
|
2013-10-11 12:33:53 +00:00
|
|
|
// Events
|
2014-08-22 20:50:48 +00:00
|
|
|
this.model.connect( this, { attributeChange: 'onAttributeChange' } );
|
2013-10-11 12:33:53 +00:00
|
|
|
|
2013-08-28 23:18:55 +00:00
|
|
|
// Initialization
|
2013-06-03 20:22:35 +00:00
|
|
|
this.update();
|
2013-04-17 17:53:26 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
/* Inheritance */
|
|
|
|
|
2014-08-19 18:32:46 +00:00
|
|
|
OO.inheritClass( ve.ce.MWReferencesListNode, ve.ce.LeafNode );
|
2013-04-17 17:53:26 +00:00
|
|
|
|
2014-08-19 18:32:46 +00:00
|
|
|
OO.mixinClass( ve.ce.MWReferencesListNode, ve.ce.FocusableNode );
|
2013-06-17 20:50:47 +00:00
|
|
|
|
2013-04-17 17:53:26 +00:00
|
|
|
/* Static Properties */
|
|
|
|
|
2014-08-19 18:32:46 +00:00
|
|
|
ve.ce.MWReferencesListNode.static.name = 'mwReferencesList';
|
2013-04-17 17:53:26 +00:00
|
|
|
|
2014-08-19 18:32:46 +00:00
|
|
|
ve.ce.MWReferencesListNode.static.tagName = 'div';
|
2013-06-06 00:48:16 +00:00
|
|
|
|
2014-08-19 18:32:46 +00:00
|
|
|
ve.ce.MWReferencesListNode.static.primaryCommandName = 'referencesList';
|
2013-12-20 23:25:24 +00:00
|
|
|
|
2014-06-10 01:18:23 +00:00
|
|
|
/* Static Methods */
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @inheritdoc
|
|
|
|
*/
|
2014-08-19 18:32:46 +00:00
|
|
|
ve.ce.MWReferencesListNode.static.getDescription = function ( model ) {
|
2014-06-10 01:18:23 +00:00
|
|
|
return model.getAttribute( 'refGroup' );
|
|
|
|
};
|
|
|
|
|
2013-04-17 17:53:26 +00:00
|
|
|
/* Methods */
|
|
|
|
|
2013-07-02 19:06:56 +00:00
|
|
|
/**
|
|
|
|
* Handle setup events.
|
|
|
|
*
|
|
|
|
* @method
|
|
|
|
*/
|
2014-08-19 18:32:46 +00:00
|
|
|
ve.ce.MWReferencesListNode.prototype.onSetup = function () {
|
2013-07-02 19:06:56 +00:00
|
|
|
this.internalList = this.model.getDocument().getInternalList();
|
|
|
|
this.listNode = this.internalList.getListNode();
|
|
|
|
|
2014-08-22 20:50:48 +00:00
|
|
|
this.internalList.connect( this, { update: 'onInternalListUpdate' } );
|
|
|
|
this.listNode.connect( this, { update: 'onListNodeUpdate' } );
|
2013-07-02 19:06:56 +00:00
|
|
|
|
|
|
|
// Parent method
|
|
|
|
ve.ce.LeafNode.prototype.onSetup.call( this );
|
|
|
|
};
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Handle teardown events.
|
|
|
|
*
|
|
|
|
* @method
|
|
|
|
*/
|
2014-08-19 18:32:46 +00:00
|
|
|
ve.ce.MWReferencesListNode.prototype.onTeardown = function () {
|
2014-08-22 20:50:48 +00:00
|
|
|
this.internalList.disconnect( this, { update: 'onInternalListUpdate' } );
|
|
|
|
this.listNode.disconnect( this, { update: 'onListNodeUpdate' } );
|
2013-07-02 19:06:56 +00:00
|
|
|
|
|
|
|
this.internalList = null;
|
|
|
|
this.listNode = null;
|
|
|
|
|
|
|
|
// Parent method
|
|
|
|
ve.ce.LeafNode.prototype.onTeardown.call( this );
|
|
|
|
};
|
|
|
|
|
2013-06-03 20:22:35 +00:00
|
|
|
/**
|
|
|
|
* Handle the updating of the InternalList object.
|
|
|
|
*
|
|
|
|
* This will occur after a document transaction.
|
|
|
|
*
|
|
|
|
* @method
|
|
|
|
* @param {string[]} groupsChanged A list of groups which have changed in this transaction
|
|
|
|
*/
|
2014-08-19 18:32:46 +00:00
|
|
|
ve.ce.MWReferencesListNode.prototype.onInternalListUpdate = function ( groupsChanged ) {
|
2013-06-03 20:22:35 +00:00
|
|
|
// Only update if this group has been changed
|
2015-03-10 12:50:42 +00:00
|
|
|
if ( groupsChanged.indexOf( this.model.getAttribute( 'listGroup' ) ) !== -1 ) {
|
2013-06-03 20:22:35 +00:00
|
|
|
this.update();
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
2013-06-21 02:55:16 +00:00
|
|
|
/**
|
2013-10-11 12:33:53 +00:00
|
|
|
* Rerender when the 'listGroup' attribute changes in the model.
|
2013-06-21 02:55:16 +00:00
|
|
|
*
|
|
|
|
* @param {string} key Attribute key
|
|
|
|
* @param {string} from Old value
|
|
|
|
* @param {string} to New value
|
|
|
|
*/
|
2014-08-19 18:32:46 +00:00
|
|
|
ve.ce.MWReferencesListNode.prototype.onAttributeChange = function ( key ) {
|
2013-06-21 02:55:16 +00:00
|
|
|
if ( key === 'listGroup' ) {
|
|
|
|
this.update();
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
2013-06-03 20:22:35 +00:00
|
|
|
/**
|
|
|
|
* Handle the updating of the InternalListNode.
|
|
|
|
*
|
|
|
|
* This will occur after changes to any InternalItemNode.
|
|
|
|
*
|
|
|
|
* @method
|
|
|
|
*/
|
2014-08-19 18:32:46 +00:00
|
|
|
ve.ce.MWReferencesListNode.prototype.onListNodeUpdate = function () {
|
2013-06-03 20:22:35 +00:00
|
|
|
// When the list node updates we're not sure which list group the item
|
|
|
|
// belonged to so we always update
|
|
|
|
// TODO: Only re-render the reference which has been edited
|
|
|
|
this.update();
|
|
|
|
};
|
|
|
|
|
|
|
|
/**
|
2014-08-19 18:32:46 +00:00
|
|
|
* Update the references list.
|
2013-06-03 20:22:35 +00:00
|
|
|
*/
|
2014-08-19 18:32:46 +00:00
|
|
|
ve.ce.MWReferencesListNode.prototype.update = function () {
|
2015-04-29 16:17:28 +00:00
|
|
|
var i, j, n, iLen, jLen, index, firstNode, key, keyedNodes, modelNode, viewNode,
|
|
|
|
$li, $refSpan, $link,
|
2013-06-03 20:22:35 +00:00
|
|
|
internalList = this.model.getDocument().internalList,
|
2013-06-21 02:55:16 +00:00
|
|
|
refGroup = this.model.getAttribute( 'refGroup' ),
|
2013-06-03 20:22:35 +00:00
|
|
|
listGroup = this.model.getAttribute( 'listGroup' ),
|
|
|
|
nodes = internalList.getNodeGroup( listGroup );
|
|
|
|
|
2013-06-21 02:55:16 +00:00
|
|
|
this.$reflist.detach().empty();
|
|
|
|
this.$refmsg.detach();
|
|
|
|
|
2015-04-29 16:17:28 +00:00
|
|
|
if ( refGroup !== '' ) {
|
|
|
|
this.$reflist.attr( 'data-mw-group', refGroup );
|
|
|
|
} else {
|
|
|
|
this.$reflist.removeAttr( 'data-mw-group' );
|
|
|
|
}
|
|
|
|
|
2013-06-21 02:55:16 +00:00
|
|
|
if ( !nodes || !nodes.indexOrder.length ) {
|
2013-09-30 12:09:20 +00:00
|
|
|
if ( refGroup !== '' ) {
|
2014-08-19 18:32:46 +00:00
|
|
|
this.$refmsg.text( ve.msg( 'visualeditor-referenceslist-isempty', refGroup ) );
|
2013-09-30 12:09:20 +00:00
|
|
|
} else {
|
2014-08-19 18:32:46 +00:00
|
|
|
this.$refmsg.text( ve.msg( 'visualeditor-referenceslist-isempty-default' ) );
|
2013-09-30 12:09:20 +00:00
|
|
|
}
|
2013-11-01 19:45:59 +00:00
|
|
|
this.$element.append( this.$refmsg );
|
2013-06-21 02:55:16 +00:00
|
|
|
} else {
|
2015-05-06 18:09:45 +00:00
|
|
|
n = 0;
|
2013-06-07 16:58:34 +00:00
|
|
|
for ( i = 0, iLen = nodes.indexOrder.length; i < iLen; i++ ) {
|
|
|
|
index = nodes.indexOrder[i];
|
|
|
|
firstNode = nodes.firstNodes[index];
|
2013-06-03 20:22:35 +00:00
|
|
|
|
2013-06-07 16:58:34 +00:00
|
|
|
key = internalList.keys[index];
|
2013-08-27 20:51:48 +00:00
|
|
|
keyedNodes = nodes.keyedNodes[key];
|
2013-07-25 17:11:50 +00:00
|
|
|
/*jshint loopfunc:true */
|
|
|
|
keyedNodes = keyedNodes.filter( function ( node ) {
|
2015-05-06 18:09:45 +00:00
|
|
|
// Exclude placeholder references
|
|
|
|
if ( node.getAttribute( 'placeholder' ) ) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
// Exclude references defined inside the references list node
|
2013-07-25 17:11:50 +00:00
|
|
|
while ( ( node = node.parent ) && node !== null ) {
|
2014-08-19 18:32:46 +00:00
|
|
|
if ( node instanceof ve.dm.MWReferencesListNode ) {
|
2013-07-25 17:11:50 +00:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return true;
|
|
|
|
} );
|
|
|
|
|
2013-08-27 20:51:48 +00:00
|
|
|
if ( !keyedNodes.length ) {
|
2013-07-25 17:11:50 +00:00
|
|
|
continue;
|
|
|
|
}
|
2015-05-06 18:09:45 +00:00
|
|
|
// Only increment counter for non-empty groups
|
|
|
|
n++;
|
2013-07-25 17:11:50 +00:00
|
|
|
|
2015-04-09 23:47:15 +00:00
|
|
|
$li = $( '<li>' );
|
2013-07-25 17:11:50 +00:00
|
|
|
|
|
|
|
if ( keyedNodes.length > 1 ) {
|
2015-04-29 16:17:28 +00:00
|
|
|
$refSpan = $( '<span rel="mw:referencedBy">' );
|
2013-07-25 17:11:50 +00:00
|
|
|
for ( j = 0, jLen = keyedNodes.length; j < jLen; j++ ) {
|
2015-04-29 16:17:28 +00:00
|
|
|
$link = $( '<a>' ).append(
|
|
|
|
$( '<span class="mw-linkback-text">' )
|
|
|
|
.text( ( j + 1 ) + ' ' )
|
|
|
|
);
|
|
|
|
if ( refGroup !== '' ) {
|
|
|
|
$link.attr( 'data-mw-group', refGroup );
|
|
|
|
}
|
|
|
|
$refSpan.append( $link );
|
|
|
|
}
|
|
|
|
$li.append( $refSpan );
|
|
|
|
} else {
|
|
|
|
$link = $( '<a rel="mw:referencedBy">' ).append(
|
|
|
|
$( '<span class="mw-linkback-text">' ).text( '↑ ' )
|
|
|
|
);
|
|
|
|
if ( refGroup !== '' ) {
|
|
|
|
$link.attr( 'data-mw-group', refGroup );
|
2013-06-03 20:22:35 +00:00
|
|
|
}
|
2015-04-29 16:17:28 +00:00
|
|
|
$li.append( $link );
|
2013-06-03 20:22:35 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// Generate reference HTML from first item in key
|
2013-06-13 08:30:13 +00:00
|
|
|
modelNode = internalList.getItemNode( firstNode.getAttribute( 'listIndex' ) );
|
2013-12-12 23:02:10 +00:00
|
|
|
if ( modelNode && modelNode.length ) {
|
2013-06-13 08:30:13 +00:00
|
|
|
viewNode = new ve.ce.InternalItemNode( modelNode );
|
|
|
|
// HACK: PHP parser doesn't wrap single lines in a paragraph
|
Ultra-mega-hyper-citation editing on crack
Objectives:
* Allow users on-wiki to create tools and dialogs for citation templates
of their choosing
* Allow editing of citation templates directly, without having to go
through the reference dialog
* Provide citation template tools within reference editing that use the
same titles and icons as the citation tools do, but don't wrap the
inserted content in a ref tag
Changes:
* Reference list was cloning the DOM element it was inserting into its
view before the generated content node could finish rendering, so it
never ended up showing the finished rendering in the reference list
* Documenting hack about use of reference list node's destroy method,
and how we are depending on destroy not canceling generated content
rendering
* Introduced reference model
* Added saving/updating method to transclusion model
* Added getPartsList method to dm transclusion node, which caches the
result and invalidates the cache on update
* Added citation dialog, which extends transclusion dialog
* Added cite group to toolbars, cite-template in reference dialog toolbar
* Factored out getting the node to edit and saving changes procedures in
transclusion dialog so they could be extended in citation dialog
* Updated uses of autoAdd as per changes in oojs-ui (Ic353f91)
* Renamed MWDialogTool file since there was only one tool in it
* Expanded TransclusionDialogTool file out since there is now more logic
to it
* Switched to using ve.dm.MWReferenceModel instead of plain objects in
reference search widget
Configuration:
If you add to MediaWiki:Visualeditor-cite-tool-definition.json the
following code you will magically be presented with a delightful array
of citation options:
[
{ "name": "web", "icon": "ref-cite-web", "template": "Cite web" },
{ "name": "book", "icon": "ref-cite-book", "template": "Cite book" },
{ "name": "news", "icon": "ref-cite-news", "template": "Cite news" },
{ "name": "journal", "icon": "ref-cite-journal", "template": "Cite journal" }
]
...or...
[
{
"name": "any-name",
"icon": "any-ooui-icon",
"template": "Any template",
"title": "Any title text"
}
]
The title text is derived either from the title property or from the name
property by pre-pending the string 'visualeditor-cite-tool-name-' to
generate a message key. Titles for 'web', 'book', 'news' and 'journal' are
provided. The icon is a normal oo-ui-icon name, and more icons can be
added, as usual, by adding a class called .oo-ui-icon-{icon name} to
MediaWiki:Common.css. 'ref-cite-web', 'ref-cite-book', 'ref-cite-news'
and 'ref-cite-journal' are provided. The template name is simply the name
of the template without its namespace prefix.
Depends on Ic353f91 in oojs-ui
Bug: 50110
Bug: 50768
Change-Id: Id401d973b8d5fe2faec481cc777c17a24fd19dd4
2014-03-21 18:56:46 +00:00
|
|
|
if (
|
|
|
|
viewNode.$element.children().length === 1 &&
|
|
|
|
viewNode.$element.children( 'p' ).length === 1
|
|
|
|
) {
|
2013-06-13 08:30:13 +00:00
|
|
|
// unwrap inner
|
Ultra-mega-hyper-citation editing on crack
Objectives:
* Allow users on-wiki to create tools and dialogs for citation templates
of their choosing
* Allow editing of citation templates directly, without having to go
through the reference dialog
* Provide citation template tools within reference editing that use the
same titles and icons as the citation tools do, but don't wrap the
inserted content in a ref tag
Changes:
* Reference list was cloning the DOM element it was inserting into its
view before the generated content node could finish rendering, so it
never ended up showing the finished rendering in the reference list
* Documenting hack about use of reference list node's destroy method,
and how we are depending on destroy not canceling generated content
rendering
* Introduced reference model
* Added saving/updating method to transclusion model
* Added getPartsList method to dm transclusion node, which caches the
result and invalidates the cache on update
* Added citation dialog, which extends transclusion dialog
* Added cite group to toolbars, cite-template in reference dialog toolbar
* Factored out getting the node to edit and saving changes procedures in
transclusion dialog so they could be extended in citation dialog
* Updated uses of autoAdd as per changes in oojs-ui (Ic353f91)
* Renamed MWDialogTool file since there was only one tool in it
* Expanded TransclusionDialogTool file out since there is now more logic
to it
* Switched to using ve.dm.MWReferenceModel instead of plain objects in
reference search widget
Configuration:
If you add to MediaWiki:Visualeditor-cite-tool-definition.json the
following code you will magically be presented with a delightful array
of citation options:
[
{ "name": "web", "icon": "ref-cite-web", "template": "Cite web" },
{ "name": "book", "icon": "ref-cite-book", "template": "Cite book" },
{ "name": "news", "icon": "ref-cite-news", "template": "Cite news" },
{ "name": "journal", "icon": "ref-cite-journal", "template": "Cite journal" }
]
...or...
[
{
"name": "any-name",
"icon": "any-ooui-icon",
"template": "Any template",
"title": "Any title text"
}
]
The title text is derived either from the title property or from the name
property by pre-pending the string 'visualeditor-cite-tool-name-' to
generate a message key. Titles for 'web', 'book', 'news' and 'journal' are
provided. The icon is a normal oo-ui-icon name, and more icons can be
added, as usual, by adding a class called .oo-ui-icon-{icon name} to
MediaWiki:Common.css. 'ref-cite-web', 'ref-cite-book', 'ref-cite-news'
and 'ref-cite-journal' are provided. The template name is simply the name
of the template without its namespace prefix.
Depends on Ic353f91 in oojs-ui
Bug: 50110
Bug: 50768
Change-Id: Id401d973b8d5fe2faec481cc777c17a24fd19dd4
2014-03-21 18:56:46 +00:00
|
|
|
viewNode.$element.children().replaceWith(
|
|
|
|
viewNode.$element.children().contents()
|
|
|
|
);
|
2013-06-13 08:30:13 +00:00
|
|
|
}
|
|
|
|
$li.append(
|
2015-04-09 23:47:15 +00:00
|
|
|
$( '<span>' )
|
2013-06-13 08:30:13 +00:00
|
|
|
.addClass( 'reference-text' )
|
2015-01-23 23:08:50 +00:00
|
|
|
.append( viewNode.$element )
|
2013-06-13 08:30:13 +00:00
|
|
|
);
|
Ultra-mega-hyper-citation editing on crack
Objectives:
* Allow users on-wiki to create tools and dialogs for citation templates
of their choosing
* Allow editing of citation templates directly, without having to go
through the reference dialog
* Provide citation template tools within reference editing that use the
same titles and icons as the citation tools do, but don't wrap the
inserted content in a ref tag
Changes:
* Reference list was cloning the DOM element it was inserting into its
view before the generated content node could finish rendering, so it
never ended up showing the finished rendering in the reference list
* Documenting hack about use of reference list node's destroy method,
and how we are depending on destroy not canceling generated content
rendering
* Introduced reference model
* Added saving/updating method to transclusion model
* Added getPartsList method to dm transclusion node, which caches the
result and invalidates the cache on update
* Added citation dialog, which extends transclusion dialog
* Added cite group to toolbars, cite-template in reference dialog toolbar
* Factored out getting the node to edit and saving changes procedures in
transclusion dialog so they could be extended in citation dialog
* Updated uses of autoAdd as per changes in oojs-ui (Ic353f91)
* Renamed MWDialogTool file since there was only one tool in it
* Expanded TransclusionDialogTool file out since there is now more logic
to it
* Switched to using ve.dm.MWReferenceModel instead of plain objects in
reference search widget
Configuration:
If you add to MediaWiki:Visualeditor-cite-tool-definition.json the
following code you will magically be presented with a delightful array
of citation options:
[
{ "name": "web", "icon": "ref-cite-web", "template": "Cite web" },
{ "name": "book", "icon": "ref-cite-book", "template": "Cite book" },
{ "name": "news", "icon": "ref-cite-news", "template": "Cite news" },
{ "name": "journal", "icon": "ref-cite-journal", "template": "Cite journal" }
]
...or...
[
{
"name": "any-name",
"icon": "any-ooui-icon",
"template": "Any template",
"title": "Any title text"
}
]
The title text is derived either from the title property or from the name
property by pre-pending the string 'visualeditor-cite-tool-name-' to
generate a message key. Titles for 'web', 'book', 'news' and 'journal' are
provided. The icon is a normal oo-ui-icon name, and more icons can be
added, as usual, by adding a class called .oo-ui-icon-{icon name} to
MediaWiki:Common.css. 'ref-cite-web', 'ref-cite-book', 'ref-cite-news'
and 'ref-cite-journal' are provided. The template name is simply the name
of the template without its namespace prefix.
Depends on Ic353f91 in oojs-ui
Bug: 50110
Bug: 50768
Change-Id: Id401d973b8d5fe2faec481cc777c17a24fd19dd4
2014-03-21 18:56:46 +00:00
|
|
|
// HACK: See bug 62682 - We happen to know that destroy doesn't abort async
|
|
|
|
// rendering for generated content nodes, but we really can't gaurantee that in the
|
|
|
|
// future - if you are here, debugging, because something isn't rendering properly,
|
|
|
|
// it's likely that something has changed and these assumptions are no longer valid
|
2013-06-13 08:30:13 +00:00
|
|
|
viewNode.destroy();
|
|
|
|
} else {
|
|
|
|
$li.append(
|
2015-04-09 23:47:15 +00:00
|
|
|
$( '<span>' )
|
2014-08-19 18:32:46 +00:00
|
|
|
.addClass( 've-ce-mwReferencesListNode-muted' )
|
|
|
|
.text( ve.msg( 'visualeditor-referenceslist-missingref' ) )
|
2013-06-13 08:30:13 +00:00
|
|
|
);
|
2013-06-07 16:58:34 +00:00
|
|
|
}
|
2013-06-13 08:30:13 +00:00
|
|
|
|
2013-06-06 00:48:16 +00:00
|
|
|
this.$reflist.append( $li );
|
2013-06-03 20:22:35 +00:00
|
|
|
}
|
2013-11-01 19:45:59 +00:00
|
|
|
this.$element.append( this.$reflist );
|
2013-06-21 02:55:16 +00:00
|
|
|
}
|
2013-04-17 17:53:26 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
/* Registration */
|
|
|
|
|
2014-08-19 18:32:46 +00:00
|
|
|
ve.ce.nodeFactory.register( ve.ce.MWReferencesListNode );
|