-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathext.minimalexample.syntaxhelp.js
72 lines (66 loc) · 2.09 KB
/
ext.minimalexample.syntaxhelp.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
/**
* Since this module is written using package files instead of just a list of
* scripts, it does not need to be wrapped in an IIFE to prevent leakage.
*/
/**
* Get a promise with the help page for the current page's content model
*
* @return {jQuery.Promise}
*/
const getHelpPage = () => {
const currentModel = mw.config.get( 'wgPageContentModel' );
const api = new mw.Api();
return api.get( {
action: 'getsyntaxhelp',
contentmodel: currentModel,
format: 'json',
formatversion: 2
} ).then(
( response ) => response.getsyntaxhelp[ currentModel ]
);
};
/**
* Given a page title to link to for the help page, get an element for the link
* to that page
*
* @param {string} pageName
* @return {jQuery}
*/
const makePageLink = ( pageName ) => {
const pageTitle = new mw.Title( pageName );
// jQuery is always available for use in ResourceLoader modules; use it
// to simplify construction.
const $link = $( '<a>' )
.attr( 'href', pageTitle.getUrl() )
.attr( 'target', '_blank' )
.text( mw.msg( 'syntaxhelp-help-label' ) );
// the `mediawiki.jqueryMsg` module lets us use jQuery elements as message
// parameters so that the overall link can be in parentheses that are
// localized properly; use parseDom() so that we also get a jQuery element
// back.
const $parenLink = mw.message( 'parentheses', $link ).parseDom();
// Wrap the result in an overall <span> with an ID so that we can target it
// with styles; see ext.minimalexample.syntaxhelp.css for the styles.
return $( '<span>' )
.attr( 'id', 'ext-minimalexample-help-link-wrapper' )
.append( $parenLink );
};
/**
* Fetch the name of the syntax help page for the current content model; if
* there is a page, add a link to it.
*/
const maybeAddHelpLink = () => {
getHelpPage().then( ( result ) => {
if ( !( result && result.page ) ) {
// Nothing to do
return;
}
const $link = makePageLink( result.page );
// Should only exist once
// eslint-disable-next-line no-jquery/no-global-selector
const $target = $( '#firstHeading' );
$target.append( $link );
} );
};
// Run once the module loads
maybeAddHelpLink();