This tutorial is for Dojo 1.6 and may be out of date.

Up to date tutorials are available.

Dojo Object Store

Separation of concerns is a fundamental aspect of good programming. Keeping presentation distinct from the data model is a key separation to employ. The Dojo object store architecture establishes a consistent interface for data interaction inspired by the HTML5 object store API.

Why Dojo Object Store?

Separation of concerns is a fundamental aspect of organized, manageable programming, and an essential separation in web applications is that of data modeling from the user interface (where a user interface is typically defined as a view and controller in model-view-controller (MVC) architecture). The Dojo object store architecture establishes a consistent interface for data interaction inspired by the HTML5 object store API. This API was developed to facilitate loosely coupled development where different widgets and user interfaces could interact with data from a variety of sources in a consistent manner.

The Dojo Object Store interface allows you to develop and use well-encapulsated components that can be easily connected to various data providers. Dojo Object Store is an API, and has multiple implementations called stores. Stores include a simple in-memory store, a JSON/REST store, legacy dojo.data stores, and store wrappers that provide additional functionality.

Getting Started

The easiest store to get started with is dojo/store/Memory. We can simply provide an array of objects to the constructor, and we can start interacting with it. Once the store is created, we can query it with the query method. An easy way to query is to provide an object with name/value pairs that indicate the required values of matched objects. The query method always returns an object or array with a forEach method (as well as map and filter):

var employees = [
  {name:"Jim", department:"accounting"},
  {name:"Bill", department:"engineering"},
  {name:"Mike", department:"sales"},
  {name:"John", department:"sales"}
];
var employeeStore = new dojo.store.Memory({data:employees, idProperty: "name"});
employeeStore.query({department:"sales"}).forEach(function(employee){
	// this is called for each employee in the sales department
	alert(employee.name);
});

This will call an alert with the name of employee in the sales department.

View Demo

We could go on to create new objects in the store, and delete objects:

// add a new employee
employeeStore.add({name:"George", department:"accounting"});
// remove Bill
employeeStore.remove("Bill");

We can retrieve objects and update them. Objects in the store are simple plain JavaScript objects, so we can directly access and modify the properties (when you modify properties, make sure you do a put() to save the changes):

// retrieve object with the name "Jim"
var jim = employeeStore.get("Jim");
// show the department property
console.log("Jim's department is " + jim.department);
// iterate through all the properties of jim:
for(var i in jim){
	console.log(i, "=", jim[i]);
}
// update his department
jim.department = "engineering";
// and store the change
employeeStore.put(jim);

Going back to querying, we can add additional parameters to a query. These additional parameters allow us to limit the query to a specific number of objects, or to sort the objects, using the second argument to the query method. This second argument can be an object with start and count properties that define the limit on the number of objects returned. Limiting the result set can be critical for large-scale data sets that are used by paging-capable widgets (like the grid), where new pages of data are requested on demand. The second argument can also include a sort property, to specify the property and direction to sort on in the query:

employeeStore.query({department:"sales"}, {
	sort:[{attribute:"department", descending: false}],
	start: 0,
	count: 10
}).map(function(employee){
	// the results should be sorted by department, with a limit of 10 objects,
	// starting at an offset of 0
	return employee.name; // return just the name, mapping to an array of names
}).forEach(function(employeeName){
	console.log(employeeName);
});

The Memory store is a synchronous store, which means it directly returns the results of an action (get returns the object).

dojo.store.JsonRest

Another highly useful store is the JsonRest store, which delegates the various store actions to your server using standards-based HTTP/REST with JSON. The store actions map intuitively to HTTP GET, PUT, POST, and DELETE methods. The server-side interaction is described in more detail in the JsonRest documentation.

This is also an example of an asynchronous store. The methods on an asynchronous store return promises. We can use a promise by providing a callback to the returned promise:

employeeStore = new dojo.store.JsonRest({target:"/Employee/"});
employeeStore.get("Bill").then(function(bill){
	// called once Bill was retrieved
});

We can also use dojo.when() to work with methods that may be synchronous or asynchronous, for consistent behavior regardless of implementation.

These examples demonstrate how to interact with stores. We can now start building widgets and components that interact with stores in a way that is free from dependence on a particular implementation. We can also plug our stores into existing components that use stores.

For example, the StoreSeries adapter allows us to use a store as the data source for a chart. Most components that use a store require that you provide the query that the component should use to query the store:

new dojox.charting.Chart("lines").
	/* any other config of chart */
	// now use a data series from my store
	addSeries("Price", new dojox.charting.StoreSeries(
		stockStore, {query: {sector:"technology"}}, "price")).
	render();

Another important concept in the Dojo store architecture is composing functionality by layering store wrappers. Dojo comes with a few store wrappers that add functionality, including a caching wrapper, and an observable wrapper that fires events for data changes.

Conclusion

The Dojo Object Store implementation in 1.6 is a useful tool available to us to help us keep a clean separation of concerns between our data and our user interfaces. It provides a straight-forward API, allowing for easy development of custom stores. Review the reference guide and post below for more information.

Additional Resources