hypersam

0.0.37 • Public • Published

Hyper SAM

A framework for web apps powered by HyperHTML and the SAM pattern.

App Rendering via the SAM container

  1. Every component may be a stateless function. A wrapping connect function (cn) may be used to inject state or actions into the props. It also allows for DOM nodes to be reused at render.
  2. Actions propose state updates. Any action may be asynchronous and call external APIs (eg. validators).
  3. An asynchronous action may be cancelled, while it is resolving (eg. API call).
  4. The Accept function updates the state. The logic here may either accept or reject action proposals and enforces a consistent state. It may be asynchronous too, to persist its data to a database for example. No further actions are processed before the model completes a proposal, and intermediate actions are retried after a timeout automatically. A \busy flag is automatically set by the container in the state to disable UI inputs for example while the proposal is processed. The state is a plain object, there is not immutability required.
  5. Actions may be called automatically if the state is in a particular shape via the optional Next Action function.

Routing

Client side routing is supported via the onpushstate package. A route action is called with the old path string and the current window.location object.

Note: A default route action is defined for convenience:

route: ({ oldPath, location, }) => propose({ route, query }).

Package Usage

This package is published as a native ES Node module. If you have bundling problems, please try importing the files client or server inside src directly, instead of using index.mjs.

API and example usage

App Interface

This framework is intended to render an app with a specific interface:

  • app: Render function, effectively just a component at the root level (see component examples below).
  • actions {}: An object containing Action functions which may be called from buttons, etc.
    • action:: propose => arg => (proposal, cancellable?): An optionally asynchronous function. Its return value is proposed to the Accept function of the model which may update the state. If cancellable is set, the action can be aborted (eg. while calling an API). To abort a pending proposal, the action has to be called again (the proposal will be ignored).
  • accept:: ({ state, proposal }) => void: This is the Accept function of the model.
  • nextAction:: ({ state, actions }) => void : This optional function may call actions according to some state. It is automatically called after each state update.
  • state {}: Optionally, an initial state can be passed. This minimises checks inside the components, if you already have an empty Array instead of undefined for example.

An example app

const Actions = ({ someService }) => {
    return {
        exampleAction: propose => async ({ value }) => {
            if (typeof value !== "string") {
                return;
            }
            const x = await someService.db.get(value);
            await propose({ value: x });
        },
    };
};

const Accept = ({ state, proposal }) => {
    if (proposal.route !== undefined) {
        state.route = proposal.route;
    }
    if (proposal.value !== undefined) {
        state.bar = proposal.value;
    }
};

// This is an optional function of the app
const nextAction = ({ state, actions }) => {
    if (state.foo) {
        actions.exampleAction({ value: "abc" });
    }
};

Client Constructor

  • A factory produces an app instance.
  • By default it will restore the server-side-rendered state.
  • While the page parses client-side code, a dispatch function may record actions to be replayed when the client app is ready.
  • Will do an initial render automatically.
import { ClientApp } from "hypersam";
// app-shell is our app logic with a model, and actions.
import { appShell, actions, accept, nextAction } from "./app-shell";

const { accept, actions } = ClientApp({
    app: appShell, // the root render function
    rootElement: document.body,
    accept, // the update function for the state
    actions, // an object of functions which propose state updates
    nextAction, // optional, automatic actions according to state
    state: {
        // Optional initial state object, ignored with server-side render
    },
})
    .then(({ accept, actions }) => {
        // May call accept or actions manually here.
    })
    .catch(error => {
        console.error("App error", error);
    });

Server Constructor

  • A factory produces an object with two fields.
  • The first is a function which renders an HTML string of the app.
  • The second is the app-model Accept function. The app state may be updated with this function in order to reuse the model's logic.
import { SsrApp } from "hypersam";
// app-shell is our app logic with a model, and actions.
// actions are optional, automatic next-action is not yet supported
import { appShell, accept } from "./app-shell";

