mirror of
https://gerrit.wikimedia.org/r/mediawiki/extensions/Cite
synced 2024-11-13 17:53:09 +00:00
ed1501c577
Change-Id: I8237dd3aa9ad73dce59e9a9bf001d6af5de8e185
146 lines
5.4 KiB
JavaScript
146 lines
5.4 KiB
JavaScript
'use strict';
|
|
|
|
/**
|
|
* Add Cite-specific functionality to the WikiEditor toolbar.
|
|
* Adds a button to insert <ref> tags, and adds a help section
|
|
* about how to use references to WikiEditor's help panel.
|
|
*
|
|
* @author Jon Harald Søby
|
|
*/
|
|
|
|
mw.hook( 'wikiEditor.toolbarReady' ).add( ( $textarea ) => {
|
|
/* Add the <ref></ref> button to the toolbar */
|
|
$textarea.wikiEditor( 'addToToolbar', {
|
|
section: 'main',
|
|
group: 'insert',
|
|
tools: {
|
|
reference: {
|
|
label: mw.msg( 'cite-wikieditor-tool-reference' ),
|
|
filters: [ 'body.ns-subject' ],
|
|
type: 'button',
|
|
oouiIcon: 'reference',
|
|
action: {
|
|
type: 'encapsulate',
|
|
options: {
|
|
pre: '<ref>',
|
|
post: '</ref>'
|
|
}
|
|
}
|
|
}
|
|
}
|
|
} );
|
|
|
|
/* Add reference help to the Help section */
|
|
const parsedRef = function ( number ) {
|
|
return $( '<sup>' )
|
|
.addClass( 'reference' )
|
|
.append(
|
|
$( '<a>' )
|
|
.attr( 'href', '#' )
|
|
.text(
|
|
mw.message( 'cite-wikieditor-help-content-reference-example-ref-result', mw.language.convertNumber( number ) ).text()
|
|
)
|
|
);
|
|
};
|
|
|
|
const helpRows = [
|
|
{
|
|
description: { html: mw.message( 'cite-wikieditor-help-content-reference-description' ).parse() },
|
|
syntax: {
|
|
html: mw.html.escape(
|
|
mw.message( 'cite-wikieditor-help-content-reference-example-text1', mw.message( 'cite-wikieditor-help-content-reference-example-ref-normal', mw.message( 'cite-wikieditor-help-content-reference-example-text2', 'https://www.example.org/' ).plain() ).plain() ).plain()
|
|
)
|
|
},
|
|
result: {
|
|
html: mw.message( 'cite-wikieditor-help-content-reference-example-text1', parsedRef( 1 ) ).parse()
|
|
}
|
|
},
|
|
{
|
|
description: { html: mw.message( 'cite-wikieditor-help-content-named-reference-description' ).parse() },
|
|
syntax: {
|
|
html: mw.html.escape(
|
|
mw.message( 'cite-wikieditor-help-content-reference-example-text1', mw.message( 'cite-wikieditor-help-content-reference-example-ref-named', mw.message( 'cite-wikieditor-help-content-reference-example-ref-id' ).plain(), mw.message( 'cite-wikieditor-help-content-reference-example-text3', 'https://www.example.org/' ).plain() ).plain() ).plain()
|
|
)
|
|
},
|
|
result: {
|
|
html: mw.message( 'cite-wikieditor-help-content-reference-example-text1', parsedRef( 2 ) ).parse()
|
|
}
|
|
},
|
|
{
|
|
description: { html: mw.message( 'cite-wikieditor-help-content-rereference-description' ).parse() },
|
|
syntax: {
|
|
html: mw.html.escape(
|
|
mw.message( 'cite-wikieditor-help-content-reference-example-text1', mw.message( 'cite-wikieditor-help-content-reference-example-ref-reuse', mw.message( 'cite-wikieditor-help-content-reference-example-ref-id' ).plain() ).plain() ).plain()
|
|
)
|
|
},
|
|
result: {
|
|
html: mw.message( 'cite-wikieditor-help-content-reference-example-text1', parsedRef( 2 ) ).parse()
|
|
}
|
|
},
|
|
{
|
|
description: { html: mw.message( 'cite-wikieditor-help-content-showreferences-description' ).parse() },
|
|
syntax: {
|
|
html: mw.message( 'cite-wikieditor-help-content-reference-example-reflist' ).escaped()
|
|
},
|
|
result: {
|
|
html: '<ol class="references">' +
|
|
'<li><span class="mw-cite-backlink"><a href="#">' +
|
|
mw.message( 'cite_reference_backlink_symbol' ).parse() + '</a></span> ' +
|
|
mw.message( 'cite-wikieditor-help-content-reference-example-text2', window.location.href + '#' ).parse() +
|
|
'</li>' +
|
|
'<li><span class="mw-cite-backlink"><a href="#">' +
|
|
mw.message( 'cite_reference_backlink_symbol' ).parse() +
|
|
'</a></span> ' +
|
|
mw.message( 'cite-wikieditor-help-content-reference-example-text3', window.location.href + '#' ).parse() +
|
|
|
|
( mw.config.get( 'wgCiteBookReferencing' ) ?
|
|
'<ol style="list-style-type: none; padding-left: 0; margin-top: 0;">' +
|
|
'<li style="margin-left: -1em;">' +
|
|
'2.1 ' + mw.message( 'cite-wikieditor-help-content-reference-example-extra-details' ).parse() +
|
|
'</li></ol>' :
|
|
'' ) +
|
|
|
|
'</li></ol>'
|
|
}
|
|
}
|
|
|
|
];
|
|
|
|
if ( mw.config.get( 'wgCiteBookReferencing' ) ) {
|
|
|
|
const extendedRefObj = {
|
|
description: {
|
|
html: mw.message( 'cite-wikieditor-help-content-extended-reference-description' ).parse()
|
|
},
|
|
syntax: {
|
|
html: mw.html.escape(
|
|
mw.message( 'cite-wikieditor-help-content-reference-example-text1', mw.message( 'cite-wikieditor-help-content-reference-example-ref-extends', mw.message( 'cite-wikieditor-help-content-reference-example-ref-id' ).plain(), mw.message( 'cite-wikieditor-help-content-reference-example-extra-details' ).plain() ).plain() ).plain()
|
|
)
|
|
},
|
|
result: {
|
|
html: mw.message( 'cite-wikieditor-help-content-reference-example-text1', parsedRef( 2.1 ) ).parse()
|
|
}
|
|
};
|
|
|
|
// Insert extendedRefObj right after the row for named refs with the description message key "Additional use of the same reference"
|
|
const indexOfNamedRefItem = helpRows.findIndex( ( obj ) => mw.message( 'cite-wikieditor-help-content-rereference-description' ).plain() === obj.description.html );
|
|
helpRows.splice( indexOfNamedRefItem + 1, 0, extendedRefObj );
|
|
}
|
|
|
|
$textarea.wikiEditor( 'addToToolbar', {
|
|
section: 'help',
|
|
pages: {
|
|
references: {
|
|
label: mw.msg( 'cite-wikieditor-help-page-references' ),
|
|
layout: 'table',
|
|
headings: [
|
|
{ html: mw.message( 'wikieditor-toolbar-help-heading-description' ).parse() },
|
|
{ html: mw.message( 'wikieditor-toolbar-help-heading-syntax' ).parse() },
|
|
{ html: mw.message( 'wikieditor-toolbar-help-heading-result' ).parse() }
|
|
],
|
|
rows: helpRows
|
|
}
|
|
}
|
|
} );
|
|
} );
|