@financial-times/x-handlebars

14.7.1 • Public • Published

x-handlebars

This module provides Handlebars helper functions to render x-dash component packages or local compatible modules within existing Handlebars templates.

Installation

This module is supported on Node 12 and is distributed on npm.

npm install -S @financial-times/x-handlebars

To use the x-handlebars helper in your application views you must first register it with Handlebars. To do this you can use the registerHelper method, providing a helper name as the first argument (we recommend x) and calling the xHandlebars function:

const xHandlebars = require('@financial-times/x-handlebars');
const handlebars = require('handlebars');

handlebars.registerHelper('x', xHandlebars());

If you are building an Express app using n-ui you can register the helper functions on application startup. Please note that if you are already registering helpers then you may need to merge your existing configuration:

const xHandlebars = require('@financial-times/x-handlebars');
const express = require('@financial-times/n-ui');

const app = express({
	helpers: {
		x: xHandlebars()
	}
});

An options object may be provided to the xHandlebars function when called. The options and their defaults are shown below:

xHandlebars({
	baseDirectory: process.cwd()
});

This module will install the x-engine module as a dependency to perform the rendering of x- components. Please refer to the x-engine documentation to setup your application with x-engine.

Usage

This package provides a single helper function able to load x-dash component packages or local compatible modules.

Installed packages will be loaded from the @financial-times scope and are specified using the package argument.

Local modules are resolved relative to the configured base directory and are specified using the local argument.

If a module has multiple named exports then the specific property to use may be specified with the component argument.

For example, to render a teaser component from the x-teaser package:

<div class="teaser-container">
	{{{x package="x-teaser" component="Teaser"}}}
</div>

Or to load a local module with a default export:

<div class="promo-box-container">
	{{{x local="components/promo"}}}
</div>

Note, that you should use the triple mustache syntax, {{{, to ensure the HTML returned by the helper is not escaped.

The included component will inherit the current Handlebars context. Any extra arguments will be merged into the context, providing an easy means to provide overrides in-situ:

<div class="teaser-container">
	{{{x package="x-teaser" component="Teaser" showStatus=false}}}
</div>

Readme

Keywords

Package Sidebar

Install

npm i @financial-times/x-handlebars

Weekly Downloads

77

Version

14.7.1

License

ISC

Unpacked Size

6.06 kB

Total Files

5

Last publish

Collaborators

  • robertboulton
  • seraph2000
  • hamza.samih
  • notlee
  • emmalewis
  • aendra
  • the-ft
  • rowanmanning
  • chee
  • alexwilson