2013-04-25 00:47:17 +00:00
|
|
|
/*!
|
|
|
|
* VisualEditor ContentEditable ListItemNode class.
|
|
|
|
*
|
|
|
|
* @copyright 2011-2013 VisualEditor Team and others; see AUTHORS.txt
|
|
|
|
* @license The MIT License (MIT); see LICENSE.txt
|
|
|
|
*/
|
|
|
|
|
2013-05-23 05:47:11 +00:00
|
|
|
/*global mw */
|
|
|
|
|
2013-04-25 00:47:17 +00:00
|
|
|
/**
|
|
|
|
* ContentEditable image caption item node.
|
|
|
|
*
|
|
|
|
* @class
|
|
|
|
* @extends ve.ce.BranchNode
|
|
|
|
* @constructor
|
|
|
|
* @param {ve.dm.MWImageCaptionNode} model Model to observe
|
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
|
|
|
* @param {Object} [config] Config options
|
2013-04-25 00:47:17 +00:00
|
|
|
*/
|
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.MWImageCaptionNode = function VeCeMWImageCaptionNode( model, config ) {
|
2013-04-25 00:47:17 +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.BranchNode.call( this, model, config );
|
2013-05-23 05:47:11 +00:00
|
|
|
|
|
|
|
// DOM changes
|
|
|
|
this.$.addClass( 'thumbcaption' );
|
2013-04-25 00:47:17 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
/* Inheritance */
|
|
|
|
|
|
|
|
ve.inheritClass( ve.ce.MWImageCaptionNode, ve.ce.BranchNode );
|
|
|
|
|
|
|
|
/* Static Properties */
|
|
|
|
|
2013-05-28 11:31:41 +00:00
|
|
|
ve.ce.MWImageCaptionNode.static.name = 'mwImageCaption';
|
2013-04-25 00:47:17 +00:00
|
|
|
|
2013-05-23 05:47:11 +00:00
|
|
|
ve.ce.MWImageCaptionNode.static.tagName = 'div';
|
|
|
|
|
|
|
|
/* Methods */
|
|
|
|
|
|
|
|
/**
|
2013-06-05 00:41:35 +00:00
|
|
|
* TODO: Magnify should appear/disappear based on the changes/updates to the parent (switching to
|
|
|
|
* and from thumb or frame).
|
2013-05-23 05:47:11 +00:00
|
|
|
*/
|
|
|
|
ve.ce.MWImageCaptionNode.prototype.onSplice = function () {
|
2013-06-05 00:41:35 +00:00
|
|
|
var parentType = this.model.getParent().getAttribute( 'type' );
|
|
|
|
|
|
|
|
if ( parentType === 'thumb' ) {
|
|
|
|
if ( this.$magnify ) {
|
|
|
|
this.$magnify.detach();
|
|
|
|
} else {
|
|
|
|
this.buildMagnify();
|
|
|
|
}
|
2013-05-23 05:47:11 +00:00
|
|
|
}
|
|
|
|
|
2013-06-21 02:47:10 +00:00
|
|
|
// Parent method
|
2013-05-23 05:47:11 +00:00
|
|
|
ve.ce.BranchNode.prototype.onSplice.apply( this, arguments );
|
|
|
|
|
2013-06-05 00:41:35 +00:00
|
|
|
if ( parentType === 'thumb' ) {
|
|
|
|
this.$magnify.prependTo( this.$ );
|
|
|
|
}
|
2013-05-23 05:47:11 +00:00
|
|
|
};
|
|
|
|
|
2013-07-31 22:53:29 +00:00
|
|
|
/** */
|
2013-06-06 12:02:16 +00:00
|
|
|
ve.ce.MWImageCaptionNode.prototype.buildMagnify = function () {
|
2013-05-23 05:47:11 +00:00
|
|
|
this.$magnify = $( '<div>' )
|
|
|
|
.addClass( 'magnify' );
|
|
|
|
this.$a = $( '<a>' )
|
|
|
|
.addClass( 'internal' )
|
|
|
|
// It's inside a protected node, so user can't see href/title anyways.
|
2013-06-24 17:51:59 +00:00
|
|
|
//.attr( 'href', '/wiki/File:Wiki.png' )
|
2013-05-23 05:47:11 +00:00
|
|
|
//.attr( 'title', 'Enlarge' )
|
|
|
|
.appendTo( this.$magnify );
|
|
|
|
this.$img = $( '<img>' )
|
|
|
|
.attr( 'src', mw.config.get( 'wgVisualEditor' ).magnifyClipIconURL )
|
|
|
|
.attr( 'width', 15 )
|
|
|
|
.attr( 'height', 11 )
|
|
|
|
//.attr( 'alt', '' )
|
|
|
|
.appendTo( this.$a );
|
|
|
|
};
|
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
|
|
|
|
2013-04-25 00:47:17 +00:00
|
|
|
/* Registration */
|
|
|
|
|
2013-05-28 11:31:41 +00:00
|
|
|
ve.ce.nodeFactory.register( ve.ce.MWImageCaptionNode );
|