AngularJS module to easily access the Contentful content delivery API:
- lightweight (< 3KB minified)
- no external dependencies
- automatically resolves linked content in the response for maximum convenience
- uses the native AngularJS
$http
service to connect to the API - returns native AngularJS
$q
promises
There are working demo's available in the examples directory.
First install the module using bower:
$ bower install angular-contentful
or npm:
$ npm install angular-contentful
and add the library to your application:
<script type="text/javascript" charset="utf-8" src="bower_components/angular-contentful/dist/angular-contentful.min.js"></script>
The
src
attribute value above is an example when usingbower
. Your local library path may vary depending on whether you usedbower
ornpm
as your installation method and whether or not you have a build process in place.
Then add the contentful
module to the dependencies of your AngularJS application module:
angular.module('yourApp', ['contentful']);
and configure the contentful
service in a config block using the provider:
angular
.module('yourApp')
.config(function(contentfulProvider){
contentfulProvider.setOptions({
space: 'yourSpace',
accessToken: 'yourAccessToken'
});
});
Now you can use one of the directives to fetch Contentful data right from within your markup:
<pre contentful-entry="'6KntaYXaHSyIw8M6eo26OK'">
{{ $contentfulEntry | json }}
</pre>
or you can use the contentful
service anywhere in your application code:
angular
.module('yourApp')
.controller('SomeCtrl', function(contentful){
// Get all entries
contentful
.entries()
.then(
// Success handler
function(response){
var entries = response.data;
console.log(entries);
},
// Error handler
function(response){
console.log('Oops, error ' + response.status);
}
);
});
Fetches a Contentful entry asynchronously in the background and makes it available in your child markup as $contentfulEntry
as soon as a response from Contentful is received.
Requires a Contentful entry id or a query string to be passed.
To display an entire entry with id 6KntaYXaHSyIw8M6eo26OK:
<!-- use an Angular expression -->
<pre contentful-entry="entryId">
{{ $contentfulEntry | json }}
</pre>
<!-- use a literal string, notice the single quotes -->
<pre contentful-entry="'6KntaYXaHSyIw8M6eo26OK'">
{{ $contentfulEntry | json }}
</pre>
Or to display only one field of the entry:
<h1 contentful-entry="'6KntaYXaHSyIw8M6eo26OK'">
Hi {{ $contentfulEntry.fields.name }}!
</h1>
$contentfulEntry
is available in the child elements as well:
<article contentful-entry="'6KntaYXaHSyIw8M6eo26OK'">
<section>
{{ $contentfulEntry.fields.sectionOne }}
</section>
<section>
{{ $contentfulEntry.fields.sectionTwo }}
</section>
<article>
To make Contentful resolve the linked content in the entry, use include:
<pre contentful-entry="'sys.id=6KntaYXaHSyIw8M6eo26OK&include=3'">
{{ $contentfulEntry | json }}
</pre>
to specify the number of levels of linked entries to resolve.
Often you want to fetch an entry by a property other than sys.id
.
Therefore the directive also allows you to specify a query string instead of an id like this:
<h1 contentful-entry="'content_type=dog&fields.slug=bob'">
Hi {{ $contentfulEntry.fields.name }}!
</h1>
Notice
Behind the scenes all entries matching your query will be fetched and the first item will be assigned to $contentfulEntry
.
To reduce data traffic it is highly recommended to use a query string that results in only one entry or add a limit=1
statement to your query like this:
<h1 contentful-entry="'content_type=dog&order=fields.age&limit=1'">
Hi {{ $contentfulEntry.fields.name }}!
</h1>
Fetches multiple Contentful entries asynchronously in the background and makes them available in your child markup as $contentfulEntries
as soon as a response from Contentful is received.
Takes an optional query string value to pass to the Contentful content delivery API.
For example, to fetch all entries in your space:
<ul contentful-entries>
<li ng-repeat="entry in $contentfulEntries.items">
{{ entry.fields.name }}
</li>
</ul>
Or specify a query string to filter the entries:
<!-- use an Angular expression -->
<ul contentful-entries="querystring">
<li ng-repeat="dog in $contentfulEntries.items">
{{ dog.fields.name }}
</li>
</ul>
<!-- use a literal string, notice the single quotes -->
<ul contentful-entries="'content_type=dog'">
<li ng-repeat="dog in $contentfulEntries.items">
{{ dog.fields.name }}
</li>
</ul>
The optional query string is passed to the Contentful API, so you can use all supported filters.
Links are automatically resolved too, so you can easily access linked content as embedded data like this:
<ul contentful-entries="'content_type=dog'">
<li ng-repeat="dog in $contentfulEntries.items | orderBy:'fields.name' ">
<h1>{{ dog.fields.name }}</h2>
<img ng-src="{{ dog.fields.image.fields.file.url }}" />
</li>
</ul>
The contentful
service can be injected anywhere in your application and exposes the following API:
Get an asset.
- id - {string} - Asset id, required
- optionSet - {string} - optional - Contentful space options key passed to
setOptions
method of provider. Defaults todefault
key, or if only one space settings are passed it will use that one.
// pass key defined in setOptions method of provider
contentful.asset(id, 'another');
// or you can pass 'default', although it will implicitly use this key
contentful.asset(id, 'default');
Promise.
Get assets.
- queryString - {string} - Query string to pass to API, optional
- optionSet - {string} - optional - Contentful space options key passed to
setOptions
method of provider. Defaults todefault
key, or if only one space settings are passed it will use that one.
// pass key defined in setOptions method of provider
contentful.assets(queryString, 'another');
// or you can pass 'default', although it will implicitly use this key
contentful.assets(queryString, 'default');
Promise.
Get a content type.
- id - {string} - Content type id, required
- optionSet - {string} - optional - Contentful space options (one of keys passed to setOptions method of provider). If not passed it will use
default
key, or if only one space settings are passed it will use that one.
// pass key defined in setOptions method of provider
contentful.contentType(id, 'another');
// or you can pass 'default', although it will implicitly use this key
contentful.contentType(id, 'default');
Promise.
Get content types.
- queryString - {string} - Query string to pass to API, optional
- optionSet - {string} - optional - Contentful space options key passed to
setOptions
method of provider. Defaults todefault
key, or if only one space settings are passed it will use that one.
// pass key defined in setOptions method of provider
contentful.contentTypes(queryString, 'another');
// or you can pass 'default', although it will implicitly use this key if parameter is omitted
contentful.contentTypes(queryString, 'default');
Promise.
Get an entry.
- id - {string} - Entry id, required
- optionSet - {string} - optional - Contentful space options key passed to
setOptions
method of provider. Defaults todefault
key, or if only one space settings are passed it will use that one.
// pass key defined in setOptions method of provider
contentful.entry(id, 'another');
// or you can pass 'default', although it will implicitly use this key if parameter is omitted
contentful.entry(id, 'default');
Promise.
Get entries.
- queryString - {string} - Query string to pass to API, optional
- optionSet - {string} - optional - Contentful space options key passed to
setOptions
method of provider. Defaults todefault
key, or if only one space settings are passed it will use that one.
// pass key defined in setOptions method of provider
contentful.entries(queryString, 'another');
// or you can pass 'default', although it will implicitly use this key if parameter is omitted
contentful.entries(queryString, 'default');
Promise.
Get space.
- optionSet - {string} - optional - Contentful space options key passed to
setOptions
method of provider. Defaults todefault
key, or if only one space settings are passed it will use that one.
// pass key defined in setOptions method of provider
contentful.space('another');
// or you can pass 'default', although it will implicitly use this key if parameter is omitted
contentful.space('default');
Promise.
All methods return a promise.
Depending on the reponse of the API, either the success handler or the error handler is called with a destructured representation of the response with the following properties:
- data – {object} – The response body transformed with the transform functions.
- status – {number} – HTTP status code of the response.
- headers – {function([headerName])} – Header getter function.
- config – {object} – The configuration object that was used to generate the request.
- statusText – {string} – HTTP status text of the response.
The data property contains the Contentful data. The other properties are passed for convenience in case you need them.
contentful
.entries()
.then(
// Success handler
function(response){
var entries = response.data;
console.log(entries);
},
// Error handler
function(response){
console.log('Oops, error ' + response.status);
}
);
Angular-contentful automatically resolves linked content for you.
If the Contentful API response includes linked content such as linked entries or linked assets, they are automatically attached to their parent content for maximum convenience.
Suppose you have a collection of dogs that have an image linked to them, you can now access the image as a direct property instead of having to resolve the image manually:
<ul contentful-entries="'content_type=dog'">
<li ng-repeat="dog in $contentfulEntries.items | orderBy:'fields.name' ">
<h1>{{ dog.fields.name }}</h2>
<img ng-src="{{ dog.fields.image.fields.file.url }}" />
</li>
</ul>
Due to how the Contentful API works, linked content is only available when using contentful-entries
, not when using contentful-entry
. Read more details here.
Resolving links hierarchically can cause circular links.
Although this isn't harmful, it may hamper you from outputting the entire response e.g. using {{ $contentfulEntries | json }}
.
If you need to connect to more than one Contentful space, you can specify additional spaces in the contentfulProvider
configuration:
angular
.module('yourApp')
.config(function(contentfulProvider){
contentfulProvider.setOptions({
'default': {
host: 'cdn.contentful.com',
space: 'first_space',
accessToken: 'first_token'
},
'another': {
host: 'cdn.contentful.com',
space: 'second_space',
accessToken: 'second_token'
}
...
});
});
and pass in the space key as the optionSet
argument when calling a contentful service method:
angular
.module('yourApp')
.controller('SomeCtrl', function(contentful){
// Get all entries
contentful
.entries('', 'another')
.then(
// Success handler
function(response){
var entries = response.data;
console.log(entries);
},
// Error handler
function(response){
console.log('Oops, error ' + response.status);
}
);
});
If you initialize contentfulProvider
with only one set of options, it will be treated as the default one.
Currently, the directives do not allow you to specify a space and will always connect to the default space.
These raw response examples give you an idea of what original Contentful responses look like.
If you are interested in the details, please visit the Contentful delivery API documentation.
{
"data": {
"sys": {
"type": "Space",
"id": "cfexampleapi"
},
"name": "Contentful Example API",
"locales": [
{
"code": "en-US",
"default": true,
"name": "English"
},
{
"code": "tlh",
"default": false,
"name": "Klingon"
}
]
},
"status": 200,
"config": {
"method": "GET",
"transformRequest": [
null
],
"transformResponse": [
null
],
"headers": {
"Accept": "application/json, text/plain, */*"
},
"params": {
"access_token": "b4c0n73n7fu1"
},
"url": "https://cdn.contentful.com:443/spaces/cfexampleapi"
},
"statusText": "OK"
}
{
"data": {
"sys": {
"type": "Error",
"id": "NotFound"
},
"message": "The resource could not be found.",
"details": {
"sys": {
"type": "Space"
}
},
"requestId": "71a-1131131513"
},
"status": 404,
"config": {
"method": "GET",
"transformRequest": [
null
],
"transformResponse": [
null
],
"headers": {
"Accept": "application/json, text/plain, */*"
},
"params": {
"access_token": "b4c0n73n7fu1"
},
"url": "https://cdn.contentful.com:443/spaces/cfexampleapiii"
},
"statusText": "Not Found"
}
The official Contentful to way is to include 2 libraries in your application:
<script type="text/javascript" charset="utf-8" src="bower_components/contentful/dist/contentful.min.js"></script>
<script type="text/javascript" charset="utf-8" src="bower_components/ng-contentful/ng-contentful.js"></script>
contentful.js
is the main Contentful JavaScript library that relies on different external libraries such as:
questor
to perform HTTP requestsbluebird
for promises
and then bundles everything together in contentful.js
using Browserify, resulting in a file that packs over 100KB
minified.
ng-contenful.js
then forms a wrapper around contentful.js
that takes care of converting the bluebird
promises back to AngularJS promises.
This makes sense if you are in a non-AngularJS environment such as node.js, but AngularJS already has built-in services to perform HTTP requests and provide promises.
This AngularJS module uses native AngularJS services to provide a similar API using:
$http
to perform HTTP requests$q
for promises
which results in:
- NOT having to include
contentful.js
andng-contentful.js
, saving you an expensive 100KB+ client side download when your application loads - less CPU cycles in the client by not having to convert promises
To update the build in the dist
directory:
$ gulp
To run the unit tests using the src files:
$ gulp test-src
To run the unit tests using the unminified library:
$ gulp test-dist-concatenated
To run the unit tests using the minified library:
$ gulp test-dist-minified
- Added support for multiple spaces #24 (credits to Vuk Stanković)
- Added module property to package.json for webpack compatibility
- BREAKING CHANGE: Added support for specifying expressions in directive attributes
- Added query string support to contentful-entry directive
- Simplified service API so it always resolves links by default
- Simplified contentful-entries directive API to make data available more intuitively using
$contentfulEntries
instead of$contentfulEntries.entries
- Simplified contentful-entry directive API to make data available more intuitively using
$contentfulEntry
instead of$contentfulEntry.entry
- Removed support for
success
anderror
shorthand methods in favor of more consistent API withthen
. - Updated documentation
- Update contentful-entries directive so it return response identical to contentful service method
- Added support to automatically resolve links when multiple entries are returned
- Updated documentation
- Added contentfulEntries directive
- Added additional unit tests
- Updated documentation
- Added contentfulEntry directive
- Added additional unit tests
- Updated documentation
- Added demo application
- Added shorthand support for
success
anderror
handlers - Added documentation
- Added contentful service
- Added unit tests
- Added initial documentation