npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

mithril.bindings

v0.0.5

Published

Mithril bindings - bi-directional bindings and richer properties with subscribeability.

Downloads

16

Readme

mithril.bindings

These bindings differ from the normal mithril bindings in so far as the value binding is bi-directional by default, so if you change the value the model, it will automatically update the bound field, and we have a more rich properties model.

var app = {
    model: function(name) {
        this.name = m.p(name);
    },
    view: function(c) {
        return [
            m("input", { name: "name", value: c.model.name }),
            m("div", "Hello " + c.model.name()),
            m("button", { onclick: c.setName }, "Set name via model")
        ];
    },
    controller: function() {
        var self = this;
        self.model = new app.model("world");
        self.setName = function() {
            self.model.name("Dave");
        }
    }
};

Getting started

Simply include mithril.js and then mithril.bindings.js afterwards

<script src="mithril.js">
<script src="mithril.bindings.js">

Elements

We have had to add a new elements creation mechanism, as the Mithril core is not flexible enough to be able to override the standard way it creates elements, (which is required to create seamless bi-directional binding), so we use:

m.e(...)

instead of:

m(...)

The usage signature is identical to Mithril's

Properties

We have added a new property creation mechanism, so we use:

m.p(...)

instead of:

m.prop(...)

The usage signature is identical to the original Mithril prop model, with the additional functionality:

Subscribe

m.p(...).subscribe(function)

This will execute function each time the value of the property changes (works with basic values)

Delay

m.p(...).delay(true)

This will delay automatic rendering, so that you can manually trigger it using m.startComputation and m.endComputation.

Push on arrays

m.p(...).push(value)

If the underlying property value is an array, you can push values to it.

Included bindings

With the included bindings you can do things like:

Two-way value binding by default:

m.e("input", { name: "name", value: u.name })

Note: you can also use "valueInput", "valueKeyup", "valueKeypress"

Toggle a boolean attribute on click:

m.e("button", { type: "button", toggle: u.hide }, "Toggle hide")

Hide an element easily (without manually settings the style attribute):

m.e("div", { hide: u.hide })

See the /examples directory for more examples!

Custom bindings

You are able to add custom bindings using m.addBinding, for example:

//  Toggle boolean value on click
context.m.addBinding('toggle', function(prop){
    this.onclick = function(){
        var value = prop();
        prop(!value);
    }
});

Each binding will have the property object passed to it, and this refers to the element's binding scope.

This can be useful for many things, including overriding default functionality.