2012-07-19 00:11:26 +00:00
|
|
|
/**
|
|
|
|
* VisualEditor user interface IndentationButtonTool class.
|
2012-07-19 21:25:16 +00:00
|
|
|
*
|
2012-07-19 00:11:26 +00:00
|
|
|
* @copyright 2011-2012 VisualEditor Team and others; see AUTHORS.txt
|
|
|
|
* @license The MIT License (MIT); see LICENSE.txt
|
|
|
|
*/
|
|
|
|
|
2011-12-05 21:10:19 +00:00
|
|
|
/**
|
2012-02-06 23:50:56 +00:00
|
|
|
* Creates an ve.ui.IndentationButtonTool object.
|
2012-06-20 01:20:28 +00:00
|
|
|
*
|
2011-12-05 21:10:19 +00:00
|
|
|
* @class
|
|
|
|
* @constructor
|
2012-02-06 23:50:56 +00:00
|
|
|
* @extends {ve.ui.ButtonTool}
|
|
|
|
* @param {ve.ui.Toolbar} toolbar
|
2011-12-05 21:10:19 +00:00
|
|
|
* @param {String} name
|
Object management: Object create/inherit/clone utilities
* For the most common case:
- replace ve.extendClass with ve.inheritClass (chose slightly
different names to detect usage of the old/new one, and I
like 'inherit' better).
- move it up to below the constructor, see doc block for why.
* Cases where more than 2 arguments were passed to
ve.extendClass are handled differently depending on the case.
In case of a longer inheritance tree, the other arguments
could be omitted (like in "ve.ce.FooBar, ve.FooBar,
ve.Bar". ve.ce.FooBar only needs to inherit from ve.FooBar,
because ve.ce.FooBar inherits from ve.Bar).
In the case of where it previously had two mixins with
ve.extendClass(), either one becomes inheritClass and one
a mixin, both to mixinClass().
No visible changes should come from this commit as the
instances still all have the same visible properties in the
end. No more or less than before.
* Misc.:
- Be consistent in calling parent constructors in the
same order as the inheritance.
- Add missing @extends and @param documentation.
- Replace invalid {Integer} type hint with {Number}.
- Consistent doc comments order:
@class, @abstract, @constructor, @extends, @params.
- Fix indentation errors
A fairly common mistake was a superfluous space before the
identifier on the assignment line directly below the
documentation comment.
$ ack "^ [^*]" --js modules/ve
- Typo "Inhertiance" -> "Inheritance".
- Replacing the other confusing comment "Inheritance" (inside
the constructor) with "Parent constructor".
- Add missing @abstract for ve.ui.Tool.
- Corrected ve.FormatDropdownTool to ve.ui.FormatDropdownTool.js
- Add function names to all @constructor functions. Now that we
have inheritance it is important and useful to have these
functions not be anonymous.
Example of debug shot: http://cl.ly/image/1j3c160w3D45
Makes the difference between
< documentNode;
> ve_dm_DocumentNode
...
: ve_dm_BranchNode
...
: ve_dm_Node
...
: ve_dm_Node
...
: Object
...
without names (current situation):
< documentNode;
> Object
...
: Object
...
: Object
...
: Object
...
: Object
...
though before this commit, it really looks like this
(flattened since ve.extendClass really did a mixin):
< documentNode;
> Object
...
...
...
Pattern in Sublime (case-sensitive) to find nameless
constructor functions:
"^ve\..*\.([A-Z])([^\.]+) = function \("
Change-Id: Iab763954fb8cf375900d7a9a92dec1c755d5407e
2012-09-05 06:07:47 +00:00
|
|
|
* @param title
|
|
|
|
* @param data
|
2011-12-05 21:10:19 +00:00
|
|
|
*/
|
2012-09-06 23:15:55 +00:00
|
|
|
ve.ui.IndentationButtonTool = function VeUiIndentationButtonTool( toolbar, name, title, data ) {
|
Object management: Object create/inherit/clone utilities
* For the most common case:
- replace ve.extendClass with ve.inheritClass (chose slightly
different names to detect usage of the old/new one, and I
like 'inherit' better).
- move it up to below the constructor, see doc block for why.
* Cases where more than 2 arguments were passed to
ve.extendClass are handled differently depending on the case.
In case of a longer inheritance tree, the other arguments
could be omitted (like in "ve.ce.FooBar, ve.FooBar,
ve.Bar". ve.ce.FooBar only needs to inherit from ve.FooBar,
because ve.ce.FooBar inherits from ve.Bar).
In the case of where it previously had two mixins with
ve.extendClass(), either one becomes inheritClass and one
a mixin, both to mixinClass().
No visible changes should come from this commit as the
instances still all have the same visible properties in the
end. No more or less than before.
* Misc.:
- Be consistent in calling parent constructors in the
same order as the inheritance.
- Add missing @extends and @param documentation.
- Replace invalid {Integer} type hint with {Number}.
- Consistent doc comments order:
@class, @abstract, @constructor, @extends, @params.
- Fix indentation errors
A fairly common mistake was a superfluous space before the
identifier on the assignment line directly below the
documentation comment.
$ ack "^ [^*]" --js modules/ve
- Typo "Inhertiance" -> "Inheritance".
- Replacing the other confusing comment "Inheritance" (inside
the constructor) with "Parent constructor".
- Add missing @abstract for ve.ui.Tool.
- Corrected ve.FormatDropdownTool to ve.ui.FormatDropdownTool.js
- Add function names to all @constructor functions. Now that we
have inheritance it is important and useful to have these
functions not be anonymous.
Example of debug shot: http://cl.ly/image/1j3c160w3D45
Makes the difference between
< documentNode;
> ve_dm_DocumentNode
...
: ve_dm_BranchNode
...
: ve_dm_Node
...
: ve_dm_Node
...
: Object
...
without names (current situation):
< documentNode;
> Object
...
: Object
...
: Object
...
: Object
...
: Object
...
though before this commit, it really looks like this
(flattened since ve.extendClass really did a mixin):
< documentNode;
> Object
...
...
...
Pattern in Sublime (case-sensitive) to find nameless
constructor functions:
"^ve\..*\.([A-Z])([^\.]+) = function \("
Change-Id: Iab763954fb8cf375900d7a9a92dec1c755d5407e
2012-09-05 06:07:47 +00:00
|
|
|
// Parent constructor
|
2012-02-06 23:50:56 +00:00
|
|
|
ve.ui.ButtonTool.call( this, toolbar, name, title );
|
Object management: Object create/inherit/clone utilities
* For the most common case:
- replace ve.extendClass with ve.inheritClass (chose slightly
different names to detect usage of the old/new one, and I
like 'inherit' better).
- move it up to below the constructor, see doc block for why.
* Cases where more than 2 arguments were passed to
ve.extendClass are handled differently depending on the case.
In case of a longer inheritance tree, the other arguments
could be omitted (like in "ve.ce.FooBar, ve.FooBar,
ve.Bar". ve.ce.FooBar only needs to inherit from ve.FooBar,
because ve.ce.FooBar inherits from ve.Bar).
In the case of where it previously had two mixins with
ve.extendClass(), either one becomes inheritClass and one
a mixin, both to mixinClass().
No visible changes should come from this commit as the
instances still all have the same visible properties in the
end. No more or less than before.
* Misc.:
- Be consistent in calling parent constructors in the
same order as the inheritance.
- Add missing @extends and @param documentation.
- Replace invalid {Integer} type hint with {Number}.
- Consistent doc comments order:
@class, @abstract, @constructor, @extends, @params.
- Fix indentation errors
A fairly common mistake was a superfluous space before the
identifier on the assignment line directly below the
documentation comment.
$ ack "^ [^*]" --js modules/ve
- Typo "Inhertiance" -> "Inheritance".
- Replacing the other confusing comment "Inheritance" (inside
the constructor) with "Parent constructor".
- Add missing @abstract for ve.ui.Tool.
- Corrected ve.FormatDropdownTool to ve.ui.FormatDropdownTool.js
- Add function names to all @constructor functions. Now that we
have inheritance it is important and useful to have these
functions not be anonymous.
Example of debug shot: http://cl.ly/image/1j3c160w3D45
Makes the difference between
< documentNode;
> ve_dm_DocumentNode
...
: ve_dm_BranchNode
...
: ve_dm_Node
...
: ve_dm_Node
...
: Object
...
without names (current situation):
< documentNode;
> Object
...
: Object
...
: Object
...
: Object
...
: Object
...
though before this commit, it really looks like this
(flattened since ve.extendClass really did a mixin):
< documentNode;
> Object
...
...
...
Pattern in Sublime (case-sensitive) to find nameless
constructor functions:
"^ve\..*\.([A-Z])([^\.]+) = function \("
Change-Id: Iab763954fb8cf375900d7a9a92dec1c755d5407e
2012-09-05 06:07:47 +00:00
|
|
|
|
2012-09-17 23:53:03 +00:00
|
|
|
// Properties
|
2011-12-04 02:59:53 +00:00
|
|
|
this.data = data;
|
|
|
|
};
|
|
|
|
|
Object management: Object create/inherit/clone utilities
* For the most common case:
- replace ve.extendClass with ve.inheritClass (chose slightly
different names to detect usage of the old/new one, and I
like 'inherit' better).
- move it up to below the constructor, see doc block for why.
* Cases where more than 2 arguments were passed to
ve.extendClass are handled differently depending on the case.
In case of a longer inheritance tree, the other arguments
could be omitted (like in "ve.ce.FooBar, ve.FooBar,
ve.Bar". ve.ce.FooBar only needs to inherit from ve.FooBar,
because ve.ce.FooBar inherits from ve.Bar).
In the case of where it previously had two mixins with
ve.extendClass(), either one becomes inheritClass and one
a mixin, both to mixinClass().
No visible changes should come from this commit as the
instances still all have the same visible properties in the
end. No more or less than before.
* Misc.:
- Be consistent in calling parent constructors in the
same order as the inheritance.
- Add missing @extends and @param documentation.
- Replace invalid {Integer} type hint with {Number}.
- Consistent doc comments order:
@class, @abstract, @constructor, @extends, @params.
- Fix indentation errors
A fairly common mistake was a superfluous space before the
identifier on the assignment line directly below the
documentation comment.
$ ack "^ [^*]" --js modules/ve
- Typo "Inhertiance" -> "Inheritance".
- Replacing the other confusing comment "Inheritance" (inside
the constructor) with "Parent constructor".
- Add missing @abstract for ve.ui.Tool.
- Corrected ve.FormatDropdownTool to ve.ui.FormatDropdownTool.js
- Add function names to all @constructor functions. Now that we
have inheritance it is important and useful to have these
functions not be anonymous.
Example of debug shot: http://cl.ly/image/1j3c160w3D45
Makes the difference between
< documentNode;
> ve_dm_DocumentNode
...
: ve_dm_BranchNode
...
: ve_dm_Node
...
: ve_dm_Node
...
: Object
...
without names (current situation):
< documentNode;
> Object
...
: Object
...
: Object
...
: Object
...
: Object
...
though before this commit, it really looks like this
(flattened since ve.extendClass really did a mixin):
< documentNode;
> Object
...
...
...
Pattern in Sublime (case-sensitive) to find nameless
constructor functions:
"^ve\..*\.([A-Z])([^\.]+) = function \("
Change-Id: Iab763954fb8cf375900d7a9a92dec1c755d5407e
2012-09-05 06:07:47 +00:00
|
|
|
/* Inheritance */
|
|
|
|
|
|
|
|
ve.inheritClass( ve.ui.IndentationButtonTool, ve.ui.ButtonTool );
|
|
|
|
|
2011-12-05 21:10:19 +00:00
|
|
|
/* Methods */
|
|
|
|
|
Kranitor #1: On-boarding
'''Kranitor commits''' are commits by Krinkle with his janitor hat on.
Must never contain functional changes mixed with miscellaneous changes.
.gitignore:
* Add .DS_Store to the ignore list so that browsing the directories
on Mac OS X, will not add these files to the list of untracked
files.
* Fix missing newline at end of file
.jshintrc
* raises -> throws
* +module (QUnit.module)
* remove 'Node' (as of node-jshint 1.7.2 this is now part of
'browser:true', as it should be)
Authors:
* Adding myself
MWExtension/VisualEditor.php
* Fix default value of wgVisualEditorParsoidURL to not
point to the experimental instance in WMF Labs.
Issues:
* ve.ce.TextNode:
- Fix TODO: Don't perform a useless clone of an already-jQuerified object.
- Use .html() to set html content instead of encapsulating between
two strings. This is slightly faster but more importantly safer,
and prevents situations where the resulting jQuery collection
actually contains 2 elements instead of 1, thus messing up
what .contents() is iterating over.
* ve.ce.Document.test.js
- Fix: ReferenceError: assert is not defined
* ve.dm.Document.test.js
- Fix: ReferenceError: assert is not defined
* ve.dm.Transaction.test.js
- Fix: ReferenceError: assert is not defined
* ve.dm.TransactionProcessor.test.js
- Fix: ReferenceError: assert is not defined
* ext.visualEditor.viewPageTarget
- Missing dependency on 'mediawiki.Title'
Code conventions / Misc cleanup
* Various JSHint warnings.
* Whitespace
* jQuery(): Use '<tag>' for element creation,
use '<valid><xml/></valid>' for parsing
* Use the default operator instead of ternary when the condition and
first value are the same.
x = foo ? foo : bar; -> x = foo || bar;
Because contrary to some programming language (PHP...), in JS the
default operator does not enforce a boolean result but returns the
original value, hence it being called the 'default' operator, as
opposed to the 'or' operator.
* No need to call addClass() twice, it takes a space-separated list
(jQuery splits by space and adds if needed)
* Use .on( event[, selector], fn ) instead of the deprecated
routers to it such as .bind(), .delegate() and .live().
All these three are now built-in and fully compatible with .on()
* Add 'XXX:' comments for suspicious code that I don't want to change
as part of a clean up commit.
* Remove unused variables (several var x = this; where x was not
used anywhere, possibly from boilerplate copy/paste)
* Follows-up Trevor's commit that converts test suites to the new
QUnit format. Also removed the globals since we no longer use those
any more.
Change-Id: I7e37c9bff812e371c7f65a6fd85d9e2af3e0a22f
2012-07-27 08:43:33 +00:00
|
|
|
ve.ui.IndentationButtonTool.prototype.onClick = function () {
|
2012-08-27 21:34:08 +00:00
|
|
|
if ( !this.$.hasClass( 've-ui-toolbarButtonTool-disabled' ) ) {
|
2012-07-20 00:24:54 +00:00
|
|
|
var listItems = [],
|
2011-12-08 23:45:07 +00:00
|
|
|
listItem,
|
|
|
|
i;
|
2012-06-21 01:42:27 +00:00
|
|
|
// FIXME old code, doesn't work
|
2011-12-08 23:45:07 +00:00
|
|
|
for ( i = 0; i < this.nodes.length; i++ ) {
|
|
|
|
listItem = this.nodes[i].getParent();
|
|
|
|
if ( listItems.length > 0 ) {
|
2012-07-19 03:40:49 +00:00
|
|
|
if (listItem !== listItems[listItems.length - 1]) {
|
2011-12-08 23:45:07 +00:00
|
|
|
listItems.push( listItem );
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
listItems.push( listItem );
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if ( this.name === 'indent' ) {
|
|
|
|
this.indent( listItems );
|
|
|
|
} else if ( this.name === 'outdent' ) {
|
|
|
|
this.outdent( listItems );
|
|
|
|
}
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
2012-09-17 13:30:50 +00:00
|
|
|
ve.ui.IndentationButtonTool.prototype.indent = function () {
|
2012-07-07 21:19:14 +00:00
|
|
|
ve.ui.IndentationButtonTool.indentListItem( this.toolbar.getSurfaceView().getModel() );
|
|
|
|
};
|
|
|
|
|
2012-09-17 13:30:50 +00:00
|
|
|
ve.ui.IndentationButtonTool.prototype.outdent = function () {
|
2012-07-07 21:19:14 +00:00
|
|
|
ve.ui.IndentationButtonTool.outdentListItem( this.toolbar.getSurfaceView().getModel() );
|
|
|
|
};
|
|
|
|
|
Kranitor #1: On-boarding
'''Kranitor commits''' are commits by Krinkle with his janitor hat on.
Must never contain functional changes mixed with miscellaneous changes.
.gitignore:
* Add .DS_Store to the ignore list so that browsing the directories
on Mac OS X, will not add these files to the list of untracked
files.
* Fix missing newline at end of file
.jshintrc
* raises -> throws
* +module (QUnit.module)
* remove 'Node' (as of node-jshint 1.7.2 this is now part of
'browser:true', as it should be)
Authors:
* Adding myself
MWExtension/VisualEditor.php
* Fix default value of wgVisualEditorParsoidURL to not
point to the experimental instance in WMF Labs.
Issues:
* ve.ce.TextNode:
- Fix TODO: Don't perform a useless clone of an already-jQuerified object.
- Use .html() to set html content instead of encapsulating between
two strings. This is slightly faster but more importantly safer,
and prevents situations where the resulting jQuery collection
actually contains 2 elements instead of 1, thus messing up
what .contents() is iterating over.
* ve.ce.Document.test.js
- Fix: ReferenceError: assert is not defined
* ve.dm.Document.test.js
- Fix: ReferenceError: assert is not defined
* ve.dm.Transaction.test.js
- Fix: ReferenceError: assert is not defined
* ve.dm.TransactionProcessor.test.js
- Fix: ReferenceError: assert is not defined
* ext.visualEditor.viewPageTarget
- Missing dependency on 'mediawiki.Title'
Code conventions / Misc cleanup
* Various JSHint warnings.
* Whitespace
* jQuery(): Use '<tag>' for element creation,
use '<valid><xml/></valid>' for parsing
* Use the default operator instead of ternary when the condition and
first value are the same.
x = foo ? foo : bar; -> x = foo || bar;
Because contrary to some programming language (PHP...), in JS the
default operator does not enforce a boolean result but returns the
original value, hence it being called the 'default' operator, as
opposed to the 'or' operator.
* No need to call addClass() twice, it takes a space-separated list
(jQuery splits by space and adds if needed)
* Use .on( event[, selector], fn ) instead of the deprecated
routers to it such as .bind(), .delegate() and .live().
All these three are now built-in and fully compatible with .on()
* Add 'XXX:' comments for suspicious code that I don't want to change
as part of a clean up commit.
* Remove unused variables (several var x = this; where x was not
used anywhere, possibly from boilerplate copy/paste)
* Follows-up Trevor's commit that converts test suites to the new
QUnit format. Also removed the globals since we no longer use those
any more.
Change-Id: I7e37c9bff812e371c7f65a6fd85d9e2af3e0a22f
2012-07-27 08:43:33 +00:00
|
|
|
ve.ui.IndentationButtonTool.indentListItem = function ( surfaceModel ) {
|
|
|
|
var i, group,
|
|
|
|
documentModel = surfaceModel.getDocument(),
|
2012-07-07 20:00:17 +00:00
|
|
|
selection = surfaceModel.getSelection(),
|
|
|
|
groups = documentModel.getCoveredSiblingGroups( selection );
|
|
|
|
|
|
|
|
function indentListItem( listItem ) {
|
|
|
|
/*
|
|
|
|
* Indenting a list item is done as follows:
|
|
|
|
* 1. Wrap the listItem in a list and a listItem (<li> --> <li><ul><li>)
|
|
|
|
* 2. Merge this wrapped listItem into the previous listItem if present
|
|
|
|
* (<li>Previous</li><li><ul><li>This --> <li>Previous<ul><li>This)
|
|
|
|
* 3. If this results in the wrapped list being preceded by another list,
|
|
|
|
* merge those lists.
|
|
|
|
*/
|
|
|
|
var tx,
|
|
|
|
listType = listItem.getParent().getAttribute( 'style' ),
|
|
|
|
listItemRange = listItem.getOuterRange(),
|
|
|
|
innerListItemRange,
|
|
|
|
outerListItemRange,
|
|
|
|
mergeStart,
|
|
|
|
mergeEnd;
|
|
|
|
|
|
|
|
// CAREFUL: after initializing the variables above, we cannot use the model tree!
|
|
|
|
// The first transaction will cause rebuilds so the nodes we have references to now
|
|
|
|
// will be detached and useless after the first transaction. Instead, inspect
|
|
|
|
// documentModel.data to find out things about the current structure.
|
|
|
|
|
|
|
|
// (1) Wrap the listItem in a list and a listItem
|
|
|
|
tx = ve.dm.Transaction.newFromWrap( documentModel,
|
|
|
|
listItemRange,
|
|
|
|
[],
|
|
|
|
[ { 'type': 'listItem' }, { 'type': 'list', 'attributes': { 'style': listType } } ],
|
|
|
|
[],
|
|
|
|
[]
|
|
|
|
);
|
|
|
|
surfaceModel.change( tx );
|
|
|
|
selection = tx.translateRange( selection );
|
|
|
|
// tx.translateRange( innerListItemRange ) doesn't do what we want
|
|
|
|
innerListItemRange = ve.Range.newFromTranslatedRange( listItemRange, 2 );
|
|
|
|
outerListItemRange = new ve.Range( listItemRange.start, listItemRange.end + 2 );
|
|
|
|
|
|
|
|
// (2) Merge the listItem into the previous listItem (if there is one)
|
|
|
|
if (
|
|
|
|
documentModel.data[listItemRange.start].type === 'listItem' &&
|
|
|
|
documentModel.data[listItemRange.start - 1].type === '/listItem'
|
|
|
|
) {
|
|
|
|
mergeStart = listItemRange.start - 1;
|
|
|
|
mergeEnd = listItemRange.start + 1;
|
|
|
|
// (3) If this results in adjacent lists, merge those too
|
|
|
|
if (
|
|
|
|
documentModel.data[mergeEnd].type === 'list' &&
|
|
|
|
documentModel.data[mergeStart - 1].type === '/list'
|
|
|
|
) {
|
|
|
|
mergeStart--;
|
|
|
|
mergeEnd++;
|
|
|
|
}
|
|
|
|
tx = ve.dm.Transaction.newFromRemoval( documentModel, new ve.Range( mergeStart, mergeEnd ) );
|
|
|
|
surfaceModel.change( tx );
|
|
|
|
selection = tx.translateRange( selection );
|
|
|
|
innerListItemRange = tx.translateRange( innerListItemRange );
|
|
|
|
outerListItemRange = tx.translateRange( outerListItemRange );
|
|
|
|
}
|
|
|
|
|
|
|
|
// TODO If this listItem has a child list, split&unwrap it
|
|
|
|
|
|
|
|
surfaceModel.change( null, selection );
|
|
|
|
}
|
|
|
|
|
Kranitor #1: On-boarding
'''Kranitor commits''' are commits by Krinkle with his janitor hat on.
Must never contain functional changes mixed with miscellaneous changes.
.gitignore:
* Add .DS_Store to the ignore list so that browsing the directories
on Mac OS X, will not add these files to the list of untracked
files.
* Fix missing newline at end of file
.jshintrc
* raises -> throws
* +module (QUnit.module)
* remove 'Node' (as of node-jshint 1.7.2 this is now part of
'browser:true', as it should be)
Authors:
* Adding myself
MWExtension/VisualEditor.php
* Fix default value of wgVisualEditorParsoidURL to not
point to the experimental instance in WMF Labs.
Issues:
* ve.ce.TextNode:
- Fix TODO: Don't perform a useless clone of an already-jQuerified object.
- Use .html() to set html content instead of encapsulating between
two strings. This is slightly faster but more importantly safer,
and prevents situations where the resulting jQuery collection
actually contains 2 elements instead of 1, thus messing up
what .contents() is iterating over.
* ve.ce.Document.test.js
- Fix: ReferenceError: assert is not defined
* ve.dm.Document.test.js
- Fix: ReferenceError: assert is not defined
* ve.dm.Transaction.test.js
- Fix: ReferenceError: assert is not defined
* ve.dm.TransactionProcessor.test.js
- Fix: ReferenceError: assert is not defined
* ext.visualEditor.viewPageTarget
- Missing dependency on 'mediawiki.Title'
Code conventions / Misc cleanup
* Various JSHint warnings.
* Whitespace
* jQuery(): Use '<tag>' for element creation,
use '<valid><xml/></valid>' for parsing
* Use the default operator instead of ternary when the condition and
first value are the same.
x = foo ? foo : bar; -> x = foo || bar;
Because contrary to some programming language (PHP...), in JS the
default operator does not enforce a boolean result but returns the
original value, hence it being called the 'default' operator, as
opposed to the 'or' operator.
* No need to call addClass() twice, it takes a space-separated list
(jQuery splits by space and adds if needed)
* Use .on( event[, selector], fn ) instead of the deprecated
routers to it such as .bind(), .delegate() and .live().
All these three are now built-in and fully compatible with .on()
* Add 'XXX:' comments for suspicious code that I don't want to change
as part of a clean up commit.
* Remove unused variables (several var x = this; where x was not
used anywhere, possibly from boilerplate copy/paste)
* Follows-up Trevor's commit that converts test suites to the new
QUnit format. Also removed the globals since we no longer use those
any more.
Change-Id: I7e37c9bff812e371c7f65a6fd85d9e2af3e0a22f
2012-07-27 08:43:33 +00:00
|
|
|
for ( i = 0; i < groups.length; i++ ) {
|
2012-07-07 20:00:17 +00:00
|
|
|
group = groups[i];
|
|
|
|
if ( group.grandparent && group.grandparent.getType() === 'list' ) {
|
|
|
|
// FIXME this doesn't work when trying to work with multiple list items
|
|
|
|
indentListItem( group.parent );
|
2011-12-08 23:45:07 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
Kranitor #1: On-boarding
'''Kranitor commits''' are commits by Krinkle with his janitor hat on.
Must never contain functional changes mixed with miscellaneous changes.
.gitignore:
* Add .DS_Store to the ignore list so that browsing the directories
on Mac OS X, will not add these files to the list of untracked
files.
* Fix missing newline at end of file
.jshintrc
* raises -> throws
* +module (QUnit.module)
* remove 'Node' (as of node-jshint 1.7.2 this is now part of
'browser:true', as it should be)
Authors:
* Adding myself
MWExtension/VisualEditor.php
* Fix default value of wgVisualEditorParsoidURL to not
point to the experimental instance in WMF Labs.
Issues:
* ve.ce.TextNode:
- Fix TODO: Don't perform a useless clone of an already-jQuerified object.
- Use .html() to set html content instead of encapsulating between
two strings. This is slightly faster but more importantly safer,
and prevents situations where the resulting jQuery collection
actually contains 2 elements instead of 1, thus messing up
what .contents() is iterating over.
* ve.ce.Document.test.js
- Fix: ReferenceError: assert is not defined
* ve.dm.Document.test.js
- Fix: ReferenceError: assert is not defined
* ve.dm.Transaction.test.js
- Fix: ReferenceError: assert is not defined
* ve.dm.TransactionProcessor.test.js
- Fix: ReferenceError: assert is not defined
* ext.visualEditor.viewPageTarget
- Missing dependency on 'mediawiki.Title'
Code conventions / Misc cleanup
* Various JSHint warnings.
* Whitespace
* jQuery(): Use '<tag>' for element creation,
use '<valid><xml/></valid>' for parsing
* Use the default operator instead of ternary when the condition and
first value are the same.
x = foo ? foo : bar; -> x = foo || bar;
Because contrary to some programming language (PHP...), in JS the
default operator does not enforce a boolean result but returns the
original value, hence it being called the 'default' operator, as
opposed to the 'or' operator.
* No need to call addClass() twice, it takes a space-separated list
(jQuery splits by space and adds if needed)
* Use .on( event[, selector], fn ) instead of the deprecated
routers to it such as .bind(), .delegate() and .live().
All these three are now built-in and fully compatible with .on()
* Add 'XXX:' comments for suspicious code that I don't want to change
as part of a clean up commit.
* Remove unused variables (several var x = this; where x was not
used anywhere, possibly from boilerplate copy/paste)
* Follows-up Trevor's commit that converts test suites to the new
QUnit format. Also removed the globals since we no longer use those
any more.
Change-Id: I7e37c9bff812e371c7f65a6fd85d9e2af3e0a22f
2012-07-27 08:43:33 +00:00
|
|
|
ve.ui.IndentationButtonTool.outdentListItem = function ( surfaceModel ) {
|
|
|
|
var i, group,
|
|
|
|
documentModel = surfaceModel.getDocument(),
|
2012-07-07 20:00:17 +00:00
|
|
|
selection = surfaceModel.getSelection(),
|
|
|
|
groups = documentModel.getCoveredSiblingGroups( selection );
|
|
|
|
|
|
|
|
function outdentListItem( listItem ) {
|
|
|
|
/*
|
|
|
|
* Outdenting a list item is done as follows:
|
|
|
|
* 1. Split the parent list to isolate the listItem in its own list
|
|
|
|
* 1a. Split the list before the listItem if it's not the first child
|
|
|
|
* 1b. Split the list after the listItem if it's not the last child
|
|
|
|
* 2. If this isolated list's parent is not a listItem, unwrap the listItem and the isolated list, and stop.
|
|
|
|
* 3. Split the parent listItem to isolate the list in its own listItem
|
|
|
|
* 3a. Split the listItem before the list if it's not the first child
|
|
|
|
* 3b. Split the listItem after the list if it's not the last child
|
|
|
|
* 4. Unwrap the now-isolated listItem and the isolated list
|
|
|
|
*/
|
2012-09-17 13:30:50 +00:00
|
|
|
// TODO: Child list handling, gotta figure that out.
|
2012-07-07 20:00:17 +00:00
|
|
|
var tx,
|
|
|
|
list = listItem.getParent(),
|
|
|
|
listElement = list.getClonedElement(),
|
|
|
|
grandParentType = list.getParent().getType(),
|
|
|
|
listItemRange = listItem.getOuterRange(),
|
|
|
|
splitListRange;
|
|
|
|
|
|
|
|
// CAREFUL: after initializing the variables above, we cannot use the model tree!
|
|
|
|
// The first transaction will cause rebuilds so the nodes we have references to now
|
|
|
|
// will be detached and useless after the first transaction. Instead, inspect
|
|
|
|
// documentModel.data to find out things about the current structure.
|
|
|
|
|
|
|
|
// (1) Split the listItem into a separate list
|
|
|
|
if ( documentModel.data[listItemRange.start - 1].type !== 'list' ) {
|
|
|
|
// (1a) listItem is not the first child, split the list before listItem
|
|
|
|
tx = ve.dm.Transaction.newFromInsertion( documentModel, listItemRange.start,
|
|
|
|
[ { 'type': '/list' }, listElement ]
|
|
|
|
);
|
|
|
|
surfaceModel.change( tx );
|
|
|
|
selection = tx.translateRange( selection );
|
|
|
|
// tx.translateRange( listItemRange ) doesn't do what we want
|
|
|
|
listItemRange = ve.Range.newFromTranslatedRange( listItemRange, 2 );
|
|
|
|
}
|
|
|
|
if ( documentModel.data[listItemRange.end].type !== '/list' ) {
|
|
|
|
// (1b) listItem is not the last child, split the list after listItem
|
|
|
|
tx = ve.dm.Transaction.newFromInsertion( documentModel, listItemRange.end,
|
|
|
|
[ { 'type': '/list' }, listElement ]
|
2011-12-08 23:45:07 +00:00
|
|
|
);
|
2012-07-07 20:00:17 +00:00
|
|
|
surfaceModel.change( tx );
|
|
|
|
selection = tx.translateRange( selection );
|
|
|
|
// listItemRange is not affected by this transaction
|
|
|
|
}
|
|
|
|
splitListRange = new ve.Range( listItemRange.start - 1, listItemRange.end + 1 );
|
|
|
|
|
|
|
|
if ( grandParentType !== 'listItem' ) {
|
|
|
|
// The user is trying to unindent a list item that's not nested
|
|
|
|
// (2) Unwrap both the list and the listItem, dumping the listItem's contents
|
|
|
|
// into the list's parent
|
|
|
|
tx = ve.dm.Transaction.newFromWrap( documentModel,
|
|
|
|
new ve.Range( listItemRange.start + 1, listItemRange.end - 1 ),
|
|
|
|
[ { 'type': 'list' }, { 'type': 'listItem' } ],
|
|
|
|
[],
|
|
|
|
[],
|
|
|
|
[]
|
|
|
|
);
|
|
|
|
surfaceModel.change( tx );
|
|
|
|
selection = tx.translateRange( selection );
|
|
|
|
} else {
|
|
|
|
// (3) Split the list away from parentListItem into its own listItem
|
|
|
|
// TODO factor common split logic somehow?
|
|
|
|
if ( documentModel.data[splitListRange.start - 1].type !== 'listItem' ) {
|
|
|
|
// (3a) Split parentListItem before list
|
|
|
|
tx = ve.dm.Transaction.newFromInsertion( documentModel, splitListRange.start,
|
|
|
|
[ { 'type': '/listItem' }, { 'type': 'listItem' } ]
|
|
|
|
);
|
|
|
|
surfaceModel.change( tx );
|
|
|
|
selection = tx.translateRange( selection );
|
|
|
|
// tx.translateRange( splitListRange ) doesn't do what we want
|
|
|
|
splitListRange = ve.Range.newFromTranslatedRange( splitListRange, 2 );
|
|
|
|
}
|
|
|
|
if ( documentModel.data[splitListRange.end].type !== '/listItem' ) {
|
|
|
|
// (3b) Split parentListItem after list
|
|
|
|
tx = ve.dm.Transaction.newFromInsertion( documentModel, splitListRange.end,
|
|
|
|
[ { 'type': '/listItem' }, { 'type': 'listItem' } ]
|
|
|
|
);
|
|
|
|
surfaceModel.change( tx );
|
|
|
|
selection = tx.translateRange( selection );
|
|
|
|
// splitListRange is not affected by this transaction
|
|
|
|
}
|
|
|
|
|
|
|
|
// (4) Unwrap the list and its containing listItem
|
|
|
|
tx = ve.dm.Transaction.newFromWrap( documentModel,
|
|
|
|
new ve.Range( splitListRange.start + 1, splitListRange.end - 1 ),
|
|
|
|
[ { 'type': 'listItem' }, { 'type': 'list' } ],
|
|
|
|
[],
|
|
|
|
[],
|
|
|
|
[]
|
|
|
|
);
|
|
|
|
surfaceModel.change( tx );
|
|
|
|
selection = tx.translateRange( selection );
|
|
|
|
}
|
|
|
|
|
|
|
|
surfaceModel.change( null, selection );
|
|
|
|
}
|
|
|
|
|
Kranitor #1: On-boarding
'''Kranitor commits''' are commits by Krinkle with his janitor hat on.
Must never contain functional changes mixed with miscellaneous changes.
.gitignore:
* Add .DS_Store to the ignore list so that browsing the directories
on Mac OS X, will not add these files to the list of untracked
files.
* Fix missing newline at end of file
.jshintrc
* raises -> throws
* +module (QUnit.module)
* remove 'Node' (as of node-jshint 1.7.2 this is now part of
'browser:true', as it should be)
Authors:
* Adding myself
MWExtension/VisualEditor.php
* Fix default value of wgVisualEditorParsoidURL to not
point to the experimental instance in WMF Labs.
Issues:
* ve.ce.TextNode:
- Fix TODO: Don't perform a useless clone of an already-jQuerified object.
- Use .html() to set html content instead of encapsulating between
two strings. This is slightly faster but more importantly safer,
and prevents situations where the resulting jQuery collection
actually contains 2 elements instead of 1, thus messing up
what .contents() is iterating over.
* ve.ce.Document.test.js
- Fix: ReferenceError: assert is not defined
* ve.dm.Document.test.js
- Fix: ReferenceError: assert is not defined
* ve.dm.Transaction.test.js
- Fix: ReferenceError: assert is not defined
* ve.dm.TransactionProcessor.test.js
- Fix: ReferenceError: assert is not defined
* ext.visualEditor.viewPageTarget
- Missing dependency on 'mediawiki.Title'
Code conventions / Misc cleanup
* Various JSHint warnings.
* Whitespace
* jQuery(): Use '<tag>' for element creation,
use '<valid><xml/></valid>' for parsing
* Use the default operator instead of ternary when the condition and
first value are the same.
x = foo ? foo : bar; -> x = foo || bar;
Because contrary to some programming language (PHP...), in JS the
default operator does not enforce a boolean result but returns the
original value, hence it being called the 'default' operator, as
opposed to the 'or' operator.
* No need to call addClass() twice, it takes a space-separated list
(jQuery splits by space and adds if needed)
* Use .on( event[, selector], fn ) instead of the deprecated
routers to it such as .bind(), .delegate() and .live().
All these three are now built-in and fully compatible with .on()
* Add 'XXX:' comments for suspicious code that I don't want to change
as part of a clean up commit.
* Remove unused variables (several var x = this; where x was not
used anywhere, possibly from boilerplate copy/paste)
* Follows-up Trevor's commit that converts test suites to the new
QUnit format. Also removed the globals since we no longer use those
any more.
Change-Id: I7e37c9bff812e371c7f65a6fd85d9e2af3e0a22f
2012-07-27 08:43:33 +00:00
|
|
|
for ( i = 0; i < groups.length; i++ ) {
|
2012-07-07 20:00:17 +00:00
|
|
|
group = groups[i];
|
|
|
|
if ( group.grandparent && group.grandparent.getType() === 'list' ) {
|
|
|
|
// FIXME this doesn't work when trying to work with multiple list items
|
|
|
|
outdentListItem( group.parent );
|
2011-12-08 23:45:07 +00:00
|
|
|
}
|
2011-12-07 20:06:04 +00:00
|
|
|
}
|
2011-12-04 02:59:53 +00:00
|
|
|
};
|
|
|
|
|
2012-09-18 23:09:43 +00:00
|
|
|
ve.ui.IndentationButtonTool.prototype.onUpdateState = function ( annotations, nodes ) {
|
2011-12-07 20:06:04 +00:00
|
|
|
function areListItems( nodes ) {
|
Kranitor #1: On-boarding
'''Kranitor commits''' are commits by Krinkle with his janitor hat on.
Must never contain functional changes mixed with miscellaneous changes.
.gitignore:
* Add .DS_Store to the ignore list so that browsing the directories
on Mac OS X, will not add these files to the list of untracked
files.
* Fix missing newline at end of file
.jshintrc
* raises -> throws
* +module (QUnit.module)
* remove 'Node' (as of node-jshint 1.7.2 this is now part of
'browser:true', as it should be)
Authors:
* Adding myself
MWExtension/VisualEditor.php
* Fix default value of wgVisualEditorParsoidURL to not
point to the experimental instance in WMF Labs.
Issues:
* ve.ce.TextNode:
- Fix TODO: Don't perform a useless clone of an already-jQuerified object.
- Use .html() to set html content instead of encapsulating between
two strings. This is slightly faster but more importantly safer,
and prevents situations where the resulting jQuery collection
actually contains 2 elements instead of 1, thus messing up
what .contents() is iterating over.
* ve.ce.Document.test.js
- Fix: ReferenceError: assert is not defined
* ve.dm.Document.test.js
- Fix: ReferenceError: assert is not defined
* ve.dm.Transaction.test.js
- Fix: ReferenceError: assert is not defined
* ve.dm.TransactionProcessor.test.js
- Fix: ReferenceError: assert is not defined
* ext.visualEditor.viewPageTarget
- Missing dependency on 'mediawiki.Title'
Code conventions / Misc cleanup
* Various JSHint warnings.
* Whitespace
* jQuery(): Use '<tag>' for element creation,
use '<valid><xml/></valid>' for parsing
* Use the default operator instead of ternary when the condition and
first value are the same.
x = foo ? foo : bar; -> x = foo || bar;
Because contrary to some programming language (PHP...), in JS the
default operator does not enforce a boolean result but returns the
original value, hence it being called the 'default' operator, as
opposed to the 'or' operator.
* No need to call addClass() twice, it takes a space-separated list
(jQuery splits by space and adds if needed)
* Use .on( event[, selector], fn ) instead of the deprecated
routers to it such as .bind(), .delegate() and .live().
All these three are now built-in and fully compatible with .on()
* Add 'XXX:' comments for suspicious code that I don't want to change
as part of a clean up commit.
* Remove unused variables (several var x = this; where x was not
used anywhere, possibly from boilerplate copy/paste)
* Follows-up Trevor's commit that converts test suites to the new
QUnit format. Also removed the globals since we no longer use those
any more.
Change-Id: I7e37c9bff812e371c7f65a6fd85d9e2af3e0a22f
2012-07-27 08:43:33 +00:00
|
|
|
for ( var i = 0; i < nodes.length; i++ ) {
|
2012-06-20 01:20:28 +00:00
|
|
|
if (
|
|
|
|
nodes[i].parent !== null &&
|
|
|
|
nodes[i].getParent().getType() !== 'listItem' )
|
|
|
|
{
|
2011-12-04 02:59:53 +00:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2011-12-08 23:45:07 +00:00
|
|
|
this.nodes = nodes;
|
|
|
|
if ( areListItems( this.nodes ) ) {
|
2012-08-27 21:34:08 +00:00
|
|
|
this.$.removeClass( 've-ui-toolbarButtonTool-disabled' );
|
2011-12-04 02:59:53 +00:00
|
|
|
} else {
|
2012-08-27 21:34:08 +00:00
|
|
|
this.$.addClass( 've-ui-toolbarButtonTool-disabled' );
|
2011-12-04 02:59:53 +00:00
|
|
|
}
|
|
|
|
};
|
|
|
|
|
2011-12-05 21:10:19 +00:00
|
|
|
/* Registration */
|
|
|
|
|
2012-02-06 23:50:56 +00:00
|
|
|
ve.ui.Tool.tools.indent = {
|
|
|
|
'constructor': ve.ui.IndentationButtonTool,
|
2011-12-09 21:16:42 +00:00
|
|
|
'name': 'indent',
|
2012-07-24 02:15:23 +00:00
|
|
|
'title': ve.msg( 'visualeditor-indentationbutton-indent-tooltip' )
|
2011-12-04 02:59:53 +00:00
|
|
|
};
|
|
|
|
|
2012-02-06 23:50:56 +00:00
|
|
|
ve.ui.Tool.tools.outdent = {
|
|
|
|
'constructor': ve.ui.IndentationButtonTool,
|
2011-12-09 21:16:42 +00:00
|
|
|
'name': 'outdent',
|
2012-07-24 02:15:23 +00:00
|
|
|
'title': ve.msg( 'visualeditor-indentationbutton-outdent-tooltip' )
|
2011-12-04 02:59:53 +00:00
|
|
|
};
|