MediaWiki:Common.js: Difference between revisions

From Miranda NG
Jump to navigation Jump to search
(add custom snippets to wikieditor (for translation and links))
 
(attempt to fix entities)
Line 1: Line 1:
/* Any JavaScript here will be loaded for all users on every page load. */
/* Any JavaScript here will be loaded for all users on every page load. */
var customizeToolbar = function() {
var customizeToolbar = function() {
   /* Your code goes here */
   /* Your code goes here */


$( '#wpTextbox1' ).wikiEditor( 'addToToolbar', {
$( '#wpTextbox1' ).wikiEditor( 'addToToolbar', {
  'sections': {
  'sections': {
    'snippets': {
    'snippets': {
      'type': 'booklet',
      'type': 'booklet',
      'label': 'Snippets',
      'label': 'Snippets',
      'pages': {
      'pages': {
        'section-translation': {
        'section-translation': {
          'label': 'translation',
          'label': 'translation',
          'layout': 'characters',
          'layout': 'characters',
          'characters': [
          'characters': [
            '<languages/>',
            '<languages/>',
            {
            {
              'action': {
              'action': {
                'type': 'encapsulate',
                'type': 'encapsulate',
                'options': {
                'options': {
                  'pre': '&lt;translate>',
                  'pre': '&lt;translate>',
                  'peri': '',
                  'peri': '',
                  'post': '&lt;/translate>'
                  'post': '&lt;/translate>'
                }
                }
              },
              },
              'label': '&lt;translate>&lt;/translate>'
              'label': '&lt;translate>&lt;/translate>'
            },
            },
            {
            {
              'action': {
              'action': {
                'type': 'encapsulate',
                'type': 'encapsulate',
                'options': {
                'options': {
                  'pre': '&lt;tvar|>',
                  'pre': '&lt;tvar|>',
                  'peri': '',
                  'peri': '',
                  'post': '&lt;/>'
                  'post': '&lt;/>'
                }
                }
              },
              },
              'label': '&lt;tvar|>&lt;/>'
              'label': '&lt;tvar|>&lt;/>'
            },
            },
            '&#123;&#123;#translation:&#125;&#125;'
            '{{#translation:}}'
          ]
          ]
        },
        },
        'section-links': {
        'section-links': {
          'label': 'Wikilinks',
          'label': 'Wikilinks',
          'layout': 'characters',
          'layout': 'characters',
          'characters': [
          'characters': [
            {
            {
              'action': {
              'action': {
                'type': 'encapsulate',
                'type': 'encapsulate',
                'options': {
                'options': {
                  'pre': '[[Category:',
                  'pre': '[[Category:',
                  'peri': '',
                  'peri': '',
                  'post': ']]'
                  'post': ']]'
                }
                }
              },
              },
              'label': '[[Category:]]'
              'label': '[[Category:]]'
            },
            },
            {
            {
              'action': {
              'action': {
                'type': 'encapsulate',
                'type': 'encapsulate',
                'options': {
                'options': {
                  'pre': '[[File:',
                  'pre': '[[File:',
                  'peri': '',
                  'peri': '',
                  'post': ']]'
                  'post': ']]'
                }
                }
              },
              },
              'label': '[[File:]]'
              'label': '[[File:]]'
            }
            }
          ]
          ]
        }
        }
      }
      }
    }
    }
  }
  }
} );
} );
};
};



Revision as of 00:07, 20 December 2017

/* Any JavaScript here will be loaded for all users on every page load. */
var customizeToolbar = function() {
  /* Your code goes here */

$( '#wpTextbox1' ).wikiEditor( 'addToToolbar', {
  'sections': {
    'snippets': {
      'type': 'booklet',
      'label': 'Snippets',
      'pages': {
        'section-translation': {
          'label': 'translation',
          'layout': 'characters',
          'characters': [
            '<languages/>',
            {
              'action': {
                'type': 'encapsulate',
                'options': {
                  'pre': '&lt;translate>',
                  'peri': '',
                  'post': '&lt;/translate>'
                }
              },
              'label': '&lt;translate>&lt;/translate>'
            },
            {
              'action': {
                'type': 'encapsulate',
                'options': {
                  'pre': '&lt;tvar|>',
                  'peri': '',
                  'post': '&lt;/>'
                }
              },
              'label': '&lt;tvar|>&lt;/>'
            },
            '{{#translation:}}'
          ]
        },
        'section-links': {
          'label': 'Wikilinks',
          'layout': 'characters',
          'characters': [
            {
              'action': {
                'type': 'encapsulate',
                'options': {
                  'pre': '[[Category:',
                  'peri': '',
                  'post': ']]'
                }
              },
              'label': '[[Category:]]'
            },
            {
              'action': {
                'type': 'encapsulate',
                'options': {
                  'pre': '[[File:',
                  'peri': '',
                  'post': ']]'
                }
              },
              'label': '[[File:]]'
            }
          ]
        }
      }
    }
  }
} );
};

/* Check if view is in edit mode and that the required modules are available. Then, customize the toolbar … */
if ($.inArray(mw.config.get('wgAction'), ['edit', 'submit']) !== -1) {
  mw.loader.using('user.options', function() {
    // This can be the string "0" if the user disabled the preference ([[phab:T54542#555387]])
    if (mw.user.options.get('usebetatoolbar') == 1) {
      $.when(
        mw.loader.using('ext.wikiEditor.toolbar'), $.ready
      ).then(customizeToolbar);
    }
  });
}