AngularJS Front-End App with Cloud Storage Tutorial Part 1: Building a Minimal App in Seven Steps Introduction Background Coding the App
In this tutorial, which has been extracted from the open access book Building Front-End Web Apps with AngularJS and Parse.com, we show how to build a minimal web application with the AngularJS framework and the cloud storage service Parse.com. Such an app is a front-end app, because most parts of the app's code are executed on the front-end, while only the persistent storage functionality is executed on the back-end server(s) in the cloud infrastructure managed by Parse.com. If you want to see how it works, you can run the minimal app discussed in this article from our server.
The minimal version of an AngularJS data management app discussed in this tutorial only includes a minimum of the overall functionality required for a complete app. It takes care of only one object type (Book
) and supports the four standard data management operations (Create/Read/Update/Delete), but it needs to be enhanced by adding further important parts of the app's overall functionality:
-
Part 2: Taking care of constraint validation
-
Part 3: Managing unidirectional associations assigning authors and publishers to books
-
Part 4: Managing bidirectional associations also assigning books to authors and to publishers
-
Part 5: Handling subtype (inheritance) relationships in a class hierarchy
Background
We assume that the reader is already familiar with HTML and has some programming experience. For a short introduction to, or refresher of, JavaScript, please check the CodeProject article
The purpose of our example app is to manage information about books. That is, we deal with a single object type: What do we need for such an information management application? There are four standard use cases, which have to be supported by the application: These four standard use cases, and the corresponding data management operations, are often summarized with the acronym CRUD. For entering data with the help of the keyboard and the screen of our computer, we can use HTML forms, which provide the user interface technology for web applications. For maintaining a collection of persistent data objects, we need a storage technology that allows to keep data objects in persistent records on a secondary storage device, either locally or remotely. An attractive option for remote storage is using a cloud storage service, where data is stored in logical data pools, which may physically span multiple servers in a cloud infrastructure owned and managed by a cloud service company. A cloud storage service is typically reachable via a web API, which is often called a "REST API". For our minimal AngularJS app, we will use the cloud service platform Parse.com via its REST API. In the first step, we set up our folder structure for the application. We pick a name for our app, such as "Public Library", and a corresponding (possibly abbreviated) name for the application folder, such as "publicLibrary". Then we create the following folder structure: In addition to the index.html file for starting the app, we have three sub-folders: The js folder is used for all app-specific JavaScript files. app.js has the task to define a name for our AngularJS app, to declare all dependences, also to organize the relationship between views, their corresponding controllers and even URLs. controllers.js is used for implementing various functions. The partials folder holds all HTML-files for different sub-views, which will be replaced by AngularJS mutually exclusively into the body of index.html. The src folder holds all official libraries like angular.js and angular-route.js. The entrance point of our web app, index.html, is used for including all files and creating an The AngularJS attribute The app.js file tells Angular the name of our app, defines dependencies, and manages the routes, controllers and URLs: We define our app with the name " The module After declaring dependencies, we configure our main module In conjunction with the For example, the third option of When index.html is requested and the request URL path is neither of "/main", "/showAllBooks", "/createBook", "/updateBook" or "/deleteBook", then the In this view template, we provide a menu for choosing one of the CRUD data management operations via a corresponding page (such as createBook.html), or for creating test data with the help of the procedure In an AngularJS app, the view model, which is simply called 'model', is the basis for writing the view and controller code. In the information design model shown in Figure 2.1 above, there is only one class, representing the (business) object type The The cloud storage service of Parse.com can be used via the REST API of Parse.com, which allows any app that can send HTTP request messages to access the persistent data store on Parse.com. All API access is over HTTPS via the Notice that an For being able to access the Parse cloud storage service, we need to set up a user account on the Parse.comwebsite Then go to "Dashboard" and "Create a new App". On the app's "Settings" page, you can find its "Application ID" and "REST API Key" using the tab "Keys". Authentication is done via HTTP headers, so we need to provide these keys as the values of corresponding HTTP header fields, like so: The header field The format of a request message body for AngularJS provides the We can add the required Parse authentication headers as default headers in This use case corresponds to the "Retrieve/Read" operation from the four basic CRUD data management operations. The user interface for this use case is provided by the view template partials/listAllBooks.html containing a table for displaying information about books with the request URL path This view template, as well as any other one, is rendered within the Then, due to the table row rendering loop specified by the Let's take a look at the When the This use case corresponds to the "Create" from the four basic data management use cases Create-Retrieve-Update-Delete (CRUD). For a data management operation with user input, such as the "create object" operation, an HTML page with an HTML form is required as a user interface. The form typically has an Notice how the AngularJS attribute Notice that the This use case corresponds to the update operation from the four basic CRUD data management operations. The request URL path of this operation is Like for the Create use case, we have a view template for the user interface, partials/updateBook.html, which invokes a In the Notice that the view template has a Notice also, that we can specify an ordinary, instead of a two-way, data binding with Let's take a look at the Notice how we set the This use case corresponds to the delete/destroy operation from the four basic CRUD data management operations. The request URL path of this operation is Like for the Update use case, we have a view template for the user interface, partials/deleteBook.html, which invokes a corresponding After the user selects a book, the data binding mechanism of AngularJS, specified with Let's take a look at the In the index.html page, we have buttons for invoking two special methods: Parse provides batch operations that allow creating, updating or deleting up to 50 objects with one request message. We'd like to define a controller Notice that the Since the Parse REST API does not provide an option for bulk delete operations, for clearing our database we first retrieve all book records, and then delete them one by one:: You can run the minimal AngularJS/Parse app from our server or download the code as a ZIP archive file. The code of this app should be extended by adding constraint validation. You can learn how to do this by getting the book or by reading the online chapter Constraint Validation in an AngularJS Front-End Web App.Coding the App
Book
, as depicted in the following figure:
Step 1 - Set Up the Folder Structure
publicLibrary
|-- index.html
|-- js
| |-- app.js
| `-- controllers.js
|-- partials
| |-- createBook.html
| |-- deleteBook.html
| |-- main.html
| |-- showAllBooks.html
| `-- updateBook.html
`-- src
|-- angular-route.js
`-- angular.js
1.1. The Start Page
ng-view
container element for rendering different views:<!DOCTYPE html>
<html ng-app="publicLibraryApp">
<head>
<meta charset="UTF-8" />
<title>Public Library with AngularJS</title>
<script src="src/angular.js"></script>
<script src="src/angular-route.js"></script>
<script src="js/app.js"></script>
<script src="js/controllers.js"></script>
</head>
<body>
<div ng-view="ng-view"></div>
</body>
</html>
ng-app
of the html
element declares the root element of an AngularJS app, here with the name "publicLibraryApp
", while the attribute ng-view
(typically in a div
) defines a container element for rendering view templates in the start page index.html. This approach allows sharing general static
content, such as header and footer, among all views. View templates will be rendered into the ng-view
div
element according to a configuration file app.js.1.2. Modules and Routes
var publicLibraryApp = angular.module('publicLibraryApp',
['ngRoute', 'plControllers']);
publicLibraryApp.config(['$routeProvider', function ( $routeProvider) {
$routeProvider
.when('/main', {
templateUrl: 'partials/main.html',
controller: 'TestDatasController'
})
.when('/showAllBooks', {
templateUrl: 'partials/showAllBooks.html',
controller: 'BooksController'
})
.when('/createBook', {
templateUrl: 'partials/createBook.html',
controller: 'BooksController'
})
.when('/updateBook', {
templateUrl: 'partials/updateBook.html',
controller: 'BooksController'
})
.when('/deleteBook', {
templateUrl: 'partials/deleteBook.html',
controller: 'BooksController'
})
.otherwise({
redirectTo: '/main'
});
}]);
publicLibraryApp.run(['$http', function ( $http) {
// Predefine the API's value from Parse.com
$http.defaults.headers.common = {
'X-Parse-Application-Id': 'Your_Application_ID',
'X-Parse-REST-API-Key': 'Your_REST_API_Key'
}
}]);
publicLibraryApp
" and dependencies on the module plControllers
(to be defined by us) and on the pre-defined AngularJS module ngRoute
, which supports URL management providing routing, services and directives for AngularJS apps.plControllers
, which will collect all controllers of our app, is defined in the file js/controllers.js:var plControllers = angular.module('plControllers', []);
publicLibraryApp
withpublicLibraryApp.config
for defining "routes", which are mappings from request URL paths to template/controller combinations, and with publicLibraryApp.run
for providing application start-up information such as authentication credentials.ngView
directive, application routes in AngularJS are declared via the $routeProvider
, which is provided in module ngRoute
to define a Route-ID for each view and corresponding controller.$routeProvider
, .when('/createBook', ...)
means that when the request URL path is "/createBook", the template partials/createBook.html will be rendered inside the ng-view
div
element and the app will be controlled by the user-defined controller BooksController
.1.3 The Start Page View Template main.html
$routeProvider
calls otherwise()
, which takes care that "/main", in combination with the TestDataController
, is used as the default route.<menu>
<li><a href="#/showAllBooks">
<button type="button">List all Books</button>
</a></li>
<li><a href="#/createBook">
<button type="button">Add a new Book</button>
</a></li>
<li><a href="#/updateBook">
<button type="button">Update a Book</button>
</a></li>
<li><a href="#/deleteBook">
<button type="button">Delete a Book</button>
</a></li>
<li><button type="button" ng-click="clearDatabase()">
Clear database
</button></li>
<li><button type="button" ng-click="createTestData()">
Create test data
</button></li>
</menu>
createTestData()
, or for clearing all data with clearDatabase()
. The AngularJS event-handler attribute ng-click
, defined for the button
elements, allows specifying a controller method invocation to be executed when a corresponding click event has occurred.1.4 View Models in AngularJS
Book
. In AngularJS, this class will be turned into a JS object as the value of the $scope
property book
, representing a view model, like so:$scope.book = {
"isbn": "",
"title": "",
"year": 0
};
$scope
object extends the app's $rootScope
object (in the sense of prototype-based inheritance). AngularJS uses the $scope
object, together with the information contained in the template and controller, to keep models and views separate, but in sync. Any changes made to the view model are propagated to the view, and any changes that occur in the view are propagated to the view model (this mechanism is called two-way data binding).Step 2 - Using the Cloud Storage Service Parse.com
api.parse.com
domain. The URL path prefix /1/
indicates that we are currently using version 1 of the API. Using the Parse cloud storage service REST API for our web application, we need five functionalities to handle theBook
Object, as shown in Table 2.1.
Request URL path
HTTP method
Meaning
/1/classes/<className>
POST
Creating an object
/1/classes/<className>/<objectId>
GET
Retrieving an object
/1/classes/<className>/<objectId>
PUT
Updating an object
/1/classes/<className>/<objectId>
DELETE
Deleting an object
/1/classes/<className>
GET
Retrieving all objects (and other queries)
objectId
is automatically created by the Parse storage service when a new object is saved. In fact, Parse does not only create an objectId
, but also the two time stamp values createdAt
and updatedAt
of typeDate
.headers: {
'X-Parse-Application-Id': 'Your_Application_ID',
'X-Parse-REST-API-Key': 'Your_REST_API_Key'
}
X-Parse-Application-Id
identifies which application you are accessing, and X-Parse-REST-API-Key
authenticates the endpoint. When we send GET
, POST
, PUT
or DELETE
request messages to Parse.com, these two headers have to be included.POST
and PUT
, as well as the format of all response message bodies, is JSON. In general, sending data to a (remote) back-end server from a JavaScript front-end program is done with asynchronous remote procedure calls using JavaScript's XML HTTP Request (XHR) API. Since such a remote procedure call can result either in a reply message confirming the successful completion of the call or indicating an error state, we generally need to specify two methods as the arguments for calling the remote procedure asynchronously: the first method success()
is invoked when the remote procedure call has been successfully completed, and the second one error()
when it failed.$http
'service' for sending HTTP request messages (and receiving their response messages) via JavaScript's XHR API. The $http
method takes a single argument that is used to generate HTTP request messages and returns a promise with two $http
specific methods: success()
and error()
. The general pattern for a $http
send/receive operation is the following:$http({
headers: {...},
method: 'GET|POST|...',
url: 'aRequestUrl'
})
.success( function () {...})
.error( function () {...});
publicLibraryApp.run
(injs/app.js), so we don't need to add them to each request. Notice that the $http
service has different default headers for different request types: Content-Type: application/json
for POST and PUT, and Accept: application/json, text/plain, */*
for all request types.3. Step 3 - Implement the Retrieve/List All Use Case
#/showAllBooks
:<h1>Public Library: List all books</h1>
<table ng-init="getAllBooks()">
<thead><tr>
<th>ISBN</th><th>Title</th><th>Year</th>
</tr></thead>
<tbody><tr ng-repeat="book in books">
<td>{{book.isbn}}</td>
<td>{{book.title}}</td>
<td>{{book.year}}</td>
</tr></tbody>
</table>
ng-view
container element defined inindex.html. By setting the ng-init
event handler attribute to getAllBooks()
, we make AngularJS invoking the method getAllBooks()
defined in BooksController
before the table element is rendered, which retrieves all book records from the Parse cloud data store and makes them available in the array $scope.books
.ng-repeat
attribute in the table/tbody/tr
element, the table body is populated with book data rows showing the ISBN, title and year of each book, as specified by the expressions {{book.isbn}}
, {{book.title}}
and {{book.year}}
.BooksController
and its method getAllBooks()
:plControllers.controller('BooksController',
['$scope', '$http', function ( $scope, $http){
...
$scope.getAllBooks = function () {
$http({
method: 'GET',
url: 'https://api.parse.com/1/classes/Book'
})
.success( function( data){
$scope.books = data.results;
})
.error( function( data) {
alert("ERROR when getting all books", data);
});
};
...
}]);
GET
request succeeds, all objects retrieved from the Parse
class Book
are stored in data.results
and then copied to $scope.books
. When the request fails, an error message is stored in data
and then shown in an alert box.Step 4 - Implement the Create Use Case
input
or select
field for each attribute of the model class. In the case of an AngularJS app, we don't have model classes and the UI is defined by a view template partials/createBook.html (an HTML fragment with embedded AngularJS expressions), which has a field for each attribute of the view model object $scope.book
. The createBook
view template invokes theBooksController
method addBook()
. In our example app, the request URL path of this page is#/createBook
, which renders the following template:<h1>Public Library: Create a new book record</h1>
<form>
<div>
<label>ISBN:
<input type="text" name="isbn" ng-model="book.isbn" />
</label>
</div>
<div>
<label>Title:
<input type="text" name="title" ng-model="book.title" />
</label>
</div>
<div>
<label>Year:
<input type="number" name="year" ng-model="book.year" />
</label>
</div>
<div>
<button type="submit" name="commit" ng-click="addBook()">
Save
</button>
</div>
</form>
ng-model
is used for binding form fields to attributes of the view model$scope.book
, resulting in a two-way data binding. Once the submit button is clicked, the function addBook()
will be executed. Let's take a look at the BooksController
and its function addBook()
:plControllers.controller('BooksController',
['$scope', '$http', function ( $scope, $http){
...
$scope.addBook = function () {
$http({
method: 'POST',
url: 'https://api.parse.com/1/classes/Book',
data: {
isbn: $scope.book.isbn,
title: $scope.book.title,
year: $scope.book.year
}
})
.success( function(){
alert("SUCCESS: Create book");
$scope.book = {};
})
.error( function( data){
alert("ERROR: Create book", data);
});
};
...
}]);
$http
method is invoked with a data
parameter holding the attribute-value slots of the object to be saved. When a user enters data in the HTML form fields of the "create book" user interface, the data binding mechanism of AngularJS copies the data to the view model object $scope.book
, so when the submit button is clicked, this data is sent to the Parse data store in the form of a HTTP POST request message using Angular's$http
method. The Parse cloud storage service receives the message and saves the book data as an instance of the Parse storage class Book
.Step 5 - Implement the Update Use Case
#/updateBook
.BooksController
method, updateBook()
. The updateBook
view template has a select
field for choosing the book to be updated, an output
field for the standard identifier attribute isbn
, and an input
field for each attribute of the $scope.book
view model that can be updated. Notice that by using an output
field for the standard identifier attribute, we do not allow changing the standard identifier of an existing object.<h1>Public Library: Update a book record</h1>
<form ng-init="getAllBooks()">
<div ng-hide="book">
<label>Select book:
<select ng-model="book" ng-options="book.title for book in books">
<option value="">---</option>
</select>
</label>
</div>
<div ng-show="book">
<div>
<label>ISBN:
<output type="text" name="isbn" ng-bind="book.isbn" />
</label>
</div>
<div>
<label>Title:
<input type="text" name="title" ng-model="book.title" />
</label>
</div>
<div>
<label>Year:
<input type="number" name="year" ng-model="book.year" />
</label>
</div>
<div>
<button type="submit" name="commit" ng-click="updateBook()">
Save Changes
</button>
</div>
</div>
</form>
select
element, the AngularJS attribute ng-model
is used for establishing two-way data binding with$scope.book
, while ng-options
is used for retrieving the books
list from $scope
and populating the select
element with option
elements according to the expression book.title for book in books
, which defines book titles as the content of the selection list options. As an additional option
element, we set the text ---
with an empty value for indicating that nothing has been selected.div
section with an ng-hide
attribute and another one with an ng-show
attribute, both set to book
. Their effect is that the first div
section will be hidden, and the second will be shown, as soon as the view model object book
has been assigned by the user selecting a book.ng-bind
, for only showing the value of a view model attribute, We are doing this for the output
field showing the ISBN of the selected book.BooksController
method updateBook()
:plControllers.controller('BooksController',
['$scope', '$http', function ( $scope, $http){
...
$scope.updateBook = function () {
var bookUrl = 'https://api.parse.com/1/classes/Book/';
$http({
method: 'PUT',
url: bookUrl + $scope.book.objectId,
data: {
isbn: $scope.book.isbn,
title: $scope.book.title,
year: $scope.book.year
}
})
.success( function () {
alert("SUCCESS: Update book");
$scope.book = {};
})
.error( function ( data) {
alert("ERROR: Update book", data);
});
};
...
}]);
url
parameter such that it ends with the book's Parse objectId
.Step 6 - Implement the Delete Use Case
#/deleteBook
.BooksController
method, destroyBook()
. The deleteBook
view template has aselect
field for choosing the book to be deleted and an output
field for each attribute of the $scope.book
view model that is to be shown. Notice that by using output
fields, we do not allow changing any value.<h1>Public Library: Delete a book record</h1>
<form ng-init="getAllBooks()">
<div ng-hide="book">
<label>Select book:
<select ng-model="book" ng-options="book.title for book in books">
<option value="">---</option>
</select>
</label>
</div>
<div ng-show="book">
<div>
<label>ISBN:
<output type="text" name="isbn" ng-bind="book.isbn" />
</label>
</div>
<div>
<label>Title:
<output type="text" name="title" ng-bind="book.title" />
</label>
</div>
<div>
<button type="submit" name="commit" ng-click="destroyBook()">
Delete
</button>
</div>
</div>
</form>
ng-bind
, takes care of showing the book's ISBN and title in the corresponding output
fields.BooksController
method destroyBook()
:plControllers.controller('BooksController',
['$scope', '$http', function ( $scope, $http){
...
$scope.destroyBook = function () {
var bookUrl = 'https://api.parse.com/1/classes/Book/';
$http({
method: 'DELETE',
url: bookUrl + $scope.book.objectId
})
.success( function () {
alert("SUCCESS: Delete book");
$scope.book = {};
})
.error( function ( data) {
alert("ERROR: Delete book", data);
});
};
...
}]);
Step 7 - Implement createTestData() and clearDatabase()
createTestData()
will insert more books into Parse cloud storage in one timeclearDatabase()
will clear all the books from Parse cloud storage in one timeTestDataController
specifically for creating test data and for clearing the database.plControllers.controller('TestDataController',
['$scope', '$http', function ( $scope, $http) {
...
}]);
7.1. Adding Several Objects in One Step
data
parameter is set to a requests
array of Parse requests:...
$scope.createTestData = function () {
$http({
method: 'POST',
url: 'https://api.parse.com/1/batch',
data: {
requests: [
{
method: 'POST',
path: '/1/classes/Book',
body: {
isbn: "006251587X",
title: "Weaving the Web",
year: 2000
}
},
{
method: 'POST',
path: '/1/classes/Book',
body: {
isbn: "0465026567",
title: "Goedel, Escher, Bach",
year: 1999
}
},
{
method: 'POST',
path: '/1/classes/Book',
body: {
isbn: "0465030793",
title: "I Am A Strange Loop",
year: 2008
}
}
]
}
})
.success( function () {
alert("SUCCESS: Create test data");
})
.error ( function ( data) {
alert("ERROR: Create test data", data);
});
};
...
7.2. Delete Several Objects in One Step
...
$scope.clearDatabase = function () {
$http( {
method: 'GET',
url: 'https://api.parse.com/1/classes/Book'
})
.success( function ( data) {
var books = data.results;
var bookUrl = 'https://api.parse.com/1/classes/Book/';
books.forEach( function ( book) {
$http({
method: 'DELETE',
url: bookUrl + book.objectId
})
.error( function ( data) {
alert("ERROR: Clear database", data);
});
});
})
.error( function ( data) {
alert("ERROR: Get all books", data);
});
};
...
Run the App and Get the Code
Points of Attention
History
License
This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)