1.0.0 • Published 7 years ago

mocx v1.0.0

Weekly downloads
4
License
Apache 2.0
Repository
github
Last release
7 years ago

MOCX

Why?

When building apps with Titanium Alloy, it's handy to be able to mock up screens before wiring up to a backend and when doing that it's useful to be able to populate screens with "real" data. But, if you don't have an API ready then what do you do? Mocx is designed to allow you to create create mock collections and modules that are compatible with Alloy's Backbone data-binding.

Using Movc

You can use Mocx to create a collection and populate a Table or Listview, or create Models on the fly, and it'll support the .fetch() method to pretend to get the model / collection. So you could use it to mock data and even persist data to local storage.

The main things I wanted to achieve were:-

  • Easy to add, lightweight library
  • Allow easy creation of Models and Collections
  • Work with .fetch() instead of .trigger() when getting data
  • Extendable

Quick Start

var mocx = require("mocx");

mocx.createCollection("contacts", [{name : "John Smith"}, {name : "Jane Doe"}]);

Once done you can specify a dataCollection on a bindable view and then in the view's controller do:

Alloy.Collections.contacts.fetch();

More examples / readme updates coming.

License