2012-02-07 19:13:19 +00:00
|
|
|
/**
|
2012-03-06 22:39:43 +00:00
|
|
|
* Creates an ve.ce.Surface object.
|
2012-03-07 19:33:00 +00:00
|
|
|
*
|
2012-02-07 19:13:19 +00:00
|
|
|
* @class
|
|
|
|
* @constructor
|
|
|
|
* @param {jQuery} $container DOM Container to render surface into
|
|
|
|
* @param {ve.dm.Surface} model Surface model to view
|
|
|
|
*/
|
2012-03-06 22:39:43 +00:00
|
|
|
ve.ce.Surface = function( $container, model ) {
|
2012-02-07 19:13:19 +00:00
|
|
|
// Inheritance
|
|
|
|
ve.EventEmitter.call( this );
|
|
|
|
|
|
|
|
// References for use in closures
|
|
|
|
var _this = this,
|
|
|
|
$document = $( document ),
|
|
|
|
$window = $( window );
|
|
|
|
|
|
|
|
// Properties
|
|
|
|
this.model = model;
|
2012-03-12 21:50:22 +00:00
|
|
|
this.currentSelection = new ve.Range();
|
2012-03-06 22:39:43 +00:00
|
|
|
this.documentView = new ve.ce.DocumentNode( this.model.getDocument(), this );
|
2012-02-07 19:13:19 +00:00
|
|
|
this.contextView = null;
|
|
|
|
this.$ = $container
|
|
|
|
.addClass( 'es-surfaceView' )
|
|
|
|
.append( this.documentView.$ );
|
2012-03-07 19:37:17 +00:00
|
|
|
this.insertionAnnotations = [];
|
2012-02-07 19:13:19 +00:00
|
|
|
this.emitUpdateTimeout = undefined;
|
2012-03-01 22:27:23 +00:00
|
|
|
this.clipboard = {};
|
2012-03-07 08:13:12 +00:00
|
|
|
this.autoRender = false;
|
2012-02-07 19:13:19 +00:00
|
|
|
|
2012-03-14 00:04:24 +00:00
|
|
|
// Content Observer
|
|
|
|
this.surfaceObserver = new ve.ce.SurfaceObserver( this.documentView );
|
|
|
|
this.surfaceObserver.on( 'cursor', function( info ) {
|
|
|
|
//console.log("cursor", info);
|
|
|
|
} )
|
|
|
|
|
2012-02-07 19:13:19 +00:00
|
|
|
// Events
|
2012-02-13 22:45:18 +00:00
|
|
|
this.documentView.$.bind( {
|
|
|
|
'focus': function( e ) {
|
2012-03-14 00:04:24 +00:00
|
|
|
_this.surfaceObserver.updateCursor( true );
|
2012-03-01 01:28:39 +00:00
|
|
|
_this.documentOnFocus();
|
2012-02-13 22:45:18 +00:00
|
|
|
$document.unbind( '.ce-surfaceView' );
|
|
|
|
$document.bind( {
|
|
|
|
'keydown.ce-surfaceView': function( e ) {
|
2012-03-14 00:04:24 +00:00
|
|
|
_this.surfaceObserver.updateCursor( true );
|
2012-03-02 00:10:08 +00:00
|
|
|
return _this.onKeyDown( e );
|
2012-03-14 00:04:24 +00:00
|
|
|
},
|
|
|
|
'mousemove.ce-surfaceView': function( e ) {
|
|
|
|
_this.surfaceObserver.updateCursor( true );
|
2012-03-01 22:14:14 +00:00
|
|
|
}
|
2012-02-13 22:45:18 +00:00
|
|
|
} );
|
|
|
|
},
|
|
|
|
'blur': function( e ) {
|
2012-03-14 00:04:24 +00:00
|
|
|
_this.surfaceObserver.updateCursor( true );
|
2012-03-01 01:28:39 +00:00
|
|
|
_this.documentOnBlur();
|
2012-02-13 22:45:18 +00:00
|
|
|
$document.unbind( '.ce-surfaceView' );
|
|
|
|
}
|
|
|
|
} );
|
|
|
|
|
2012-03-02 01:12:18 +00:00
|
|
|
this.$
|
|
|
|
.on( 'cut copy', function( e ) {
|
2012-03-06 23:51:31 +00:00
|
|
|
_this.onCutCopy( e );
|
|
|
|
} )
|
2012-03-02 01:12:18 +00:00
|
|
|
.on( 'paste', function( e ) {
|
2012-03-06 23:51:31 +00:00
|
|
|
_this.onPaste( e );
|
|
|
|
} )
|
2012-03-02 01:12:18 +00:00
|
|
|
.on( 'mousedown', function( e ) {
|
2012-03-14 00:04:24 +00:00
|
|
|
_this.surfaceObserver.updateCursor( true );
|
|
|
|
return _this.onMouseDown( e );
|
2012-03-02 01:12:18 +00:00
|
|
|
} )
|
|
|
|
.on( 'compositionstart', function( e ) {
|
|
|
|
console.log('comp start');
|
|
|
|
_this.onCompositionStart( e );
|
|
|
|
} )
|
|
|
|
.on( 'compositionend', function( e ) {
|
|
|
|
console.log('comp end');
|
|
|
|
_this.onCompositionEnd( e );
|
|
|
|
} )
|
|
|
|
.on('dragover drop', function( e ) {
|
|
|
|
e.preventDefault();
|
2012-03-06 23:51:31 +00:00
|
|
|
} );
|
2012-02-13 22:45:18 +00:00
|
|
|
|
2012-03-01 01:28:39 +00:00
|
|
|
// Initialization
|
|
|
|
this.documentView.renderContent();
|
|
|
|
|
|
|
|
this.poll = {
|
2012-03-06 23:51:31 +00:00
|
|
|
'interval': null,
|
|
|
|
'frequency': 75,
|
|
|
|
'node': null,
|
|
|
|
'prevText': null,
|
|
|
|
'prevHash': null,
|
|
|
|
'prevOffset': null,
|
|
|
|
'compositionStart': null,
|
|
|
|
'compositionEnd': null
|
2012-03-01 01:28:39 +00:00
|
|
|
};
|
2012-03-12 23:06:47 +00:00
|
|
|
|
|
|
|
//Prevent native contentedtiable tools
|
|
|
|
try {
|
|
|
|
document.execCommand("enableInlineTableEditing", false, false);
|
|
|
|
document.execCommand("enableObjectResizing", false, false);
|
|
|
|
} catch(e) {
|
|
|
|
}
|
2012-03-12 21:50:22 +00:00
|
|
|
|
|
|
|
this.model.on( 'select', function( selection ) {
|
|
|
|
// Keep a copy of the current selection on hand
|
|
|
|
_this.currentSelection = selection.clone();
|
|
|
|
// Respond to selection changes
|
|
|
|
_this.updateSelection();
|
|
|
|
if ( selection.getLength() ) {
|
|
|
|
_this.clearInsertionAnnotations();
|
|
|
|
} else {
|
|
|
|
_this.loadInsertionAnnotations();
|
|
|
|
}
|
|
|
|
} );
|
2012-03-01 01:28:39 +00:00
|
|
|
};
|
2012-02-08 06:28:38 +00:00
|
|
|
|
2012-03-01 01:28:39 +00:00
|
|
|
/* Methods */
|
2012-02-08 02:12:21 +00:00
|
|
|
|
2012-03-06 22:39:43 +00:00
|
|
|
ve.ce.Surface.prototype.annotate = function( method, annotation ) {
|
2012-03-07 21:37:39 +00:00
|
|
|
var range = this.getSelectionRange(),
|
2012-03-07 21:06:07 +00:00
|
|
|
_this = this;
|
|
|
|
|
2012-03-05 22:08:35 +00:00
|
|
|
if ( method === 'toggle' ) {
|
|
|
|
var annotations = this.getAnnotations();
|
|
|
|
if ( ve.dm.DocumentNode.getIndexOfAnnotation( annotations.full, annotation ) !== -1 ) {
|
|
|
|
method = 'clear';
|
|
|
|
} else {
|
|
|
|
method = 'set';
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if ( range.getLength() ) {
|
|
|
|
var tx = this.model.getDocument().prepareContentAnnotation(
|
|
|
|
range, method, annotation
|
|
|
|
);
|
2012-03-07 21:06:07 +00:00
|
|
|
|
|
|
|
// transact with autoRender
|
2012-03-07 19:33:00 +00:00
|
|
|
this.autoRender = true;
|
2012-03-05 22:08:35 +00:00
|
|
|
this.model.transact( tx );
|
2012-03-07 08:13:12 +00:00
|
|
|
this.autoRender = false;
|
2012-03-07 21:06:07 +00:00
|
|
|
|
|
|
|
this.clearPollData();
|
|
|
|
|
2012-03-07 23:35:38 +00:00
|
|
|
_this.showSelection( range );
|
2012-03-05 22:08:35 +00:00
|
|
|
} else {
|
|
|
|
if ( method === 'set' ) {
|
|
|
|
this.addInsertionAnnotation( annotation );
|
|
|
|
} else if ( method === 'clear' ) {
|
|
|
|
this.removeInsertionAnnotation( annotation );
|
|
|
|
}
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
2012-03-07 19:37:17 +00:00
|
|
|
ve.ce.Surface.prototype.getAnnotations = function() {
|
2012-03-12 20:39:08 +00:00
|
|
|
return this.getSelectionRange().getLength() ?
|
|
|
|
this.model.getDocument().getAnnotationsFromRange( this.getSelectionRange() ) :
|
2012-03-07 19:37:17 +00:00
|
|
|
{
|
|
|
|
'full': this.insertionAnnotations,
|
|
|
|
'partial': [],
|
|
|
|
'all': this.insertionAnnotations
|
|
|
|
};
|
|
|
|
};
|
|
|
|
|
|
|
|
ve.ce.Surface.prototype.getInsertionAnnotations = function() {
|
|
|
|
return this.insertionAnnotations;
|
|
|
|
};
|
|
|
|
|
|
|
|
ve.ce.Surface.prototype.addInsertionAnnotation = function( annotation ) {
|
|
|
|
this.insertionAnnotations.push( annotation );
|
|
|
|
};
|
|
|
|
|
|
|
|
ve.ce.Surface.prototype.loadInsertionAnnotations = function( annotation ) {
|
|
|
|
this.insertionAnnotations =
|
2012-03-12 22:04:29 +00:00
|
|
|
this.model.getDocument().getAnnotationsFromOffset( this.currentSelection.to - 1 );
|
2012-03-07 19:37:17 +00:00
|
|
|
// Filter out annotations that aren't textStyles or links
|
|
|
|
for ( var i = 0; i < this.insertionAnnotations.length; i++ ) {
|
|
|
|
if ( !this.insertionAnnotations[i].type.match( /(textStyle\/|link\/)/ ) ) {
|
|
|
|
this.insertionAnnotations.splice( i, 1 );
|
|
|
|
i--;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
ve.ce.Surface.prototype.removeInsertionAnnotation = function( annotation ) {
|
|
|
|
var index = ve.dm.DocumentNode.getIndexOfAnnotation( this.insertionAnnotations, annotation );
|
|
|
|
if ( index !== -1 ) {
|
|
|
|
this.insertionAnnotations.splice( index, 1 );
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
ve.ce.Surface.prototype.clearInsertionAnnotations = function() {
|
|
|
|
this.insertionAnnotations = [];
|
2012-03-05 22:08:35 +00:00
|
|
|
};
|
|
|
|
|
2012-03-06 22:39:43 +00:00
|
|
|
ve.ce.Surface.prototype.onCutCopy = function( e ) {
|
2012-03-01 22:27:23 +00:00
|
|
|
var _this = this,
|
2012-03-06 23:51:31 +00:00
|
|
|
sel = rangy.getSelection(),
|
|
|
|
key = sel.getRangeAt(0).toString().replace( /\s/gm, '' );
|
2012-03-01 22:27:23 +00:00
|
|
|
|
2012-03-09 22:51:00 +00:00
|
|
|
_this.clipboard[key] = ve.copyArray(
|
|
|
|
_this.documentView.model.getData( _this.getSelectionRange() )
|
|
|
|
);
|
2012-03-01 22:27:23 +00:00
|
|
|
|
|
|
|
if ( event.type == 'cut' ) {
|
|
|
|
setTimeout( function() {
|
2012-03-02 00:37:01 +00:00
|
|
|
// we don't like how browsers cut, so let's undo it and do it ourselves.
|
2012-03-01 22:27:23 +00:00
|
|
|
document.execCommand('undo', false, false);
|
2012-03-02 00:37:01 +00:00
|
|
|
|
2012-03-07 21:41:53 +00:00
|
|
|
var selection = _this.getSelectionRange();
|
2012-03-02 00:37:01 +00:00
|
|
|
|
|
|
|
// transact
|
2012-03-01 22:27:23 +00:00
|
|
|
var tx = _this.model.getDocument().prepareRemoval( selection );
|
2012-03-07 21:41:53 +00:00
|
|
|
|
|
|
|
_this.autoRender = true;
|
2012-03-01 22:27:23 +00:00
|
|
|
_this.model.transact( tx );
|
2012-03-07 21:41:53 +00:00
|
|
|
_this.autoRender = false;
|
2012-03-02 00:37:01 +00:00
|
|
|
|
2012-03-07 21:06:07 +00:00
|
|
|
_this.clearPollData();
|
2012-03-02 00:37:01 +00:00
|
|
|
|
|
|
|
// place cursor
|
2012-03-07 23:33:41 +00:00
|
|
|
_this.showCursor( selection.start );
|
2012-03-01 22:27:23 +00:00
|
|
|
}, 1 );
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
2012-03-06 22:39:43 +00:00
|
|
|
ve.ce.Surface.prototype.onPaste = function( e ) {
|
2012-03-02 00:10:08 +00:00
|
|
|
var _this = this,
|
2012-03-07 21:41:53 +00:00
|
|
|
insertionPoint = _this.getSelectionRange().start;
|
2012-03-02 00:10:08 +00:00
|
|
|
|
2012-03-06 23:51:31 +00:00
|
|
|
$('#paste')
|
|
|
|
.html('')
|
|
|
|
.show()
|
|
|
|
.css( 'top', $(window).scrollTop() )
|
2012-03-07 21:06:07 +00:00
|
|
|
.css( 'left', $(window).scrollLeft() )
|
2012-03-06 23:51:31 +00:00
|
|
|
.focus();
|
2012-03-01 22:27:23 +00:00
|
|
|
|
|
|
|
setTimeout( function() {
|
2012-03-06 23:51:31 +00:00
|
|
|
var key = $('#paste').hide().text().replace( /\s/gm, '' );
|
2012-03-01 22:27:23 +00:00
|
|
|
|
2012-03-07 19:33:00 +00:00
|
|
|
if ( _this.clipboard[key] ) {
|
2012-03-01 22:27:23 +00:00
|
|
|
// transact
|
2012-03-06 23:51:31 +00:00
|
|
|
var tx = _this.documentView.model.prepareInsertion(
|
|
|
|
insertionPoint, _this.clipboard[key]
|
|
|
|
);
|
2012-03-07 08:13:12 +00:00
|
|
|
_this.autoRender = true;
|
2012-03-01 22:27:23 +00:00
|
|
|
_this.model.transact( tx );
|
2012-03-07 08:13:12 +00:00
|
|
|
_this.autoRender = false;
|
2012-03-02 00:27:04 +00:00
|
|
|
|
2012-03-07 21:06:07 +00:00
|
|
|
_this.clearPollData();
|
2012-03-01 22:27:23 +00:00
|
|
|
|
|
|
|
// place cursor
|
2012-03-07 23:33:41 +00:00
|
|
|
_this.showCursor( insertionPoint + _this.clipboard[key].length );
|
2012-03-01 22:27:23 +00:00
|
|
|
} else {
|
|
|
|
alert('i can only handle copy/paste from hybrid surface. sorry. :(');
|
|
|
|
}
|
|
|
|
}, 1 );
|
|
|
|
};
|
|
|
|
|
2012-03-06 22:39:43 +00:00
|
|
|
ve.ce.Surface.prototype.onCompositionStart = function( e ) {
|
2012-03-01 01:28:39 +00:00
|
|
|
this.stopPolling();
|
2012-03-06 23:51:31 +00:00
|
|
|
var sel = rangy.getSelection();
|
|
|
|
this.poll.compositionStart = this.getOffset( sel.anchorNode, sel.anchorOffset, false );
|
2012-02-13 22:45:18 +00:00
|
|
|
};
|
|
|
|
|
2012-03-06 22:39:43 +00:00
|
|
|
ve.ce.Surface.prototype.onCompositionEnd = function( e ) {
|
2012-03-06 23:51:31 +00:00
|
|
|
var sel = rangy.getSelection();
|
|
|
|
this.poll.compositionEnd = this.getOffset( sel.focusNode, sel.focusOffset, false );
|
2012-03-01 01:28:39 +00:00
|
|
|
this.startPolling();
|
|
|
|
};
|
2012-02-13 22:45:18 +00:00
|
|
|
|
2012-03-06 22:39:43 +00:00
|
|
|
ve.ce.Surface.prototype.attachContextView = function( contextView ) {
|
2012-02-13 22:45:18 +00:00
|
|
|
this.contextView = contextView;
|
|
|
|
};
|
|
|
|
|
2012-03-06 22:39:43 +00:00
|
|
|
ve.ce.Surface.prototype.getModel = function() {
|
2012-02-13 22:45:18 +00:00
|
|
|
return this.model;
|
|
|
|
};
|
|
|
|
|
2012-03-12 21:50:22 +00:00
|
|
|
ve.ce.Surface.prototype.updateSelection = function( delay ) {
|
|
|
|
var _this = this;
|
|
|
|
function update() {
|
|
|
|
if ( _this.currentSelection.getLength() ) {
|
|
|
|
_this.clearInsertionAnnotations();
|
|
|
|
}
|
|
|
|
if ( _this.contextView ) {
|
|
|
|
if ( _this.currentSelection.getLength() ) {
|
|
|
|
_this.contextView.set();
|
|
|
|
} else {
|
|
|
|
_this.contextView.clear();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
_this.updateSelectionTimeout = undefined;
|
|
|
|
}
|
|
|
|
if ( delay ) {
|
|
|
|
if ( this.updateSelectionTimeout !== undefined ) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
this.updateSelectionTimeout = setTimeout( update, delay );
|
|
|
|
} else {
|
|
|
|
update();
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
2012-03-06 22:39:43 +00:00
|
|
|
ve.ce.Surface.prototype.documentOnFocus = function() {
|
2012-03-01 01:28:39 +00:00
|
|
|
this.startPolling();
|
2012-02-13 22:45:18 +00:00
|
|
|
};
|
|
|
|
|
2012-03-06 22:39:43 +00:00
|
|
|
ve.ce.Surface.prototype.documentOnBlur = function() {
|
2012-03-01 01:28:39 +00:00
|
|
|
this.stopPolling();
|
2012-02-13 22:45:18 +00:00
|
|
|
};
|
|
|
|
|
2012-03-06 22:39:43 +00:00
|
|
|
ve.ce.Surface.prototype.startPolling = function() {
|
2012-03-01 01:28:39 +00:00
|
|
|
if ( this.poll.interval === null ) {
|
|
|
|
var _this = this;
|
2012-03-02 00:10:08 +00:00
|
|
|
setTimeout( function() {
|
|
|
|
_this.pollContent();
|
|
|
|
}, 0);
|
2012-03-01 01:28:39 +00:00
|
|
|
this.poll.interval = setInterval( function() {
|
|
|
|
_this.pollContent();
|
|
|
|
}, this.poll.frequency );
|
|
|
|
}
|
|
|
|
};
|
2012-02-13 22:45:18 +00:00
|
|
|
|
2012-03-06 22:39:43 +00:00
|
|
|
ve.ce.Surface.prototype.stopPolling = function() {
|
2012-03-01 01:28:39 +00:00
|
|
|
if ( this.poll.interval !== null ) {
|
|
|
|
clearInterval( this.poll.interval );
|
|
|
|
this.poll.interval = null;
|
|
|
|
}
|
|
|
|
};
|
2012-02-13 22:45:18 +00:00
|
|
|
|
2012-03-07 21:06:07 +00:00
|
|
|
ve.ce.Surface.prototype.clearPollData = function() {
|
|
|
|
this.stopPolling();
|
|
|
|
this.poll.prevText =
|
|
|
|
this.poll.prevHash =
|
|
|
|
this.poll.prevOffset =
|
|
|
|
this.poll.node = null;
|
|
|
|
this.startPolling();
|
|
|
|
};
|
|
|
|
|
2012-03-06 22:39:43 +00:00
|
|
|
ve.ce.Surface.prototype.pollContent = function() {
|
2012-03-14 00:04:24 +00:00
|
|
|
return;
|
2012-03-01 22:14:14 +00:00
|
|
|
var localOffset, text, hash;
|
2012-03-12 20:39:08 +00:00
|
|
|
|
2012-03-01 01:28:39 +00:00
|
|
|
if ( this.poll.compositionStart !== null && this.poll.compositionEnd !== null ) {
|
2012-03-01 20:49:21 +00:00
|
|
|
|
2012-03-06 22:39:43 +00:00
|
|
|
text = ve.ce.Surface.getDOMText2( this.poll.node );
|
|
|
|
hash = ve.ce.Surface.getDOMHash( this.poll.node );
|
2012-03-01 22:14:14 +00:00
|
|
|
localOffset = this.poll.compositionEnd;
|
2012-03-01 01:28:39 +00:00
|
|
|
this.poll.compositionStart = null;
|
|
|
|
this.poll.compositionEnd = null;
|
2012-03-01 20:49:21 +00:00
|
|
|
|
2012-03-01 01:28:39 +00:00
|
|
|
} else {
|
2012-03-06 23:51:31 +00:00
|
|
|
var sel = rangy.getSelection();
|
2012-02-10 18:18:35 +00:00
|
|
|
|
2012-03-06 23:51:31 +00:00
|
|
|
if ( sel.anchorNode === null ) {
|
2012-02-13 22:45:18 +00:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2012-03-06 23:51:31 +00:00
|
|
|
var node = this.getLeafNode( sel.anchorNode )[0];
|
2012-03-06 22:39:43 +00:00
|
|
|
text = ve.ce.Surface.getDOMText2( node );
|
|
|
|
hash = ve.ce.Surface.getDOMHash( node );
|
2012-02-07 19:13:19 +00:00
|
|
|
|
2012-03-06 23:51:31 +00:00
|
|
|
if ( sel.anchorNode !== sel.focusNode || sel.anchorOffset !== sel.focusOffset ) {
|
2012-03-01 22:14:14 +00:00
|
|
|
localOffset = null;
|
2012-03-01 01:28:39 +00:00
|
|
|
} else {
|
2012-03-06 23:51:31 +00:00
|
|
|
localOffset = this.getOffset( sel.anchorNode, sel.anchorOffset, false );
|
2012-03-01 01:28:39 +00:00
|
|
|
}
|
2012-02-13 22:45:18 +00:00
|
|
|
|
2012-03-01 01:28:39 +00:00
|
|
|
if ( node !== this.poll.node ) {
|
2012-03-02 01:35:34 +00:00
|
|
|
// TODO: Read content from old node one more time
|
2012-03-01 01:28:39 +00:00
|
|
|
this.poll.node = node;
|
|
|
|
this.poll.prevText = text;
|
|
|
|
this.poll.prevHash = hash;
|
|
|
|
this.poll.prevOffset = localOffset;
|
|
|
|
return;
|
|
|
|
}
|
2012-02-13 22:45:18 +00:00
|
|
|
}
|
2012-03-01 22:14:14 +00:00
|
|
|
|
|
|
|
var newData, annotations;
|
2012-02-13 22:45:18 +00:00
|
|
|
|
2012-03-01 01:28:39 +00:00
|
|
|
if ( text !== this.poll.prevText ) {
|
|
|
|
var nodeOffset = this.documentView.getOffsetFromNode( $( this.poll.node ).data( 'view' ) ),
|
|
|
|
lengthDiff = text.length - this.poll.prevText.length,
|
2012-03-06 23:51:31 +00:00
|
|
|
offsetDiff = ( localOffset !== null && this.poll.prevOffset !== null ) ?
|
|
|
|
localOffset - this.poll.prevOffset : null;
|
|
|
|
|
|
|
|
if (
|
|
|
|
lengthDiff === offsetDiff &&
|
|
|
|
this.poll.prevText.substring( 0, this.poll.prevOffset ) ===
|
|
|
|
text.substring( 0, this.poll.prevOffset )
|
|
|
|
) {
|
2012-03-01 22:14:14 +00:00
|
|
|
newData = text.substring( this.poll.prevOffset, localOffset ).split( '' );
|
2012-03-06 23:51:31 +00:00
|
|
|
annotations = this.model.getDocument().getAnnotationsFromOffset(
|
|
|
|
nodeOffset + 1 + this.poll.prevOffset - 1, true
|
|
|
|
);
|
2012-03-01 01:28:39 +00:00
|
|
|
ve.dm.DocumentNode.addAnnotationsToData( newData, annotations );
|
|
|
|
this.model.transact( this.documentView.model.prepareInsertion(
|
|
|
|
nodeOffset + 1 + this.poll.prevOffset,
|
|
|
|
newData
|
|
|
|
) );
|
|
|
|
} else {
|
|
|
|
var sameFromLeft = 0,
|
|
|
|
sameFromRight = 0,
|
2012-03-06 23:51:31 +00:00
|
|
|
l = text.length > this.poll.prevText.length ?
|
|
|
|
this.poll.prevText.length : text.length;
|
2012-03-01 22:14:14 +00:00
|
|
|
while ( sameFromLeft < l && this.poll.prevText[sameFromLeft] === text[sameFromLeft] ) {
|
2012-03-01 01:28:39 +00:00
|
|
|
++sameFromLeft;
|
|
|
|
}
|
|
|
|
l = l - sameFromLeft;
|
2012-03-06 23:51:31 +00:00
|
|
|
while (
|
|
|
|
sameFromRight < l &&
|
|
|
|
this.poll.prevText[this.poll.prevText.length - 1 - sameFromRight] ===
|
|
|
|
text[text.length - 1 - sameFromRight]
|
|
|
|
) {
|
|
|
|
++sameFromRight;
|
2012-03-01 01:28:39 +00:00
|
|
|
}
|
2012-03-06 23:51:31 +00:00
|
|
|
annotations = this.model.getDocument().getAnnotationsFromOffset(
|
|
|
|
nodeOffset + 1 + sameFromLeft, true
|
|
|
|
);
|
2012-03-01 01:28:39 +00:00
|
|
|
this.model.transact( this.documentView.model.prepareRemoval( new ve.Range(
|
|
|
|
nodeOffset + 1 + sameFromLeft,
|
|
|
|
nodeOffset + 1 + this.poll.prevText.length - sameFromRight
|
|
|
|
) ) );
|
2012-03-07 19:33:00 +00:00
|
|
|
newData = text.substring( sameFromLeft, text.length - sameFromRight ).split( '' );
|
2012-03-01 01:28:39 +00:00
|
|
|
ve.dm.DocumentNode.addAnnotationsToData( newData, annotations );
|
|
|
|
this.model.transact( this.documentView.model.prepareInsertion(
|
|
|
|
nodeOffset + 1 + sameFromLeft,
|
|
|
|
newData
|
|
|
|
) );
|
|
|
|
}
|
|
|
|
this.poll.prevText = text;
|
2012-02-13 22:45:18 +00:00
|
|
|
}
|
2012-03-01 01:28:39 +00:00
|
|
|
if ( hash !== this.poll.prevHash ) {
|
|
|
|
// TODO: redisplay cursor in correct position (with setTimeout)
|
|
|
|
this.getLeafNode( this.poll.node ).data( 'view' ).renderContent();
|
|
|
|
this.poll.prevHash = hash;
|
2012-02-13 22:45:18 +00:00
|
|
|
}
|
|
|
|
|
2012-03-01 01:28:39 +00:00
|
|
|
this.poll.prevOffset = localOffset;
|
|
|
|
};
|
|
|
|
|
2012-03-06 22:39:43 +00:00
|
|
|
ve.ce.Surface.prototype.onMouseDown = function( e ) {
|
2012-03-02 02:07:55 +00:00
|
|
|
if ( this.poll.interval !== null ) {
|
|
|
|
this.stopPolling();
|
|
|
|
this.pollContent();
|
|
|
|
this.startPolling();
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
2012-03-06 22:39:43 +00:00
|
|
|
ve.ce.Surface.prototype.onKeyDown = function( e ) {
|
2012-03-02 02:07:55 +00:00
|
|
|
if ( this.poll.interval !== null ) {
|
|
|
|
this.stopPolling();
|
|
|
|
this.pollContent();
|
|
|
|
this.startPolling();
|
|
|
|
}
|
2012-03-06 23:51:31 +00:00
|
|
|
var sel,
|
|
|
|
globalOffset,
|
|
|
|
newOffset,
|
|
|
|
node,
|
|
|
|
nodeOffset;
|
2012-03-02 00:10:08 +00:00
|
|
|
switch ( e.keyCode ) {
|
2012-03-02 01:35:34 +00:00
|
|
|
// Enter
|
|
|
|
case 13:
|
|
|
|
this.handleEnter();
|
|
|
|
e.preventDefault();
|
|
|
|
break;
|
|
|
|
// Backspace
|
|
|
|
case 8:
|
|
|
|
this.handleDelete( true );
|
|
|
|
e.preventDefault();
|
|
|
|
break;
|
|
|
|
// Delete
|
|
|
|
case 46:
|
|
|
|
this.handleDelete( false );
|
|
|
|
e.preventDefault();
|
|
|
|
break;
|
2012-03-02 00:10:08 +00:00
|
|
|
// Left arrow
|
|
|
|
case 37:
|
2012-03-06 23:51:31 +00:00
|
|
|
sel = rangy.getSelection();
|
|
|
|
if ( sel.anchorOffset === 0 ) {
|
|
|
|
globalOffset = this.getOffset( sel.anchorNode, sel.anchorOffset, true );
|
|
|
|
node = this.documentView.getNodeFromOffset( globalOffset );
|
|
|
|
nodeOffset = surfaceView.documentView.getOffsetFromNode( node );
|
2012-03-02 00:10:08 +00:00
|
|
|
if ( nodeOffset + 1 === globalOffset ) {
|
2012-03-06 23:51:31 +00:00
|
|
|
newOffset = this.documentView.model.getRelativeContentOffset(
|
|
|
|
globalOffset, -1
|
|
|
|
);
|
2012-03-07 23:33:41 +00:00
|
|
|
this.showCursor(newOffset);
|
2012-03-02 00:10:08 +00:00
|
|
|
e.preventDefault();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
// Right arrow
|
|
|
|
case 39:
|
2012-03-06 23:51:31 +00:00
|
|
|
sel = rangy.getSelection();
|
|
|
|
if ( sel.anchorOffset === sel.anchorNode.length ) {
|
|
|
|
globalOffset = this.getOffset( sel.anchorNode, sel.anchorOffset, true );
|
|
|
|
node = this.documentView.getNodeFromOffset( globalOffset );
|
|
|
|
nodeOffset = surfaceView.documentView.getOffsetFromNode( node );
|
2012-03-02 00:34:31 +00:00
|
|
|
if ( nodeOffset + 1 + node.getContentLength() === globalOffset ) {
|
2012-03-06 23:51:31 +00:00
|
|
|
newOffset = this.documentView.model.getRelativeContentOffset(
|
|
|
|
globalOffset, 1
|
|
|
|
);
|
2012-03-07 23:33:41 +00:00
|
|
|
this.showCursor(newOffset);
|
2012-03-02 00:34:31 +00:00
|
|
|
e.preventDefault();
|
|
|
|
}
|
|
|
|
}
|
2012-03-02 00:10:08 +00:00
|
|
|
break;
|
|
|
|
}
|
2012-03-07 21:37:39 +00:00
|
|
|
var range = this.getSelectionRange();
|
2012-03-12 20:39:08 +00:00
|
|
|
if ( range.getLength() !== 0 && this.poll.compositionStart === null) {
|
2012-03-02 01:35:34 +00:00
|
|
|
e.preventDefault();
|
|
|
|
}
|
2012-03-02 00:10:08 +00:00
|
|
|
};
|
|
|
|
|
2012-03-06 22:39:43 +00:00
|
|
|
ve.ce.Surface.prototype.getOffset = function( elem, offset, global ) {
|
2012-03-01 01:28:39 +00:00
|
|
|
var $leafNode = this.getLeafNode( elem ),
|
|
|
|
current = [$leafNode.contents(), 0],
|
|
|
|
stack = [current],
|
|
|
|
localOffset = 0;
|
|
|
|
|
2012-02-13 22:45:18 +00:00
|
|
|
while ( stack.length > 0 ) {
|
|
|
|
if ( current[1] >= current[0].length ) {
|
|
|
|
stack.pop();
|
|
|
|
current = stack[ stack.length - 1 ];
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
var item = current[0][current[1]];
|
|
|
|
var $item = current[0].eq( current[1] );
|
|
|
|
|
|
|
|
if ( item.nodeType === 3 ) {
|
2012-03-01 01:28:39 +00:00
|
|
|
if ( item === elem ) {
|
|
|
|
localOffset += offset;
|
2012-02-13 22:45:18 +00:00
|
|
|
break;
|
|
|
|
} else {
|
2012-03-01 01:28:39 +00:00
|
|
|
localOffset += item.textContent.length;
|
2012-02-13 22:45:18 +00:00
|
|
|
}
|
|
|
|
} else if ( item.nodeType === 1 ) {
|
2012-03-06 23:51:31 +00:00
|
|
|
if ( $( item ).attr( 'contentEditable' ) === 'false' ) {
|
2012-02-13 22:45:18 +00:00
|
|
|
offset += 1;
|
|
|
|
} else {
|
2012-03-01 01:28:39 +00:00
|
|
|
if ( item === elem ) {
|
|
|
|
localOffset += offset;
|
2012-02-13 22:45:18 +00:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
stack.push( [$item.contents(), 0] );
|
|
|
|
current[1]++;
|
|
|
|
current = stack[stack.length-1];
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
current[1]++;
|
|
|
|
}
|
2012-03-01 01:28:39 +00:00
|
|
|
if ( global === true ) {
|
|
|
|
return this.documentView.getOffsetFromNode( $leafNode.data( 'view' ) ) + 1 + localOffset;
|
|
|
|
} else {
|
|
|
|
return localOffset;
|
|
|
|
}
|
2012-02-13 22:45:18 +00:00
|
|
|
};
|
|
|
|
|
2012-03-07 21:37:39 +00:00
|
|
|
/**
|
|
|
|
* @method
|
|
|
|
* @returns {ve.Range} Current selection range
|
|
|
|
*/
|
|
|
|
ve.ce.Surface.prototype.getSelectionRange = function() {
|
|
|
|
var rangySel = rangy.getSelection();
|
|
|
|
|
|
|
|
if ( rangySel.isCollapsed ) {
|
|
|
|
var offset = this.getOffset( rangySel.anchorNode, rangySel.anchorOffset, true );
|
|
|
|
return new ve.Range( offset, offset );
|
2012-03-01 20:49:21 +00:00
|
|
|
} else {
|
2012-03-07 21:37:39 +00:00
|
|
|
return new ve.Range(
|
|
|
|
this.getOffset( rangySel.anchorNode, rangySel.anchorOffset, true ),
|
|
|
|
this.getOffset( rangySel.focusNode, rangySel.focusOffset, true )
|
2012-03-01 20:49:21 +00:00
|
|
|
);
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
2012-03-12 21:50:22 +00:00
|
|
|
ve.ce.Surface.prototype.getSelectionRect = function() {
|
|
|
|
var sel = rangy.getSelection();
|
|
|
|
return sel.getBoundingClientRect();
|
|
|
|
};
|
|
|
|
|
2012-03-07 23:32:26 +00:00
|
|
|
ve.ce.Surface.prototype.getDOMNodeAndOffset = function( offset ) {
|
|
|
|
var $node = this.documentView.getNodeFromOffset( offset ).$,
|
|
|
|
nodeOffset = this.documentView.getOffsetFromNode( $node.data('view') ) + 1,
|
|
|
|
current = [$node.contents(), 0],
|
|
|
|
stack = [current],
|
|
|
|
localNode,
|
|
|
|
localOffset;
|
|
|
|
|
|
|
|
while ( stack.length > 0 ) {
|
|
|
|
if ( current[1] >= current[0].length ) {
|
|
|
|
stack.pop();
|
|
|
|
current = stack[ stack.length - 1 ];
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
var item = current[0][current[1]],
|
|
|
|
$item = current[0].eq( current[1] );
|
|
|
|
|
|
|
|
if ( item.nodeType === 3 ) {
|
|
|
|
var length = item.textContent.length;
|
|
|
|
if ( offset >= nodeOffset && offset <= nodeOffset + length ) {
|
|
|
|
return {
|
|
|
|
node: item,
|
|
|
|
offset: offset - nodeOffset
|
|
|
|
};
|
|
|
|
} else {
|
|
|
|
nodeOffset += length;
|
|
|
|
}
|
|
|
|
} else if ( item.nodeType === 1 ) {
|
|
|
|
if ( $( item ).attr('contentEditable') === 'false' ) {
|
|
|
|
nodeOffset += 1;
|
|
|
|
} else {
|
|
|
|
stack.push( [$item.contents(), 0] );
|
|
|
|
current[1]++;
|
|
|
|
current = stack[stack.length-1];
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
current[1]++;
|
|
|
|
}
|
|
|
|
return null;
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @method
|
|
|
|
*/
|
|
|
|
ve.ce.Surface.prototype.showCursor = function( offset ) {
|
|
|
|
this.showSelection( new ve.Range( offset ) );
|
|
|
|
};
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @method
|
|
|
|
*/
|
|
|
|
ve.ce.Surface.prototype.showSelection = function( range ) {
|
|
|
|
var start = this.getDOMNodeAndOffset( range.start ),
|
|
|
|
stop = this.getDOMNodeAndOffset( range.end ),
|
|
|
|
sel = rangy.getSelection();
|
2012-03-09 22:55:49 +00:00
|
|
|
// FIXME: Shadowing range, really?
|
|
|
|
range = rangy.createRange();
|
2012-03-07 23:32:26 +00:00
|
|
|
range.setStart( start.node, start.offset );
|
|
|
|
range.setEnd( stop.node, stop.offset );
|
|
|
|
sel.setSingleRange( range );
|
2012-03-12 21:50:22 +00:00
|
|
|
// Trigger select event
|
|
|
|
this.model.select( this.getSelectionRange() );
|
2012-03-07 23:32:26 +00:00
|
|
|
};
|
|
|
|
|
2012-03-06 22:39:43 +00:00
|
|
|
ve.ce.Surface.prototype.getLeafNode = function( elem ) {
|
2012-03-14 00:04:24 +00:00
|
|
|
return ve.ce.Surface.getLeafNode( elem );
|
|
|
|
};
|
|
|
|
|
|
|
|
ve.ce.Surface.getLeafNode = function( elem ) {
|
2012-03-01 01:28:39 +00:00
|
|
|
var $node = $( elem );
|
|
|
|
while( !$node.hasClass( 'ce-leafNode' ) ) {
|
|
|
|
$node = $node.parent();
|
2012-02-09 22:11:33 +00:00
|
|
|
}
|
2012-03-01 01:28:39 +00:00
|
|
|
return $node;
|
2012-02-09 22:11:33 +00:00
|
|
|
};
|
|
|
|
|
2012-03-06 22:39:43 +00:00
|
|
|
ve.ce.Surface.getDOMText2 = function( elem ) {
|
2012-03-01 01:28:39 +00:00
|
|
|
// TODO: there must be some better way to write this regex replace
|
2012-03-07 19:33:00 +00:00
|
|
|
var regex = new RegExp('[' + String.fromCharCode(32) + String.fromCharCode(160) + ']', 'g');
|
2012-03-06 23:51:31 +00:00
|
|
|
return ve.ce.Surface.getDOMText( elem ).replace( regex, ' ' );
|
2012-02-09 22:11:33 +00:00
|
|
|
};
|
2012-02-09 00:51:59 +00:00
|
|
|
|
2012-03-06 22:39:43 +00:00
|
|
|
ve.ce.Surface.getDOMText = function( elem ) {
|
2012-03-06 23:51:31 +00:00
|
|
|
var nodeType = elem.nodeType,
|
|
|
|
ret = '';
|
|
|
|
|
|
|
|
if ( nodeType === 1 || nodeType === 9 ) {
|
|
|
|
// Use textContent || innerText for elements
|
|
|
|
if ( typeof elem.textContent === 'string' ) {
|
|
|
|
return elem.textContent;
|
|
|
|
} else if ( typeof elem.innerText === 'string' ) {
|
|
|
|
// Replace IE's carriage returns
|
|
|
|
return elem.innerText.replace( /\r\n/g, '' );
|
|
|
|
} else {
|
|
|
|
// Traverse it's children
|
|
|
|
for ( elem = elem.firstChild; elem; elem = elem.nextSibling) {
|
|
|
|
ret += ve.ce.Surface.getDOMText( elem );
|
|
|
|
}
|
|
|
|
}
|
|
|
|
} else if ( nodeType === 3 || nodeType === 4 ) {
|
|
|
|
return elem.nodeValue;
|
|
|
|
}
|
|
|
|
|
|
|
|
return ret;
|
2012-02-07 19:13:19 +00:00
|
|
|
};
|
|
|
|
|
2012-03-06 22:39:43 +00:00
|
|
|
ve.ce.Surface.getDOMHash = function( elem ) {
|
2012-03-06 23:51:31 +00:00
|
|
|
var nodeType = elem.nodeType,
|
2012-03-01 22:14:14 +00:00
|
|
|
nodeName = elem.nodeName,
|
2012-03-06 23:51:31 +00:00
|
|
|
ret = '';
|
2012-03-01 01:28:39 +00:00
|
|
|
|
|
|
|
if ( nodeType === 3 || nodeType === 4 ) {
|
|
|
|
return '#';
|
|
|
|
} else if ( nodeType === 1 || nodeType === 9 ) {
|
|
|
|
ret += '<' + nodeName + '>';
|
2012-03-01 22:14:14 +00:00
|
|
|
// Traverse it's children
|
2012-03-01 01:28:39 +00:00
|
|
|
for ( elem = elem.firstChild; elem; elem = elem.nextSibling) {
|
2012-03-06 22:39:43 +00:00
|
|
|
ret += ve.ce.Surface.getDOMHash( elem );
|
2012-03-06 23:51:31 +00:00
|
|
|
}
|
|
|
|
ret += '</' + nodeName + '>';
|
2012-02-08 00:30:40 +00:00
|
|
|
}
|
2012-03-01 01:28:39 +00:00
|
|
|
return ret;
|
2012-02-08 00:30:40 +00:00
|
|
|
};
|
|
|
|
|
2012-03-06 22:39:43 +00:00
|
|
|
ve.ce.Surface.prototype.handleDelete = function( backspace, isPartial ) {
|
2012-03-02 01:35:34 +00:00
|
|
|
this.stopPolling();
|
2012-03-07 23:35:38 +00:00
|
|
|
this.clearPollData();
|
2012-03-07 21:37:39 +00:00
|
|
|
var selection = this.getSelectionRange().clone(),
|
2012-03-02 01:35:34 +00:00
|
|
|
sourceOffset,
|
|
|
|
targetOffset,
|
|
|
|
sourceSplitableNode,
|
|
|
|
targetSplitableNode,
|
|
|
|
tx,
|
|
|
|
cursorAt;
|
|
|
|
// this.resetText();
|
|
|
|
if ( selection.from === selection.to ) {
|
|
|
|
if ( backspace ) {
|
|
|
|
sourceOffset = selection.to;
|
|
|
|
targetOffset = this.model.getDocument().getRelativeContentOffset(
|
|
|
|
sourceOffset,
|
|
|
|
-1
|
|
|
|
);
|
|
|
|
} else {
|
|
|
|
sourceOffset = this.model.getDocument().getRelativeContentOffset(
|
|
|
|
selection.to,
|
|
|
|
1
|
|
|
|
);
|
|
|
|
targetOffset = selection.to;
|
|
|
|
}
|
|
|
|
|
|
|
|
var sourceNode = this.documentView.getNodeFromOffset( sourceOffset, false ),
|
|
|
|
targetNode = this.documentView.getNodeFromOffset( targetOffset, false );
|
|
|
|
|
|
|
|
if ( sourceNode.model.getElementType() === targetNode.model.getElementType() ) {
|
2012-03-06 22:39:43 +00:00
|
|
|
sourceSplitableNode = ve.ce.Node.getSplitableNode( sourceNode );
|
|
|
|
targetSplitableNode = ve.ce.Node.getSplitableNode( targetNode );
|
2012-03-02 01:35:34 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
cursorAt = targetOffset;
|
|
|
|
|
|
|
|
if ( sourceNode === targetNode ||
|
|
|
|
( typeof sourceSplitableNode !== 'undefined' &&
|
|
|
|
sourceSplitableNode.getParent() === targetSplitableNode.getParent() ) ) {
|
|
|
|
tx = this.model.getDocument().prepareRemoval(
|
|
|
|
new ve.Range( targetOffset, sourceOffset )
|
|
|
|
);
|
|
|
|
this.model.transact( tx );
|
|
|
|
} else {
|
|
|
|
tx = this.model.getDocument().prepareInsertion(
|
|
|
|
targetOffset, sourceNode.model.getContentData()
|
|
|
|
);
|
|
|
|
this.model.transact( tx );
|
|
|
|
|
|
|
|
var nodeToDelete = sourceNode;
|
|
|
|
ve.Node.traverseUpstream( nodeToDelete, function( node ) {
|
|
|
|
if ( node.getParent().children.length === 1 ) {
|
|
|
|
nodeToDelete = node.getParent();
|
|
|
|
return true;
|
|
|
|
} else {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
} );
|
|
|
|
var range = new ve.Range();
|
|
|
|
range.from = this.documentView.getOffsetFromNode( nodeToDelete, false );
|
|
|
|
range.to = range.from + nodeToDelete.getElementLength();
|
|
|
|
tx = this.model.getDocument().prepareRemoval( range );
|
|
|
|
this.model.transact( tx );
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
// selection removal
|
|
|
|
tx = this.model.getDocument().prepareRemoval( selection );
|
|
|
|
this.model.transact( tx );
|
|
|
|
cursorAt = selection.start;
|
|
|
|
}
|
|
|
|
this.documentView.renderContent();
|
2012-03-13 18:12:57 +00:00
|
|
|
this.showCursor(cursorAt);
|
2012-03-02 01:35:34 +00:00
|
|
|
var _this = this;
|
|
|
|
setTimeout( function() {
|
|
|
|
_this.poll.prevText = _this.poll.prevHash = _this.poll.prevOffset = _this.poll.node = null;
|
|
|
|
_this.startPolling();
|
|
|
|
}, 0 );
|
|
|
|
|
|
|
|
};
|
|
|
|
|
2012-03-06 22:39:43 +00:00
|
|
|
ve.ce.Surface.prototype.handleEnter = function() {
|
2012-03-02 01:35:34 +00:00
|
|
|
this.stopPolling();
|
2012-03-07 21:37:39 +00:00
|
|
|
var selection = this.getSelectionRange().clone(),
|
2012-03-02 01:35:34 +00:00
|
|
|
tx;
|
|
|
|
if ( selection.from !== selection.to ) {
|
|
|
|
this.handleDelete( false, true );
|
|
|
|
}
|
|
|
|
var node = this.documentView.getNodeFromOffset( selection.to, false ),
|
|
|
|
nodeOffset = this.documentView.getOffsetFromNode( node, false );
|
|
|
|
|
|
|
|
if (
|
|
|
|
nodeOffset + node.getContentLength() + 1 === selection.to &&
|
2012-03-06 22:39:43 +00:00
|
|
|
node === ve.ce.Node.getSplitableNode( node )
|
2012-03-02 01:35:34 +00:00
|
|
|
) {
|
|
|
|
tx = this.documentView.model.prepareInsertion(
|
|
|
|
nodeOffset + node.getElementLength(),
|
|
|
|
[ { 'type': 'paragraph' }, { 'type': '/paragraph' } ]
|
|
|
|
);
|
|
|
|
this.model.transact( tx );
|
|
|
|
selection.from = selection.to = nodeOffset + node.getElementLength() + 1;
|
|
|
|
} else {
|
|
|
|
var stack = [],
|
|
|
|
splitable = false;
|
|
|
|
|
|
|
|
ve.Node.traverseUpstream( node, function( node ) {
|
|
|
|
var elementType = node.model.getElementType();
|
|
|
|
if (
|
|
|
|
splitable === true &&
|
2012-03-06 22:39:43 +00:00
|
|
|
ve.ce.DocumentNode.splitRules[ elementType ].children === true
|
2012-03-02 01:35:34 +00:00
|
|
|
) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
stack.splice(
|
|
|
|
stack.length / 2,
|
|
|
|
0,
|
|
|
|
{ 'type': '/' + elementType },
|
|
|
|
{
|
|
|
|
'type': elementType,
|
|
|
|
'attributes': ve.copyObject( node.model.element.attributes )
|
|
|
|
}
|
|
|
|
);
|
2012-03-06 22:39:43 +00:00
|
|
|
splitable = ve.ce.DocumentNode.splitRules[ elementType ].self;
|
2012-03-02 01:35:34 +00:00
|
|
|
return true;
|
|
|
|
} );
|
|
|
|
tx = this.documentView.model.prepareInsertion( selection.to, stack );
|
|
|
|
this.model.transact( tx );
|
|
|
|
selection.from = selection.to =
|
|
|
|
this.model.getDocument().getRelativeContentOffset( selection.to, 1 );
|
|
|
|
}
|
|
|
|
this.documentView.renderContent();
|
2012-03-13 18:12:57 +00:00
|
|
|
this.showCursor(selection.to);
|
2012-03-02 01:35:34 +00:00
|
|
|
var _this = this;
|
|
|
|
setTimeout( function() {
|
|
|
|
_this.poll.prevText = _this.poll.prevHash = _this.poll.prevOffset = _this.poll.node = null;
|
|
|
|
_this.startPolling();
|
|
|
|
}, 0 );
|
|
|
|
};
|
|
|
|
|
2012-02-07 19:13:19 +00:00
|
|
|
/* Inheritance */
|
|
|
|
|
2012-03-06 22:39:43 +00:00
|
|
|
ve.extendClass( ve.ce.Surface, ve.EventEmitter );
|