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

knockout-attributebinder

v0.1.0

Published

Knockout binding provider that converts data-something attributes into proper bindings

Downloads

4

Readme

knockout-attributeBinder

What is this plugin?

The knockout-attributeBinder is a custom binding provider for Knockout that allows you to create bindings from any data- attributes and can map all of the existing Knockout bindings to use this syntax.

This allows you to add bindings like:

    <ul data-foreach="items">
        <li data-text="description"></li>
    </ul>

You can also choose to add your own custom handlers. For example, you could choose to make <span data-local="user-help"></span> result in applying a text binding with a localized value to the element.

Additionally, existing data-bind style bindings are still respected and can be mixed with any of the attribute bindings.

API

ko.attributeBinder.install(addCurrentBindings)

Make Knockout use the attribute binding provider. Optionally, choose to map handlers for all existing bindings.

ko.attributeBinder.uninstall()

Restore Knockout's previously used binding provider.

ko.attributeBinder.setPrefix(prefix)

Change the prefix from the default (data). For example, you may choose data-ko or ko as your prefix.

ko.attributeBinder.register(name, handler)

Register a new attribute handler. The handler functions takes four arguments:

  • key - the name of the mapping (if attribute was data-myThing, then this would be myThing). * Note: the attribute name is lower-cased during matching, but the key will always be provided to the handler with the original casing. *
  • value - the string value of the attribute
  • context - the data context associated with the node
  • node - the node itself

As a simple example suppose that you want to use data-local to provide localized text and that you have an object containing the current language's keys and values in an observable called localizedKeys. A handler might look like:

ko.attributeBinding.register("local", function(key, value) {
    return {
        text: function() {
            return localizedKeys()[value] || "Not localized";
        }
    };
});

The handler should return an object with any bindings and their associated accessor (a function that returns the value to bind against to capture dependencies at the right time).

ko.attributeBinder.unregister(name)

Unregister an existing handler.

ko.attributeBinder.addCurrentBindingHandlers()

Map all of the existing bindings to handlers. This can optionally be done as part of the install method.

ko.attributeBinder.clearAllHandlers()

Clear out all of the mapped handlers.

ko.attributeBinder.defaultExpressionHandler

A function that can be used to parse an attribute's value as an expression with context. This is used as the handler for any of the existing bindings, if you choose to have them mapped. It can also be used for any custom handlers that you add or even within a custom handler.

ko.attributeBinder.defaulltStringHandler

A function that can be used to parse an attribute's value as a string. This allows for simpler processing and let's you do data-something="someValue" rather than having to wrap the value in quotes like: data-something="'someValue'".

Typical Usage

Before calling ko.applyBindings activate this binding provider and map all of the existing bindings by calling:

ko.attributeBinder.install(true);

License: MIT http://www.opensource.org/licenses/mit-license.php