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

knockoutcrud

v1.4.0

Published

A knockoutjs extension to crud items in Observables and Observable Arrays

Downloads

10

Readme

knockoutcrud

A knockoutjs extension to crud items in Observables and Observable Arrays

Inspired by "A Simple Editor Pattern for Knockout.js" by Ryan Niemeyer (http://www.knockmeout.net/2013/01/simple-editor-pattern-knockout-js.html). Thank you Ryan! It was one paragraph in this blog that go me thinking: "If you were going to reuse this technique [the editor pattern] often, then you could even create an extension to an observableArray that adds the appropriate observables and functions off of the observableArray itself like in this sample."

Features

  • For editing an array of objects within an ObservableArray and those object properties, as observables, at the same time
  • Broadcasting of updates via arrayChange
  • Programmable form field focus
  • Plays nicely alongside other plugins like Knockout Validation

How it works

Demo

http://antonythorpe.github.io/knockoutcrud - a Todo App, of course!

Tests

http://antonythorpe.github.io/knockoutcrud/tests/SpecRunner

Coding Requirements

  • A constructor function for each Observable Array
  • An update function within the constructor function For example:
var SpaceExploration = function(data) {
    this_id = ko.observable();
    this.name = ko.observable();
    this.price = ko.observable();
    this.update(data);
};

ko.utils.extend(SpaceExploration.prototype, {  // Note: can also extend the prototype
    update: function(data) {
        this._id(data.id || "");
        this.name(data.name || "New item");
        this.price(data.price || 0);
    }
});

This separates creation from initialisation. Fresh data can be applied at any time.

Installation

bower install https://github.com/AntonyThorpe/knockoutcrud.git --save

Or

npm install knockoutcrud --save

Include knockoutcrud.js after loading knockout.

import ko from 'knockout';
import 'knockoutcrud';

Configuration

To load the methods and properties against an Observable Array initiate by:

this.spaceExploration = ko.observableArray().crud({
    constructor: SpaceExploration,
    uniqueIdentifier: "_id"
});

The unique identifier is needed if utilising the upsert and justUpdatedfunctions.

Focus

Method added to Observables

  • focusable: use to select a form field that you need focused after pageload or an event.
this.inputField = ko.observable().focusable(/* optional: true */);  // in constructor

// then later
this.inputField.focused(true);

And, in html:

<input data-bind="textInput: inputField, hasFocus: inputField.focused" />

Editing a whole Observable Array

Methods added to Observable Arrays

  • insert: to add new records to a collection. This method needs an array or single object of items to push.
  • upsert: to add or update records in a collection. This method needs an array/object of items to push/update (must contain the unique identifier to be able to find objects to update).
  • deleteItem: remove an instance from an edited collection
  • cancelEdit: roll back the collection to what it was originally

Properties added to Observable Arrays

  • beforeEdit: hold a copy of the original collection for running through upon cancel
  • justRemoved: parked removed instances held temporary incase of cancellation of a collection edit
  • justAdded: parked added instances held temporary incase of cancellation of a collection edit The reason for justRemoved and justAdded properties is to speed up the cancel step. This is quicker than finding the difference betweeen the start and end points before cancelling.
  • justUpdated: get what has changed. Finds the deep difference between the current Observable Array and beforeEdit. This function returns a 'previous' and 'value' properties for comparison.

Editing an object within an Observable Array

Methods added to Observable Arrays

  • selectItem: populates selectedItem(see below) and provides a clean copy of the item for editing to itemForEditing property
  • acceptItem: accept the changes and update the original object (publishes the change to 'arrayChange')
  • revertItem: cancel changes to the object
  • removeItem: remove the item currently being edited

Properties added to Observable Arrays

  • selectedItem: holds the original object (an Observable). In effect, a copy of 'this'. Don't set its value directly, use selectItem. Can use like this.yourObservableArray.selectedItem().update(updatedData);
  • itemForEditing: the edited copy. Don't set its value directly, use selectItem.
  • itemForAdding: For when a diffent form is needed for adding

Adding an object to an Observable Array

Adding is different from editing so provide itemForAdding for holding a protected observable whilst entering. The cancelAdd method is used for throwing this away.

Methods added to Observable Arrays

  • cancelAdd: clears itemForAdding

Properties added to Observable Arrays

  • itemForAdding: An observable for holding an addition to an observable array

Pro Tip: Updating the Server after CRUD Operations

  • Upon saving the CRUD operations, call justRemoved, justAdded and justUpdated on the Observable Array to provide a full set of data needed to forward to the server.
  • Update the server as things change:
spaceExploration.subscribe(function(newValue) {
    console.log(newValue);  // returns an array of objects with properties: index, previous (for updates) and value (current value of item)
}, null, "arrayChange");

Requirements

Links

  • Also see editable feature in ko.plus. This is a great plugin for Knockout with similar outcomes.

Support

None sorry.

Change Log

File

License

MIT