2013-04-15 17:54:49 +00:00
|
|
|
/*!
|
|
|
|
* VisualEditor ContentEditable RelocatableNode class.
|
|
|
|
*
|
|
|
|
* @copyright 2011-2013 VisualEditor Team and others; see AUTHORS.txt
|
|
|
|
* @license The MIT License (MIT); see LICENSE.txt
|
|
|
|
*/
|
|
|
|
|
|
|
|
/**
|
|
|
|
* ContentEditable relocatable node.
|
|
|
|
*
|
2013-06-18 05:04:56 +00:00
|
|
|
* Requires that the node also is Focusable
|
|
|
|
*
|
2013-04-15 17:54:49 +00:00
|
|
|
* @class
|
|
|
|
* @abstract
|
|
|
|
*
|
|
|
|
* @constructor
|
2013-08-19 15:22:29 +00:00
|
|
|
* @param {jQuery} [$relocatable=this.$] Element which can be relocated
|
2013-04-15 17:54:49 +00:00
|
|
|
*/
|
2013-08-19 15:22:29 +00:00
|
|
|
ve.ce.RelocatableNode = function VeCeRelocatableNode( $relocatable ) {
|
2013-04-15 17:54:49 +00:00
|
|
|
// Properties
|
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
|
|
|
this.relocatingSurface = null;
|
2013-08-19 15:22:29 +00:00
|
|
|
this.$relocatable = $relocatable || this.$;
|
2013-06-24 18:01:14 +00:00
|
|
|
this.$relocatableMarker = this.$$( '<img>' );
|
2013-04-15 17:54:49 +00:00
|
|
|
|
|
|
|
// Events
|
2013-06-18 05:04:56 +00:00
|
|
|
this.connect( this, {
|
|
|
|
'focus': 'onRelocatableFocus',
|
|
|
|
'blur': 'onRelocatableBlur',
|
2013-07-01 20:23:51 +00:00
|
|
|
'resize': 'onRelocatableResize',
|
|
|
|
'live': 'onRelocatableLive'
|
2013-04-15 17:54:49 +00:00
|
|
|
} );
|
2013-06-18 05:04:56 +00:00
|
|
|
|
|
|
|
// Initialization
|
|
|
|
this.$relocatableMarker
|
|
|
|
.addClass( 've-ce-relocatableNode-marker' )
|
2013-08-31 00:51:20 +00:00
|
|
|
.attr( 'src', 'data:image/gif;base64,R0lGODlhAQABAIAAAAAAAP///yH5BAEAAAAALAAAAAABAAEAAAIBRAA7' )
|
2013-06-18 05:04:56 +00:00
|
|
|
.on( {
|
|
|
|
'dragstart': ve.bind( this.onRelocatableDragStart, this ),
|
|
|
|
'dragend': ve.bind( this.onRelocatableDragEnd, this )
|
|
|
|
} );
|
2013-04-15 17:54:49 +00:00
|
|
|
};
|
|
|
|
|
2013-06-18 05:04:56 +00:00
|
|
|
/* Static Properties */
|
|
|
|
|
2013-04-15 17:54:49 +00:00
|
|
|
/* Methods */
|
|
|
|
|
2013-07-01 20:23:51 +00:00
|
|
|
/**
|
|
|
|
* Handle node live.
|
|
|
|
*
|
|
|
|
* @method
|
|
|
|
*/
|
|
|
|
ve.ce.RelocatableNode.prototype.onRelocatableLive = function () {
|
|
|
|
var surfaceModel = this.root.getSurface().getModel();
|
|
|
|
|
|
|
|
if ( this.live ) {
|
|
|
|
surfaceModel.connect( this, { 'history': 'setRelocatableMarkerSizeAndPosition' } );
|
|
|
|
} else {
|
|
|
|
surfaceModel.disconnect( this, { 'history': 'setRelocatableMarkerSizeAndPosition' } );
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
2013-06-18 05:04:56 +00:00
|
|
|
/**
|
|
|
|
* Handle node focus.
|
|
|
|
*
|
|
|
|
* @method
|
|
|
|
*/
|
|
|
|
ve.ce.RelocatableNode.prototype.onRelocatableFocus = function () {
|
|
|
|
this.setRelocatableMarkerSizeAndPosition();
|
2013-06-27 18:24:26 +00:00
|
|
|
this.$relocatableMarker.appendTo( this.root.getSurface().getSurface().$localOverlayControls );
|
2013-06-18 05:04:56 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Handle node blur.
|
|
|
|
*
|
|
|
|
* @method
|
|
|
|
*/
|
|
|
|
ve.ce.RelocatableNode.prototype.onRelocatableBlur = function () {
|
|
|
|
this.$relocatableMarker.detach();
|
|
|
|
};
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Handle node resize.
|
|
|
|
*
|
|
|
|
* @method
|
|
|
|
*/
|
|
|
|
ve.ce.RelocatableNode.prototype.onRelocatableResize = function () {
|
|
|
|
this.setRelocatableMarkerSizeAndPosition();
|
|
|
|
};
|
|
|
|
|
2013-04-15 17:54:49 +00:00
|
|
|
/**
|
|
|
|
* Handle element drag start.
|
|
|
|
*
|
|
|
|
* @method
|
|
|
|
*/
|
|
|
|
ve.ce.RelocatableNode.prototype.onRelocatableDragStart = function () {
|
|
|
|
// Store a copy of the surface, when dragend occurs the node will be detached
|
2013-07-01 20:23:51 +00:00
|
|
|
this.relocatingSurface = this.root.getSurface();
|
2013-04-15 17:54:49 +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
|
|
|
if ( this.relocatingSurface ) {
|
2013-04-15 17:54:49 +00:00
|
|
|
// Allow dragging this node in the surface
|
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
|
|
|
this.relocatingSurface.startRelocation( this );
|
2013-04-15 17:54:49 +00:00
|
|
|
}
|
2013-06-18 05:04:56 +00:00
|
|
|
this.$relocatableMarker.addClass( 'relocating' );
|
|
|
|
|
|
|
|
setTimeout( ve.bind( function () {
|
|
|
|
this.$relocatableMarker.css( { 'top': -10000, 'left': -10000 } );
|
|
|
|
}, this ), 0 );
|
2013-04-15 17:54:49 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Handle element drag end.
|
|
|
|
*
|
|
|
|
* @method
|
|
|
|
*/
|
|
|
|
ve.ce.RelocatableNode.prototype.onRelocatableDragEnd = function () {
|
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
|
|
|
if ( this.relocatingSurface ) {
|
|
|
|
this.relocatingSurface.endRelocation();
|
|
|
|
this.relocatingSurface = null;
|
2013-04-15 17:54:49 +00:00
|
|
|
}
|
2013-06-18 05:04:56 +00:00
|
|
|
this.$relocatableMarker.removeClass( 'relocating' );
|
|
|
|
};
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Set the correct size and position of the relocatable marker.
|
|
|
|
*
|
|
|
|
* @method
|
|
|
|
*/
|
|
|
|
ve.ce.RelocatableNode.prototype.setRelocatableMarkerSizeAndPosition = function () {
|
2013-06-27 17:25:28 +00:00
|
|
|
var offset = ve.Element.getRelativePosition(
|
2013-08-19 15:22:29 +00:00
|
|
|
this.$relocatable, this.getRoot().getSurface().getSurface().$
|
2013-06-27 17:25:28 +00:00
|
|
|
);
|
|
|
|
|
2013-06-18 05:04:56 +00:00
|
|
|
this.$relocatableMarker.css( {
|
2013-08-19 15:22:29 +00:00
|
|
|
'height': this.$relocatable.height(),
|
|
|
|
'width': this.$relocatable.width(),
|
2013-06-27 17:25:28 +00:00
|
|
|
'top': offset.top,
|
|
|
|
'left': offset.left
|
2013-06-18 05:04:56 +00:00
|
|
|
} );
|
2013-04-15 17:54:49 +00:00
|
|
|
};
|