@podium/hapi-layout

4.0.2 • Public • Published

@podium/hapi-layout

Hapi plugin for @podium/layout.

Dependencies GitHub Actions status Known Vulnerabilities

Module for building @podium/layout servers with hapi. For writing layouts, please see the Podium documentation.

Installation

$ npm install @podium/hapi-layout

Requirements

The v3.x of this module require Hapi v19 or newer and node v12 or newer. Please use v2.x of this module for Hapi v18 or older.

Simple usage

Build a simple layout server including a single podlet:

import HapiLayout from '@podium/hapi-layout';
import Layout from '@podium/layout';
import Hapi from '@hapi/hapi';

const app = Hapi.Server({
    host: 'localhost',
    port: 7000,
});

const layout = new Layout({
    pathname: '/',
    name: 'layout',

});

const podlet = layout.client.register({
    name: 'myPodlet',
    uri: 'http://localhost:7100/manifest.json'
});

app.register({
    plugin: new HapiLayout(),
    options: layout,
});

app.route({
    method: 'GET',
    path: layout.pathname(),
    handler: (request, h) => {
        const incoming = request.app.podium;
        const result = await podlet.fetch(incoming);
        return h.podiumSend(result.content);
    },
});

app.start();

Register plugin

The plugin is registered by passing an instance of this plugin to the hapi server .register() method together with an instance of the @podium/layout class.

app.register({
    plugin: new HapiLayout(),
    options: new Layout(),
});

Request params

On each request @podium/layout will run a set of operations on the request and create an [incoming] object. The [incoming] object is stored at request.app.podium which is accessible inside request handlers.

app.route({
    method: 'GET',
    path: '/',
    handler: (request, h) => {
        const incoming = request.app.podium;
        const result = await podlet.fetch(incoming);
        return h.podiumSend(result.content);
    },
});

Its possible to pass request bound parameters to @podium/context parsers by setting an object at request.app.params.

Example: To pass a value to the @podium/context locale parser it should be set on request.app.params.locale by a extension executed previously of this extension.

h.podiumSend(fragment)

This method will wrap the given fragment in a default document template before dispatching.

See document template for further information.

License

Copyright (c) 2019 FINN.no

Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.

Package Sidebar

Install

npm i @podium/hapi-layout

Weekly Downloads

41

Version

4.0.2

License

MIT

Unpacked Size

13.1 kB

Total Files

5

Last publish

Collaborators

  • trygve-lie
  • digitalsadhu
  • ivarconr
  • alexanbj
  • stipsan
  • trygve-bot