Files
lib/src/views/PugViewEngine.ts

53 lines
1.6 KiB
TypeScript
Raw Normal View History

2021-06-02 22:36:25 -05:00
import {ViewEngine} from './ViewEngine'
import {Injectable} from '../di'
import * as pug from 'pug'
2021-03-08 18:07:55 -06:00
2021-03-25 08:50:13 -05:00
/**
* Implementation of the ViewEngine class that renders Pug/Jade templates.
*/
2021-03-08 18:07:55 -06:00
@Injectable()
export class PugViewEngine extends ViewEngine {
2021-03-25 08:50:13 -05:00
/** A cache of compiled templates. */
2021-03-08 18:07:55 -06:00
protected compileCache: {[key: string]: ((locals?: pug.LocalsObject) => string)} = {}
public renderString(templateString: string, locals: { [p: string]: any }): string | Promise<string> {
return pug.compile(templateString, this.getOptions())(locals)
}
public renderByName(templateName: string, locals: { [p: string]: any }): string | Promise<string> {
let compiled = this.compileCache[templateName]
2021-06-02 22:36:25 -05:00
if ( compiled ) {
return compiled({
...this.getGlobals(),
...locals,
})
2021-06-02 22:36:25 -05:00
}
2021-03-08 18:07:55 -06:00
const filePath = this.resolveName(templateName)
compiled = pug.compileFile(filePath.toLocal, this.getOptions(templateName))
2021-03-08 18:07:55 -06:00
this.compileCache[templateName] = compiled
return compiled({
...this.getGlobals(),
...locals,
})
2021-03-08 18:07:55 -06:00
}
2021-03-25 08:50:13 -05:00
/**
* Get the object of options passed to Pug's compile methods.
* @protected
*/
protected getOptions(templateName?: string): pug.Options {
2021-03-08 18:07:55 -06:00
return {
basedir: templateName ? this.resolveBasePath(templateName).toLocal : this.path.toLocal,
2021-03-08 18:07:55 -06:00
debug: this.debug,
compileDebug: this.debug,
globals: [],
}
}
getFileExtension(): string {
return '.pug'
}
2021-03-08 18:07:55 -06:00
}