@@ -11,7 +11,7 @@ import type { ParsedTemplate } from './parse-template'
11
11
import type { AsyncFileMapper } from './create-async-file-mapper'
12
12
13
13
type TemplateRendererOptions = {
14
- template : ? string ;
14
+ template ?: string | ( content : string , context : any ) => string ;
15
15
inject ? : boolean ;
16
16
clientManifest ? : ClientManifest ;
17
17
shouldPreload ?: ( file : string , type : string ) => boolean ;
@@ -42,7 +42,7 @@ type Resource = {
42
42
export default class TemplateRenderer {
43
43
options : TemplateRendererOptions ;
44
44
inject : boolean ;
45
- parsedTemplate : ParsedTemplate | null ;
45
+ parsedTemplate : ParsedTemplate | Function | null ;
46
46
publicPath : string ;
47
47
clientManifest : ClientManifest ;
48
48
preloadFiles : Array < Resource > ;
@@ -55,8 +55,12 @@ export default class TemplateRenderer {
55
55
this . inject = options . inject !== false
56
56
// if no template option is provided, the renderer is created
57
57
// as a utility object for rendering assets like preload links and scripts.
58
- this . parsedTemplate = options . template
59
- ? parseTemplate ( options . template )
58
+
59
+ const { template } = options
60
+ this . parsedTemplate = template
61
+ ? typeof template === 'string'
62
+ ? parseTemplate ( template )
63
+ : template
60
64
: null
61
65
62
66
// function used to serialize initial state JSON
@@ -89,12 +93,17 @@ export default class TemplateRenderer {
89
93
}
90
94
91
95
// render synchronously given rendered app content and render context
92
- renderSync ( content : string , context : ?Object ) {
96
+ render ( content : string , context : ?Object ) : string | Promise < string > {
93
97
const template = this . parsedTemplate
94
98
if ( ! template ) {
95
- throw new Error ( 'renderSync cannot be called without a template.' )
99
+ throw new Error ( 'render cannot be called without a template.' )
96
100
}
97
101
context = context || { }
102
+
103
+ if ( typeof template === 'function' ) {
104
+ return template ( content , context )
105
+ }
106
+
98
107
if ( this . inject ) {
99
108
return (
100
109
template . head ( context ) +
0 commit comments