This is an unofficial SDK for the Kentico Kontent Delivery API. The SDK is a personal project, and was created before Kentico introduced official javascript SDK for Kentico Kontent. That being said, I highly recommend using the official SDK instead of this one as Kentico gives it love and care on a regular basis. Therefore, this project is considered obsolete.
It has been designed to fit websites on Express.js using the Pug template engine. However, the design may suit various scenarios and tech stacks.
- (v 0.0.9) It is not possible to request and categorize content in 2 separate steps. This includes:
- In the getContent method the possibility to pass array as the parameter has been removed.
- The categorizeContent method is not public anymore.
The purpose of this SDK is to:
- Deliver complete content for a current view from the Kentico Kontent storage with ease.
- Simplify the output in order to make it operable for rendering.
- Cache the output in order to minimize number of API calls.
All of this happens in a single Promise chain in 3 steps:
- Get complete content by calling the
getContent
method that is able to make multiple requests and return a single response. On the server side, this method can cache responses from Kentico API endpoints requests. That also includes images which the SDK turns into the Base64 format. - Simplify the delivered content by getting only values from the complex response with use of the
getValues
method. - Process selected raw values to get them ready to be rendered in a view:
resolveModularContentInRichText
Rich text elements might contain modular content. This method resolves specified modular content item in specified rich text element according to provided template.
npm install kentico-cloud-delivery-js-sdk
var Delivery = require('kentico-cloud-delivery-js-sdk');
// Initialize SDK with Project ID and Preview API Key
var project = new Delivery('28f9fefa0...88bcda2cbd13', 'ew0KICAiYW...iwNCiAgInR5');
// Step 1: Request multiple Kentico Kontent endpoints in one step and get responses categorized by keys of the passing object
project.getContent({
home: '?system.type=homepage',
nav: '?system.type=navigation'
})
// Step 2: Get only values from the response and join modular_content values with appropriate data items
.then(project.getValues)
// Step 3: Process values to get them ready to be rendered in a view
.then(function (data) {
data = project.resolveModularContentInRichText(data, 'home', 'name_of_rich_text_field', 'codename_of_modular_item', '<div class="template">{elements.label}</div><span>{system.id}</span>');
return data;
})
// View results
.then(console.log);
Initilizes object with its Project ID and Preview API Key that represents a Kentico Kontent project.
Parameters
projectID
string Project ID, see details in the Kentico Kontent Developers Hub: https://developer.kontent.ai/docs/using-delivery-api#section-getting-project-id.previewKey
string Preview API Key, see details in the Kentico Kontent Developers Hub: https://developer.kontent.ai/docs/preview-content-via-api.
Examples
var project = new Delivery('82594550-e25c-8219-aee9-677f600bad53', 'ew0KICAiYWxnIjo...QvV8puicXQ');
Returns promise with data from Kentico Kontent storage specified by params.
Parameters
params
object Object that contains filtering url parameters that are used for requesting Kentico Kontent storage. Object properties are names for categories. See details about filtering url parameters: https://developer.kontent.ai/v1/reference#delivery-apiisPreview
boolean Flag that controls whether only published or all items should be requested.cache
object Object that defines requests caching with the duration and key properties. The object has the "duration" property (number) which stands for cache invalidation interval in seconds. The "key" property (string) stands for cache key.bypassCache
boolean Adds the X-KC-Wait-For-Loading-New-Content header to API calls to bypass Kentico Kontent cache to ensure latest version is returned. Suitable when using webhooks.
Examples
// returns
// {
// home: {items: [...]},
// nav: {items: [...]}
// }
project.getContent({
home: '?system.type=homepage',
nav: '?system.type=navigation'
}, true, {
duration: 10,
key: 'some_random_key'
}, false)
Returns promise with object of responses for each passed parameter from the Kentico Kontent storage.
Returns values from content items. Covers content types: Text, Rich text, Number, Multiple choice, Date & time, Asset, Modular content, URL slug, Taxonomy and supports localization. For Rich text elements the method covers: Modular content, images and links with value added as "Web URL". For links added as "Content item" the method returns a <a> tag with empty "href" attribute as it is not possible to identify full url from the Kentico Kontent response. Data of a Modular content which is part of a Rich text element is returned as a <script> tag with data in the JSON format inside. The <script> tag is inserted after the <object> tag which represents position of the Modular content in the default Kentico Kontent response.
Parameters
content
object Content items returned from the "getContent" method.
Examples
// Returns
// {
// homepage: {
// items: [{
// system: {
// id: '...',
// name: '...',
// ...
// },
// elements: {
// page_title: '...',
// header: '...',
// logos: [{
// system: {
// codename: '...',
// ...
// },
// elements: {
// image: ['...'],
// url: '...',
// ...
// }
// }]
// }
// }
// }],
// blog: {
// items: [{
// system: {
// id: '...',
// name: '...',
// ...
// },
// elements: {
// page_title: '...',
// publish_date: '...',
// header_image: ['...', '...'],
// ...
// }
// },{
// system: {
// id: '...',
// name: '...',
// ...
// },
// elements: {
// page_title: '...',
// publish_date: '...',
// header_image: ['...', '...'],
// ...
// }
// }],
// pagination: {
// skip: ...,
// limit: ...,
// count: ...,
// next_page: '...'
// }
// }
project.getContent({
home: '?system.type=homepage',
blog: '?system.type=blog_post'
})
.then(project.getValues});
Returns object with structured content items values.
Returns data containing resolved specified Modular content in specified Rich text element.
Parameters
content
object Data from the Kentico Kontent storage processed by the getValues methods.categoryName
string Name of a category that has been passed the getContent of categorizeContent methods.elementName
string Name of field that represents the Rich text element.modularContentCodeName
string Code name of a modular item that is inside of the Rich text element.template
string Template that gets rendered in the Rich text element. You can render data from the passed content with use of the macros wrapped in { }.
Examples
project.getContent({
home: '?system.type=homepage',
blog: '?system.type=blog_post'
})
.then(project.getValues)
.then((data) => {
data = project.resolveModularContentInRichText(data, 'home', 'rich_content_with_modular_content', 'myCodeName', '<div class="foo">{elements.label}</div><span>{system.id}</span>');
return data;
});
Returns object content with processed Rich text element.