Skip to main content

Templates

A hygen template is a header of a markdown-like frontmatter and a body of an ejs templating engine.

Overview

The templates directory contains a set of files and directories that will be copied to the destination directory when the template is invoked.

Template Structure

A Hygen template structure is as follows:

/* Metadata section using Frontmatter (Frontmatter section) */
---
to: app/emails/<%= name %>.html
---
/* Body section using ejs */
Hello <%= name %>,
<%= message %>
(version <%= version %>)

The frontmatter section is used to define the destination path of the file.

The body section is used to define the contents of the file. The body section is rendered using the ejs templating engine.

The .ejs.t extension is used to indicate that the file is a template in Hygen (optional).

Frontmatter

The frontmatter section is used to define the destination path of the file. The frontmatter section is defined using the YAML format.

The frontmatter is delimited by a matching --- top and bottom with yaml in it, where we define the template metadata.

For example we have this template:

---
to: app/emails/<%= name %>.html
---

When we invoke the template, we can pass in the name variable:

hygen mailer campaign emails --name=welcome

This will create a file at app/emails/welcome.html. And this frontmatter section will be replaced with the following:

---
to: app/emails/welcome.html
---

Some properties that we usually use:

PropertyTypeDefaultExample
to:String (url)undefinedmy-project/readme.md
from:String (url)undefinedshared/docs/readme.md
force:Booleanfalsetrue
unless_exists:Booleanfalsetrue
inject:Booleanfalsetrue
after:RegexundefineddevDependencies
skip_if:RegexundefinedmyPackage
sh:Stringundefinedecho: "Hello this is a shell command!"

Template body

Templates bodies are ejs:

---
to: app/workers/<%=name%>.js
---

/* Body section using ejs */
<%
Message = message.toUpperCase()
%>

class <%= Name %> {
work(){
return "<%= Message %>"
}
}

In hygen, the variable name is blessed, because you can get a capitalized version of it by saying Name.

If we wanted to capitalize some other variable (for example: message) then we could do like above.

Helpers

You can also use the built-in helpers by accessing h:

Inflections

h hosts this inflections package.

// example: <%= h.inflection.pluralize(name) %>

pluralize(str, plural);
singularize(str, singular);
inflect(str, count, singular, plural);
camelize(str, low_first_letter);
underscore(str, all_upper_case);
humanize(str, low_first_letter);
capitalize(str);
dasherize(str);
titleize(str);
demodulize(str);
tableize(str);
classify(str);
foreign_key(str, drop_id_ubar);
ordinalize(str);
transform(str, arr);

Change-case

h provides ability to semantic case changing with change-case library

// example: <%= h.changeCase.camel(name) %>

camel(str);
constant(str);
dot(str);
header(str);
isLower(str);
isUpper(str);
lower(str);
lcFirst(str);
no(str);
param(str);
pascal(str);
path(str);
sentence(str);
snake(str);
swap(str);
title(str);
upper(str);

For example we have:

/templates/components/new
---
to: components/<%= name %>/index.jsx
---
export const <%= name %> = () => (
<div className="<%= h.changeCase.param(name) %>" />
)

When we run

hygen components new --name=HelloWorld

It will be compile to:

export const HelloWorld = () => <div className="hello-world" />;

Local variables

There are two ways to refer to variables:

Directive

Hello <%= message %>

This way refers to the message CLI argument or prompt parameter, in its bare form.

This also means this parameter cannot be optional (otherwise a reference error is thrown).

Via objects

Hello <%= locals.message %>

This way refers to the message CLI argument or prompt parameter, through the locals object.

This is great if you want to check a variable for existance before using it like so:

<% if(locals.message){ -%>
message: <%= message %>
<% } -%>

Predefined variables

hygen component new:story

hygen will break it up for you and place certain values in special variables that are automatically available in your templates:

VariablesContentExample
templatesTemplates path (absolute)/User/.../project/_templates
actionfolderAction path/.../component/new
generatorGenerator namecomponent
actionAction namenew
subactionSub-action namestory
cwdProcess working directory/User/.../project

For example to use actionfolder say:

<%= actionfolder %>

Addition

By default templates are 'added' to your project as a new target file.

By specifying a to: frontmatter property, we're telling hygen where to put it. force: true will tell hygen to overwrite an existing file without prompting the user ( default is force: false ).

---
to: app/index.js
force: true
---
console.log('this is index!')

If a target file already exists, and you don't want to overwrite it, you can use unless_exists.

---
to: app/index.js
unless_exists: true
---
will not render if target exists

From & shared templates

By default the body of the template is used as input to create the target file.

By specifying a from: frontmatter property, we're telling hygen from which external file to load the body from.

E.g. from: shared/docs/readme.md will tell hygen to load the body from _templates/shared/docs/readme.md. The body of this template is ignored

---
to: app/readme.md
from: shared/docs/readme.md
---
THIS BODY IS IGNORED !!!

Injection

You can also choose to inject a template into an existing target file.

For this to work, you need to use inject: true with the accompanied inject-specific props.

---
inject: true
to: package.json
after: dependencies
skip_if: react-native-fs
---
"react-native-fs":"*",

This template will add the react-native-fs dependency into a package.json file, but it will not add it twice (because of skip_if).

PropertyDescription
beforecontain a regular expression of text to locate. The inject line will appear before the located line.
aftercontain a regular expression of text to locate. The inject line will appear after the located line.
prependadd a line to start of file respectively.
appendadd a line to end of file respectively.
at_linecontains a line number will add a line at this exact line number.
skip_ifcontains a regular expression / text. If exists, injection is skipped.

Shell

Shell actions give you the ability to trigger any shell commands. You can do things such as:

  • Copy a resource or an asset from a template into a target folder
  • Pipe the output of a template into a shell command
  • Perform any other side-effect - touch files, restart processes, trigger a yarn install or what have you.

Here's how to pipe a generator's output into a shell command:

---
sh: "mkdir -p <%= cwd %>/given/app/shell && cat > <%= cwd %>/given/app/shell/hello.piped"
---
hello, this was piped!

Note that you have the cwd variable pre-available to you to indicate the current working directory.

Some times you want to run a generator and just invoke an additional command. This means the shell action can be added to what ever action you wanted to perform (inject or addition).

Here's a common task: add a dependency and then run yarn install.

---
inject: true
to: package.json
after: dependencies
skip_if: lodash
sh: cd <%= cwd %> && yarn install
---
"lodash":"*",

Conditional rendering

---
to: "<%= message ? `where/to/render/${name}.js` : null %>"
---
conditionally rendering template

When hygen meets a to: value that is null, it will skip the output of that template, meaning it won't get rendered at all.

References

Hygen official doc