const { renderHTMLString, accept: ssrAccept } = SsrApp({
    state: { /* Optional */ },
    app: appShell,
    accept,
});
// May get data to propose to model here
const proposal = { route, query, title, description, posts };
await ssrAccept({ state, proposal });
const appString = renderHTMLString();
// insert into HTML body ...

Connect Function

The connect function (cn) passes some default props to a view:

  1. state: the application state.
  2. actions: an object of the app's actions.
  3. render: used to render a view.
  4. cn: a connect function to be used for child components.
  5. dispatch: a function for click handlers to record actions while the client logic initialises (used with server-side rendering).
  6. _wire: a HyperHTML render function to force recreation of DOM nodes.

Please also refer to the HyperHTML docs.

It has multiple call signatures:

// one argument
cn(
    component, // function : props => props.render`<!-- HTML -->`
);
// two arguments
cn(
    component,
    childProps, // object : Will be merged into child's props
);
// or
cn(
    component,
    nameSpace, // number|string : Used, if component is used multiple times in same view
);
// three or four arguments
cn(
    component,
    childProps,
    reference, // object|null : Object to weakly bind DOM nodes to (see hyperhtml)
    nameSpace, //optional
);

Basic component example

const fetchButtonConnected = props => {
    const childProps = {
        parentProp: props.parentProp,
        fetchData: props.actions.fetchData,
        someState: props.state.someState,
    };
    return props.cn(fetchButton, childProps);
};

const fetchButton = ({ render, parentProp, fetchData, someState }) => {
    return render`
        <button onclick=${fetchData}>
            State ${someState}-${parentProp}
        </button>
        `;
};

Namespacing example

If you render the same component twice, you need to passs a namespace. HyperHTML is used to reuse as many DOM-nodes as possible, and without the namespace, only one instance of the component would be rendered. The namespace should be a unique Number or String for the containing component.

const testSpan = props => props.render`<span>Test</span>`;

const appliesNamespace = ({ render, cn }) => render`
    <div>
        ${cn(testSpan, 0)}
        ${cn(testSpan, 1)}
    </div>
    `;

Render reference example

A list component may use render references to free memory when list items are removed from state.

Note: The FetchPosts function manipulates the DOM and can pass event data to the actual action fetchPosts. This way, the action fetchPosts itself can be used on the server too.

const postsConnected = props => {
    const childProps = {
        posts: props.state.posts,
        fetchPosts: props.actions.fetchPosts,
    };
    return props.cn(posts, childProps);
};

const posts = props => {
    const { render, cn, posts, fetchPosts } = props;
    return render`
        <button onclick=${FetchPosts({ fetchPosts })}>Fetch Posts</button>
        <ul class="posts">
            ${posts.map(post => cn(postItem, { ...post }, post))}
        </ul>
        `;
};

const FetchPosts = ({ fetchPosts }) => {
    return async function(event) {
        this.setAttribute("disabled", "true");
        await fetchPosts(); // Wait until its data is accepted or rejected
        this.removeAttribute("disabled");
    };
};

const postItem = props => {
    const { render, cn, title, summary, content } = props;
    return render`
        <li class="posts posts__post">
            <p class="posts posts__title">${title}</p>
            ${cn(postSummary, { summary })}
            <p class="posts posts__content">${content}</p>
        </li>
        `;
};

const postSummary = props => {
    const { render, summary } = props;
    return render`
        <p class="posts posts__summary">${summary}</p>
        `;
};

Dispatch function example

const view = props => {
    const { render, dispatch, fetchPosts } = props;
    const args = [1, 2];
    const onClick = dispatch("fetchPosts", FetchPostsSSR, ...args);
    return render`
        <button onclick=${onClick}>Fetch Posts SSR</button>
        `;
};

const FetchPostsSSR = (...args) => {
    return function(event, action) {
        action();
    };

Package Sidebar

Install

npm i hypersam

Weekly Downloads

26

Version

0.0.37

License

ISC

Unpacked Size

27.6 kB

Total Files

16

Last publish

Collaborators

  • sladiri