mediawiki-extensions-Visual.../tests/ve2/dm/ve.dm.example.js

497 lines
14 KiB
JavaScript
Raw Normal View History

/* Static Members */
ve.dm.example = {};
/**
* Serialized HTML.
*
* This is what the parser will emit.
*/
ve.dm.example.html =
'<h1>a<b>b</b><i>c</i></h1>' +
'<table>' +
'<tr>' +
'<td>' +
'<p>d</p>' +
'<ul>' +
'<li>' +
'<p>e</p>' +
'<ul>' +
'<li>' +
'<p>f</p>' +
'</li>' +
'</ul>' +
'</li>' +
'</ul>' +
'<ol>' +
'<li>' +
'<p>g</p>' +
'</li>' +
'</ol>' +
'</td>' +
'</tr>' +
'</table>' +
'<pre>h<img src="image.png">i</pre>'+
'<dl>' +
'<dt>' +
'<p>j</p>' +
'</dt>' +
'<dd>' +
'<p>k</p>' +
'</dd>' +
'</dl>' +
'<p>l</p>' +
'<p>m</p>';
/*
* Linear data.
*
* This is what we convert serialized HTML from the parser into so we can work with it more easily.
*
* There are three types of components in content data:
*
* {String} Plain text character
*
* {Array} Annotated character
* 0: {String} Character
* 1: {Object} List of references to immutable annotation objects, keyed by JSON
* serializations of their values (hashes)
*
* {Object} Opening or closing structural element
* type: {String} Symbolic node type name, if closing element first character will be "/"
* [attributes]: {Object} List of symbolic attribute name and literal value pairs
*/
ve.dm.example.data = [
// 0 - Beginning of heading
{ 'type': 'heading', 'attributes': { 'level': 1 } },
// 1 - Plain "a"
'a',
// 2 - Bold "b"
['b', { '{"type":"textStyle/bold"}': { 'type': 'textStyle/bold' } }],
// 3 - Italic "c"
['c', { '{"type":"textStyle/italic"}': { 'type': 'textStyle/italic' } }],
// 4 - End of heading
{ 'type': '/heading' },
// 5 - Beginning of table
{ 'type': 'table' },
// 6 - Beginning of row
{ 'type': 'tableRow' },
// 7 - Beginning of cell
{ 'type': 'tableCell' },
// 8 - Beginning of paragraph
{ 'type': 'paragraph' },
// 9 - Plain "d"
'd',
// 10 - End of paragraph
{ 'type': '/paragraph' },
// 11 - Beginning of bullet list
{ 'type': 'list', 'attributes': { 'style': 'bullet' } },
// 12 - Beginning of list item
{ 'type': 'listItem' },
// 13 - Beginning of paragraph
{ 'type': 'paragraph' },
// 14 - Plain "e"
'e',
// 15 - End of paragraph
{ 'type': '/paragraph' },
// 16 - Beginning of nested bullet list
{ 'type': 'list', 'attributes': { 'style': 'bullet' } },
// 17 - Beginning of nested bullet list item
{ 'type': 'listItem' },
// 18 - Beginning of paragraph
{ 'type': 'paragraph' },
// 19 - Plain "f"
'f',
// 20 - End of paragraph
{ 'type': '/paragraph' },
// 21 - End of nested bullet list item
{ 'type': '/listItem' },
// 22 - End of nested bullet list
{ 'type': '/list' },
// 23 - End of bullet list item
{ 'type': '/listItem' },
// 24 - End of bullet list
{ 'type': '/list' },
// 25 - Beginning of numbered list
{ 'type': 'list', 'attributes': { 'style': 'number' } },
// 26 - Beginning of numbered list item
{ 'type': 'listItem' },
// 27 - Beginning of paragraph
{ 'type': 'paragraph' },
// 28 - Plain "g"
'g',
// 29 - End of paragraph
{ 'type': '/paragraph' },
// 30 - End of item
{ 'type': '/listItem' },
// 31 - End of list
{ 'type': '/list' },
// 32 - End of cell
{ 'type': '/tableCell' },
// 33 - End of row
{ 'type': '/tableRow' },
// 34 - End of table
{ 'type': '/table' },
// 35 - Beginning of preformatted
{ 'type': 'preformatted' },
// 36 - Plain "h"
'h',
// 37 - Beginning of inline image
{ 'type': 'image', 'attributes': { 'html/src': 'image.png' } },
// 38 - End of inline image
{ 'type': '/image' },
// 39 - Plain "i"
'i',
// 40 - End of preformatted
{ 'type': '/preformatted' },
// 41 - Beginning of definition list
{ 'type': 'definitionList' },
// 42 - Beginning of definition list term item
{ 'type': 'definitionListItem', 'attributes': { 'style': 'term' } },
// 43 - Beginning of paragraph
{ 'type': 'paragraph' },
// 44 - Plain "j"
'j',
// 45 - End of paragraph
{ 'type': '/paragraph' },
// 46 - End of definition list term item
{ 'type': '/definitionListItem' },
// 47 - Beginning of definition list definition item
{ 'type': 'definitionListItem', 'attributes': { 'style': 'definition' } },
// 48 - Beginning of paragraph
{ 'type': 'paragraph' },
// 49 - Plain "k"
'k',
// 50 - End of paragraph
{ 'type': '/paragraph' },
// 51 - End of definition list definition item
{ 'type': '/definitionListItem' },
// 52 - End of definition list
{ 'type': '/definitionList' },
// 53 - Beginning of paragraph
{ 'type': 'paragraph' },
// 54 - Plain "l"
'l',
// 55 - End of paragraph
{ 'type': '/paragraph' },
// 56 - Beginning of paragraph
{ 'type': 'paragraph' },
// 57 - Plain "m"
'm',
// 58 - End of paragraph
{ 'type': '/paragraph' }
// 59 - End of document
];
ve.dm.example.alienData = [
// 0 - Open alienBlock
{ 'type': 'alienBlock' },
// 1 - Close alienBlock
{ 'type': '/alienBlock' },
// 2 - Open paragraph
{ 'type': 'paragraph' },
// 3 - Plain character 'a'
'a',
// 4 - Open alienInline
{ 'type': 'alienBlock' },
// 5 - Close alienInline
{ 'type': '/alienBlock' },
// 6 - Plain character 'b'
'b',
// 7 - Close paragraph
{ 'type': '/paragraph' },
// 8 - Open alienBlock
{ 'type': 'alienBlock' },
// 9 - Close alienBlock
{ 'type': '/alienBlock' }
// 10 - End of document
];
/**
* Sample content data index.
*
* This is part of what a ve.dm.DocumentFragment generates when given linear data.
*
* (21) branch nodes
* (01) document node
* (01) heading node
* (01) table node
* (01) tableRow node
* (01) tableCell node
* (06) paragraph nodes
* (03) list nodes
* (03) listItem nodes
* (01) preformatted node
* (01) definitionList node
* (02) definitionListItem nodes
* (10) leaf nodes
* (09) text nodes
* (01) image node
*/
ve.dm.example.tree = new ve.dm.DocumentNode( [
// Heading with "abc"
new ve.dm.HeadingNode( [new ve.dm.TextNode( 3 )], ve.dm.example.data[0].attributes ),
new ve.dm.TableNode( [
new ve.dm.TableRowNode( [
new ve.dm.TableCellNode( [
// Paragraph with "d"
new ve.dm.ParagraphNode( [new ve.dm.TextNode( 1 )] ),
new ve.dm.ListNode( [
// 1st level bullet list item with "e"
new ve.dm.ListItemNode( [
new ve.dm.ParagraphNode( [new ve.dm.TextNode( 1 )] ),
new ve.dm.ListNode( [
// 2nd level bullet list item with "f"
new ve.dm.ListItemNode( [
new ve.dm.ParagraphNode( [new ve.dm.TextNode( 1 )] )
] )
], ve.dm.example.data[16].attributes )
] )
], ve.dm.example.data[11].attributes ),
new ve.dm.ListNode( [
// Numbered list item with "g"
new ve.dm.ListItemNode( [
new ve.dm.ParagraphNode( [new ve.dm.TextNode( 1 )] )
] )
], ve.dm.example.data[25].attributes )
] )
] )
] ),
// Preformatted with "h[image.png]i"
new ve.dm.PreformattedNode( [
new ve.dm.TextNode( 1 ),
new ve.dm.ImageNode( [], ve.dm.example.data[37].attributes ),
new ve.dm.TextNode( 1 )
] ),
new ve.dm.DefinitionListNode( [
// Definition list term item with "j"
new ve.dm.DefinitionListItemNode( [
new ve.dm.ParagraphNode( [new ve.dm.TextNode( 1 )] )
], ve.dm.example.data[42].attributes ),
// Definition list definition item with "k"
new ve.dm.DefinitionListItemNode( [
new ve.dm.ParagraphNode( [new ve.dm.TextNode( 1 )] )
], ve.dm.example.data[47].attributes )
] ),
new ve.dm.ParagraphNode( [new ve.dm.TextNode( 1 )] ),
new ve.dm.ParagraphNode( [new ve.dm.TextNode( 1 )] )
] );
/* Methods */
/**
* Creates an offset map that references a node tree.
*
* This is part of what a ve.dm.DocumentFragment generates when given linear data.
*
* @method
* @param {ve.dm.DocumentNode} root Document node to reference
*/
ve.dm.example.getOffsetMap = function( root ) {
var lookup = ve.example.lookupNode;
return [
lookup( root ), // 0 - document
// <h1>
lookup( root, 0 ), // 1 - heading
// a
lookup( root, 0 ), // 2 - heading
// b (bold)
lookup( root, 0 ), // 3 - heading
// c (italic)
lookup( root, 0 ), // 4 - heading
// </h1>
lookup( root ), // 5 - document
// <table>
lookup( root, 1 ), // 6 - table
// <tr>
lookup( root, 1, 0 ), // 7 - tableRow
// <td>
lookup( root, 1, 0, 0 ), // 8 - tableCell
// <p>
lookup( root, 1, 0, 0, 0 ), // 9 - paragraph
// d
lookup( root, 1, 0, 0, 0 ), // 10 - paragraph
// </p>
lookup( root, 1, 0, 0 ), // 11 - tableCell
// <ul>
lookup( root, 1, 0, 0, 1 ), // 12 - list
// <li>
lookup( root, 1, 0, 0, 1, 0 ), // 13 - listItem
// <p>
lookup( root, 1, 0, 0, 1, 0, 0 ), // 14 - paragraph
// e
lookup( root, 1, 0, 0, 1, 0, 0 ), // 15 - paragraph
// </p>
lookup( root, 1, 0, 0, 1, 0 ), // 16 - listItem
// <ul>
lookup( root, 1, 0, 0, 1, 0, 1 ), // 17 - list
// <li>
lookup( root, 1, 0, 0, 1, 0, 1, 0 ), // 18 - listItem
// <p>
lookup( root, 1, 0, 0, 1, 0, 1, 0, 0 ), // 19 - paragraph
// f
lookup( root, 1, 0, 0, 1, 0, 1, 0, 0 ), // 20 - paragraph
// </p>
lookup( root, 1, 0, 0, 1, 0, 1, 0 ), // 21 - listItem
// </li>
lookup( root, 1, 0, 0, 1, 0, 1 ), // 22 - list
// </ul>
lookup( root, 1, 0, 0, 1, 0 ), // 23 - listItem
// </li>
lookup( root, 1, 0, 0, 1 ), // 24 - list
// </ul>
lookup( root, 1, 0, 0 ), // 25 - tableCell
// <ul>
lookup( root, 1, 0, 0, 2 ), // 26 - list
// <li>
lookup( root, 1, 0, 0, 2, 0 ), // 27 - listItem
// <p>
lookup( root, 1, 0, 0, 2, 0, 0 ), // 28 - paragraph
// g
lookup( root, 1, 0, 0, 2, 0, 0 ), // 29 - paragraph
// </p>
lookup( root, 1, 0, 0, 2, 0 ), // 30 - listItem
// </li>
lookup( root, 1, 0, 0, 2 ), // 31 - list
// </ul>
lookup( root, 1, 0, 0 ), // 32 - tableCell
// </td>
lookup( root, 1, 0 ), // 33 - tableRow
// </tr>
lookup( root, 1 ), // 34 - table
// </table>
lookup( root ), // 35- document
// <pre>
lookup( root, 2 ), // 36 - preformatted
// h
lookup( root, 2 ), // 37 - preformatted
// <img>
lookup( root, 2 ), // 38 - preformatted
// </img>
lookup( root, 2 ), // 39 - preformatted
// i
lookup( root, 2 ), // 40 - preformatted
// </pre>
lookup( root ), // 41 - document
// <dl>
lookup( root, 3 ), // 42 - definitionList
// <dt>
lookup( root, 3, 0 ), // 43 - definitionListItem
// <p>
lookup( root, 3, 0, 0 ), // 44 - paragraph
// j
lookup( root, 3, 0, 0 ), // 45 - paragraph
// </p>
lookup( root, 3, 0 ), // 46 - definitionListItem
// </dt>
lookup( root, 3 ), // 47 - definitionList
// <dd>
lookup( root, 3, 1 ), // 48 - definitionListItem
// <p>
lookup( root, 3, 1, 0 ), // 49 - paragraph
// k
lookup( root, 3, 1, 0 ), // 50 - paragraph
// </p>
lookup( root, 3, 1 ), // 51 - definitionListItem
// </dd>
lookup( root, 3 ), // 52 - definitionList
// </dl>
lookup( root ), // 53 - document
// <p>
lookup( root, 4 ), // 54 - paragraph
// f
lookup( root, 4 ), // 55 - paragraph
// </p>
lookup( root ), // 56 - document
// <p>
lookup( root, 5 ), // 57 - paragraph
// f
lookup( root, 5 ), // 58 - paragraph
// </p>
lookup( root ) // 59 - document
];
};
ve.dm.example.conversions = {
'definitionListItem term': {
'domElement': ve.example.createDomElement( 'dt' ),
'dataElement': { 'type': 'definitionListItem', 'attributes': { 'style': 'term' } }
},
'definitionListItem definition': {
'domElement': ve.example.createDomElement( 'dd' ),
'dataElement': { 'type': 'definitionListItem', 'attributes': { 'style': 'definition' } }
},
'definitionList definition': {
'domElement': ve.example.createDomElement( 'dl' ),
'dataElement': { 'type': 'definitionList' }
},
'heading level 1': {
'domElement': ve.example.createDomElement( 'h1' ),
'dataElement': { 'type': 'heading', 'attributes': { 'level': 1 } }
},
'heading level 2': {
'domElement': ve.example.createDomElement( 'h2' ),
'dataElement': { 'type': 'heading', 'attributes': { 'level': 2 } }
},
'heading level 3': {
'domElement': ve.example.createDomElement( 'h3' ),
'dataElement': { 'type': 'heading', 'attributes': { 'level': 3 } }
},
'heading level 4': {
'domElement': ve.example.createDomElement( 'h4' ),
'dataElement': { 'type': 'heading', 'attributes': { 'level': 4 } }
},
'heading level 5': {
'domElement': ve.example.createDomElement( 'h5' ),
'dataElement': { 'type': 'heading', 'attributes': { 'level': 5 } }
},
'heading level 6': {
'domElement': ve.example.createDomElement( 'h6' ),
'dataElement': { 'type': 'heading', 'attributes': { 'level': 6 } }
},
'image': {
'domElement': ve.example.createDomElement( 'image' ),
'dataElement': { 'type': 'image' }
},
'listItem': {
'domElement': ve.example.createDomElement( 'li' ),
'dataElement': { 'type': 'listItem' }
},
'list bullet': {
'domElement': ve.example.createDomElement( 'ul' ),
'dataElement': { 'type': 'list', 'attributes': { 'style': 'bullet' } }
},
'list number': {
'domElement': ve.example.createDomElement( 'ol' ),
'dataElement': { 'type': 'list', 'attributes': { 'style': 'number' } }
},
'paragraph': {
'domElement': ve.example.createDomElement( 'p' ),
'dataElement': { 'type': 'paragraph' }
},
'preformatted': {
'domElement': ve.example.createDomElement( 'pre' ),
'dataElement': { 'type': 'preformatted' }
},
'tableCell': {
'domElement': ve.example.createDomElement( 'td' ),
'dataElement': { 'type': 'tableCell' }
},
'table': {
'domElement': ve.example.createDomElement( 'table' ),
'dataElement': { 'type': 'table' }
},
'tableRow': {
'domElement': ve.example.createDomElement( 'tr' ),
'dataElement': { 'type': 'tableRow' }
},
'paragraph with mw-data attribute': {
'domElement': ve.example.createDomElement( 'p', { 'data-mw': '{"test":1234}' } ),
'dataElement': { 'type': 'paragraph', 'attributes': { 'html/data-mw': '{"test":1234}' } }
},
'paragraph with style attribute': {
'domElement': ve.example.createDomElement( 'p', { 'style': 'color:blue' } ),
'dataElement': { 'type': 'paragraph', 'attributes': { 'html/style': 'color:blue' } }
}
};