blob: eda79c10531e985c35ad9ed03ccda3d3a6121a74 (
plain) (
blame)
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
|
/* global Mustache */
( function () {
// Register mustache compiler
mw.template.registerCompiler( 'mustache', {
compile: function ( src ) {
return {
/**
* @ignore
* @return {string} The raw source code of the template
*/
getSource: function () {
return src;
},
/**
* @ignore
* @param {Object} data Data to render
* @param {Object} partialTemplates Map partial names to Mustache template objects
* returned by mw.template.get()
* @return {jQuery} Rendered HTML
*/
render: function ( data, partialTemplates ) {
const partials = {};
if ( partialTemplates ) {
for ( const name in partialTemplates ) {
const template = partialTemplates[ name ];
partials[ name ] = template.getSource();
}
}
return $( $.parseHTML( Mustache.render( src, data, partials ) ) );
}
};
}
} );
}() );
|