mediawiki.jqueryMsg: Rename .parser class to .Parser
authorTimo Tijhof <krinklemail@gmail.com>
Fri, 6 Apr 2018 15:16:43 +0000 (16:16 +0100)
committerTimo Tijhof <krinklemail@gmail.com>
Fri, 6 Apr 2018 15:20:24 +0000 (16:20 +0100)
This class is marked @private, but nonetheless, there is at least
one use in MobileFrontend, so keeping a back-compat alias for now.

Also rename the HtmlEmitter utility class (also private, not used
anywhere outside this file), and fix its broken documentation by
repeating the @class and @private tags on its own constructor.
It previously had all its methods indexed by JSDuck as part of the
previous class in that file (Parser), which created doc pages
with examples that don't work.

Change-Id: I02d851d9b6eac89f1a2b85b438b982bd055bedee

resources/src/mediawiki/mediawiki.jqueryMsg.js
tests/qunit/data/generateJqueryMsgData.php
tests/qunit/suites/resources/mediawiki/mediawiki.jqueryMsg.test.js

index ea91afe..67d6e2c 100644 (file)
@@ -60,7 +60,7 @@
         * Wrapper around jQuery append that converts all non-objects to TextNode so append will not
         * convert what it detects as an htmlString to an element.
         *
-        * If our own htmlEmitter jQuery object is given, its children will be unwrapped and appended to
+        * If our own HtmlEmitter jQuery object is given, its children will be unwrapped and appended to
         * new parent.
         *
         * Object elements of children (jQuery, HTMLElement, TextNode, etc.) will be left as is.
        function getFailableParserFn( options ) {
                return function ( args ) {
                        var fallback,
-                               // eslint-disable-next-line new-cap
-                               parser = new mw.jqueryMsg.parser( options ),
+                               parser = new mw.jqueryMsg.Parser( options ),
                                key = args[ 0 ],
                                argsArray = Array.isArray( args[ 1 ] ) ? args[ 1 ] : slice.call( args, 1 );
                        try {
         *
         * ResourceLoaderJqueryMsgModule calls this to provide default values from
         * Sanitizer.php for allowed HTML elements. To override this data for individual
-        * parsers, pass the relevant options to mw.jqueryMsg.parser.
+        * parsers, pass the relevant options to mw.jqueryMsg.Parser.
         *
         * @private
         * @param {Object} data New data to extend parser defaults with
         * @private
         * @param {Object} options
         */
-       mw.jqueryMsg.parser = function ( options ) {
+       mw.jqueryMsg.Parser = function ( options ) {
                this.settings = $.extend( {}, parserDefaults, options );
                this.settings.onlyCurlyBraceTransform = ( this.settings.format === 'text' || this.settings.format === 'escaped' );
                this.astCache = {};
 
-               // eslint-disable-next-line new-cap
-               this.emitter = new mw.jqueryMsg.htmlEmitter( this.settings.language, this.settings.magic );
+               this.emitter = new mw.jqueryMsg.HtmlEmitter( this.settings.language, this.settings.magic );
        };
+       // Backwards-compatible alias
+       // @deprecated since 1.31
+       mw.jqueryMsg.parser = mw.jqueryMsg.Parser;
 
-       mw.jqueryMsg.parser.prototype = {
+       mw.jqueryMsg.Parser.prototype = {
                /**
                 * Where the magic happens.
                 * Parses a message from the key, and swaps in replacements as necessary, wraps in jQuery
        };
 
        /**
-        * htmlEmitter - object which primarily exists to emit HTML from parser ASTs
+        * Class that primarily exists to emit HTML from parser ASTs.
         *
+        * @private
+        * @class
         * @param {Object} language
         * @param {Object} magic
         */
-       mw.jqueryMsg.htmlEmitter = function ( language, magic ) {
+       mw.jqueryMsg.HtmlEmitter = function ( language, magic ) {
                var jmsg = this;
                this.language = language;
                $.each( magic, function ( key, val ) {
        //
        // An emitter method takes the parent node, the array of subnodes and the array of replacements (the values that $1, $2... should translate to).
        // Note: all such functions must be pure, with the exception of referring to other pure functions via this.language (convertPlural and so on)
-       mw.jqueryMsg.htmlEmitter.prototype = {
+       mw.jqueryMsg.HtmlEmitter.prototype = {
                /**
                 * Parsing has been applied depth-first we can assume that all nodes here are single nodes
                 * Must return a single node to parents -- a jQuery with synthetic span
                 * The "href" can be:
                 * - a jQuery object, treat it as "enclosing" the link text.
                 * - a function, treat it as the click handler.
-                * - a string, or our htmlEmitter jQuery object, treat it as a URI after stringifying.
+                * - a string, or our HtmlEmitter jQuery object, treat it as a URI after stringifying.
                 *
                 * TODO: throw an error if nodes.length > 2 ?
                 *
index 1c79f6d..e4f87f8 100644 (file)
@@ -21,7 +21,7 @@
                $.each( mw.libs.phpParserData.tests, function ( i, test ) {
                        QUnit.stop();
                        getMwLanguage( test.lang, function ( langClass ) {
-                               var parser = new mw.jqueryMsg.parser( { language: langClass } );
+                               var parser = new mw.jqueryMsg.Parser( { language: langClass } );
                                assert.equal(
                                        parser.parse( test.key, test.args ).html(),
                                        test.result,
@@ -50,7 +50,7 @@
                                }, 'Language class should be loaded', 1000 );
                                runs( function () {
                                        console.log( test.lang, 'running tests' );
-                                       var parser = new mw.jqueryMsg.parser( { language: langClass } );
+                                       var parser = new mw.jqueryMsg.Parser( { language: langClass } );
                                        expect(
                                                parser.parse( test.key, test.args ).html()
                                        ).toEqual( test.result );
index 2a563c8..0653dfd 100644 (file)
                                        .then( function ( langClass ) {
                                                var parser;
                                                mw.config.set( 'wgUserLanguage', test.lang );
-                                               // eslint-disable-next-line new-cap
-                                               parser = new mw.jqueryMsg.parser( { language: langClass } );
+                                               parser = new mw.jqueryMsg.Parser( { language: langClass } );
                                                assert.equal(
                                                        parser.parse( test.key, test.args ).html(),
                                                        test.result,
                                        .then( function ( langClass ) {
                                                var parser;
                                                mw.config.set( 'wgUserLanguage', test.lang );
-                                               // eslint-disable-next-line new-cap
-                                               parser = new mw.jqueryMsg.parser( { language: langClass } );
+                                               parser = new mw.jqueryMsg.Parser( { language: langClass } );
                                                assert.equal(
                                                        parser.parse( test.integer ? 'formatnum-msg-int' : 'formatnum-msg',
                                                                [ test.number ] ).html(),