11 February 2013
| Prerequisite knowledge Experience working with JavaScript, HTML, XML, and the Adobe Digital Publishing Suite is required. This article also assumes you have access to a web server and have published public folios. User level: Beginning Original publication date: 08/08/2012 Modified: 02/11/2013 (Change log) |
Adobe products
Other required products
|
Documentation Library and Store API v2 Library and Store API v2 [zip file for offline viewing] Sample files iphone_library_store.zipBy downloading software from the Adobe Web site you agree to the terms of our license agreement. Please read it before downloading. (File last updated on 02/11/2013) |
The sample files in this article contain a template you can implement in your DPS viewer. The template enables you to add a custom tab in the viewer that functions as a store and library on the iPhone using version 2 of the library and store APIs. This functionality is available to all enterprise users of the Adobe Digital Publishing Suite through the use of custom navigation slots. With r22, publishers can replace the default library using their own implementation. These custom slots are implemented using HTML, CSS, and JavaScript. Using code, you can access APIs that allow you to duplicate e-commerce functionality found in the default library and customize it to fit your project design.
Begin by downloading the sample files provided at the beginning of this article. The sample files contain a template that offers an alternate view of the default library. Using source code, you can change the appearance of the interface to publish a custom user experience. Figures 1-5 shows the various views of the template implementation.


Note: The Auto Archive option is only displayed if auto-archive is enabled for the viewer.


The Subscribe button is only displayed if the following conditions are true:

The Subscriber Login button is used for entitlement viewers. It is displayed if a flag, isEntitlementViewer, is set to true in the JavaScript source code.
In order to use this template you must have folios which are published as public.
Where does the data come from?
The template uses the new library and store APIs to display folio data and images. All other images are packaged in your viewer. Download and uncompress the sample files folder to see the contents. Currently, Viewer Builder does not allow nested folders in HTMLResources. Because of this limitation, the template does notorganize the files into folders.
Development considerations
During development, it is a best practice to build and test your content on the desktop using Safari. When testing on the desktop, the API file is not available so data is loaded from the Adobe fulfillment XML feed. Using Safari allows local files to access data across domains, which is required when testing your project on the desktop.
While testing on the desktop, be sure to remove the include for AdobeLibraryAPI.js—otherwise you will be unable to view the files in your desktop browser. When testing on the desktop, if nothing is displayed open the debugger to check if there are any file paths that can't be resolved.
To enable the Develop menu option, select Safari > Preferences > Advanced and then choose Show Develop menu in menu bar. Once the Develop menu is displayed, select Develop > Start Debugging JavaScript and then click Console to see if there are any errors. After you've confirmed that your store is running as expected on the desktop, always test the store again on your device.
The following list contains descriptions of the key files in the template:
Note: Files in the “assets” directory should be included in the custom slot Zip file you upload to Viewer Builder.
To use this template with your own DPS content, you'll complete the following steps:
The following sections describe each of these steps in more detail.
This modification is only necessary if you would like to test your account on the desktop. Since the API file is not available on the desktop, this XML feed is used to display the folios.
Open AppView.js in your code editor. On line 20, modify FULFILLMENT_URL to match the accountId parameter with your accountId. If you need help finding your accountId, see the section titled Connecting to fulfillment in Building a custom storefront. Once you have located your accountId, modify the value after http://edge.adobe-dcfs.com/ddp/issueServer/issues?accountId=.
On line 24, modify isEntitlementViewer to true or false, based on whether or not this is an entitlement viewer. This setting determines whether or not the Subscriber Login button is displayed.
To upload your files to the Viewer Builder, you must first create an archive that contains the files from the “assets” directory. When the archive is created, be sure to zip the files at the file level rather than the directory level of the assets directory.
Once your files are compressed, open Viewer Builder and navigate to the Navigation Toolbar section. For more information on Viewer Builder, watch the Viewer Builder tutorial video. In the Navigation Toolbar section, select the option to Use Custom Viewer Library. Navigate to the zip file you created above and select the Hide Title Bar checkbox.

When your IPA has finished building, install the content on your device and begin testing.
In this article you learned how to modify a sample template to create a library and store custom slot. To get more information about the JavaScript libraries used, check out the documentation for Backbone, jQuery and Underscore. Additional articles and videos are also available for Digital Publishing Suite.
This work is licensed under a Creative Commons Attribution-Noncommercial-Share Alike 3.0 Unported License. Permissions beyond the scope of this license, pertaining to the examples of code included within this work are available at Adobe.
12/12/2012
10/15/2012