mirror of
https://gerrit.wikimedia.org/r/mediawiki/extensions/VisualEditor
synced 2024-11-15 02:23:58 +00:00
3c293ea00c
Change-Id: I8991b97c980d4149f53eb5601036220ef3c0c440
55 lines
1.4 KiB
JavaScript
55 lines
1.4 KiB
JavaScript
/*!
|
|
* VisualEditor DataModel MWDefaultSortMetaItem class.
|
|
*
|
|
* @copyright 2011-2019 VisualEditor Team and others; see AUTHORS.txt
|
|
* @license The MIT License (MIT); see LICENSE.txt
|
|
*/
|
|
|
|
/**
|
|
* DataModel category default sort meta item.
|
|
*
|
|
* @class
|
|
* @extends ve.dm.MetaItem
|
|
* @constructor
|
|
* @param {Object} element Reference to element in meta-linmod
|
|
*/
|
|
ve.dm.MWDefaultSortMetaItem = function VeDmMWDefaultSortMetaItem() {
|
|
// Parent constructor
|
|
ve.dm.MWDefaultSortMetaItem.super.apply( this, arguments );
|
|
};
|
|
|
|
/* Inheritance */
|
|
|
|
OO.inheritClass( ve.dm.MWDefaultSortMetaItem, ve.dm.MetaItem );
|
|
|
|
/* Static Properties */
|
|
|
|
ve.dm.MWDefaultSortMetaItem.static.name = 'mwDefaultSort';
|
|
|
|
ve.dm.MWDefaultSortMetaItem.static.group = 'mwDefaultSort';
|
|
|
|
ve.dm.MWDefaultSortMetaItem.static.matchTagNames = [ 'meta' ];
|
|
|
|
ve.dm.MWDefaultSortMetaItem.static.matchRdfaTypes = [ 'mw:PageProp/categorydefaultsort' ];
|
|
|
|
ve.dm.MWDefaultSortMetaItem.static.toDataElement = function ( domElements ) {
|
|
var content = domElements[ 0 ].getAttribute( 'content' );
|
|
return {
|
|
type: this.name,
|
|
attributes: {
|
|
content: content
|
|
}
|
|
};
|
|
};
|
|
|
|
ve.dm.MWDefaultSortMetaItem.static.toDomElements = function ( dataElement, doc ) {
|
|
var meta = doc.createElement( 'meta' );
|
|
meta.setAttribute( 'property', 'mw:PageProp/categorydefaultsort' );
|
|
meta.setAttribute( 'content', dataElement.attributes.content );
|
|
return [ meta ];
|
|
};
|
|
|
|
/* Registration */
|
|
|
|
ve.dm.modelRegistry.register( ve.dm.MWDefaultSortMetaItem );
|