Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/webdevian/adonis-pug

Pug templating provider for AdonisJs
https://github.com/webdevian/adonis-pug

adonisjs provider pug

Last synced: about 2 months ago
JSON representation

Pug templating provider for AdonisJs

Awesome Lists containing this project

README

        

[![NPM Package][npm-badge]][npm-link] [![License][license-badge]][license-link] [![Build Status][travis-badge]][travis-link] [![Coverage Status][coveralls-badge]][coveralls-link] [![Maintainability][cc-badge]][cc-link] [![Dependencies][dm-badge]][dm-link] [![Dev Dependencies][dmdev-badge]][dmdev-link] [![Greenkeeper badge][gk-badge]][gk-link]

# Adonis Pug

[Pug](https://github.com/pugjs/pug) templating provider for AdonisJs framework version 4.

## Installation

In order to use adonis-pug

```
npm install adonis-pug --save
```

Once you have installed the provider from [npm](https://npmjs.org/packages/adonis-pug), make sure that the ViewProvider is registered as a provider inside start/app.js file.

```javascript
const providers = [
'adonis-pug/providers/ViewProvider'
]
```

Make sure the default edge provider (`@adonisjs/framework/providers/ViewProvider`) is not registered as they will conflict with each other.

#### Compatibility

*This package has been rebuilt for Adonis 4 and is incompatible with Adonis 3 and earlier.
For Adonis v3 install the previous version (3.01) with :*

```
npm install adonis-pug@<4.x --save
```

## Config

Pug options can be added to `config/pug.js`, these will be passed to the pug engine:

```javascript
module.exports = {
pretty: false,
cache: false, // Recommend setting this to true for 10x big performance boost
doctype: undefined,
filters: undefined,
self: false,
compileDebug: false,
debug: false
}
```

See the [Pug API documentation](https://pugjs.org/api/reference.html) for more info on these options.

## Basic Usage

Let’s start with the basic example of saying `Hello world` by rendering a pug template. All of the views are stored inside `resources/views` directory and end with `.pug` extension.

Create a pug template at `resources/views/hello.pug`. You can use an adonis/ace command to create the view.

```sh
adonis make:pug home

✔ create resources/views/home.pug
```

Now let's create a route that renders it:

```javascript
Route.get('/', ({ view }) => {
return view.render('home')
})
```

The view.render method takes the relative path to the view file. There is no need to type .pug extension.

## View Methods

These methods are available on the view context object in controllers and middleware.

#### view.share(locals)
Share variables as a local with this template context.

| Param | Type | Description |
| --- | --- | --- |
| locals | Object | Key value pairs |

###### *Example*

Quite often you want to share request specific values with your views, this can be done in middleware or controllers by passing an object to the share method.

```javascript
class SomeMiddleware {
async handle ({ view }, next) {
view.share({
apiVersion: request.input('version')
})

await next()
}
}
```

Inside your views, you can access it like any other variable

```pug
p= apiVersion
```

#### view.render(template, locals) ⇒ String
Render a pug template

**Returns**: String - HTML rendered output

| Param | Type | Description |
| --- | --- | --- |
| template | String | View file (.pug extension not required) |
| locals | Object | Variables to be passed to the view |

#### view.renderString(string, locals) ⇒ String
Render a string of pug

**Returns**: String - HTML rendered output

| Param | Type | Description |
| --- | --- | --- |
| string | String | String to be rendered |
| locals | Object | Variables to be passed to the view |

## View Helpers

A number of global methods and contextual helpers are injected into all views.

### Request

All views have access to the current request object, and you can call request methods inside your templates as well.

```pug
p The request URL is #{request.url()}
```

Also, there is a direct helper to get the URL.

```pug
p The request URL is #{url}
```

### style - *formerly css (deprecated)*

Add link tag to a CSS file. The file name should be relative from the public directory. Absolute links are left alone (for external CDNs etc)

``` pug
!= style('style')
// Renders
```

### script

Similar to css, adds a script tag to the document

``` pug
!= script('my-script')
// Renders '
```

### assetsUrl
Returns path of a file relative from the public directory.

```pug
img(src=assetsUrl('logo.png'))
// Renders
```

### route
Get actual URL for a route

Expecting the route to be registered as following

```javascript
Route.get('users/:id', 'UserController.show').as('profile')
```

```pug
a(href=route('profile', { id: 1 })) View Profile
// Renders View Profile
```

Also, you can use the controller method name.

```pug
a(href="route('UserController.show', { id: 1 }) View profile
```

### auth
If you are using the auth provider, then you can access the current logged in user using the `auth.user` object.

### csrfField
If you are using the shield middleware, you can access the `csrfToken` and field using one of the following methods.

```pug
!= csrfField()
// Renders
```

### cspMeta

When using shield middleware, the CSP headers are set automatically. However can also set them using HTML meta tags.

```pug
head
!= cspMeta()
```

## Extending views

You can also extend views by adding your own view globals. Globals should only be added once, so make sure to use the start/hooks.js file and add them using the after providersBooted hook.

### Globals

``` javascript
const { hooks } = require('@adonisjs/ignitor')

hooks.after.providersBooted(() => {
const View = use('View')

View.global('currentTime', function () {
return new Date().getTime()
})
})
```

Above global returns the current time when you reference it inside the views.

```pug
p The time is #{currentTime()}
```

You can extract the code inside providersBooted to a different file and require it.

### Globals scope

The value of `this` inside globals closure is bound to the template context so that you can access runtime values from it.

To use other global methods or values, make use of the this.globals object.

```javascript
View.global('messages', {
success: 'This is a success message',
warning: 'This is a warning message'
})

View.global('getMessage', function (type) {
return this.globals.messages[type]
})
```

```pug
p= getMessage('success')
// Renders

This is a success message


```
[npm-badge]: https://img.shields.io/npm/v/adonis-pug.svg?maxAge=30
[npm-link]:https://npmjs.com/package/adonis-pug
[license-badge]: https://img.shields.io/npm/l/adonis-pug.svg
[license-link]: https://github/webdevian/adonis-pug/blob/master/LICENSE
[travis-badge]: https://travis-ci.org/webdevian/adonis-pug.svg?branch=master
[travis-link]: https://travis-ci.org/webdevian/adonis-pug
[coveralls-badge]: https://coveralls.io/repos/github/webdevian/adonis-pug/badge.svg?branch=master
[coveralls-link]: https://coveralls.io/github/webdevian/adonis-pug?branch=master
[cc-badge]: https://img.shields.io/codeclimate/maintainability/webdevian/adonis-pug.svg
[cc-link]: https://codeclimate.com/github/webdevian/adonis-pug/maintainability
[dm-badge]: https://img.shields.io/david/webdevian/adonis-pug.svg
[dm-link]: https://david-dm.org/webdevian/adonis-pug
[dmdev-badge]: https://img.shields.io/david/dev/webdevian/adonis-pug.svg
[dmdev-link]: https://david-dm.org/webdevian/adonis-pug
[gk-badge]: https://badges.greenkeeper.io/webdevian/adonis-pug.svg
[gk-link]: https://greenkeeper.io/