vento-plugin-fragments

0.1.0 • Public • Published

Vento Template Fragments

Deno Version NPM Version

A plugin for Vento that allows you to render out small portions of a template. Useful for hypermedia-oriented front-end libraries like htmx.

Installation

Deno

import fragments from "https://deno.land/x/vento_plugin_fragments@0.1.0/mod.ts"

env.use(fragments);

Node

npm install vento-plugin-fragments

Then simply import the plugin.

import fragments from "vento-plugin-fragments";

env.use(fragments);

Usage

Add {{ fragment }} tags to mark sections of the template you want to render individually:

<html>
    {{ fragment list }}
        {{ for user in users }}
            <li>{{ user }}</li>
        {{ /for }}
    {{ /fragment }}
</html>

Then use the # query parameter to render out the fragment:

const users = ["Jared", "Kim", "Bob"];

const fragment = await env.run("template.vto#list", { users }).content;

Which renders only the fragment:

<li>Jared</li>
<li>Kim</li>
<li>Bob</li>

Readme

Keywords

none

Package Sidebar

Install

npm i vento-plugin-fragments

Weekly Downloads

7

Version

0.1.0

License

MIT

Unpacked Size

5.75 kB

Total Files

8

Last publish

Collaborators

  • wrapperup