A JavaScript SDK for communicating with the Kontent.ai Custom App API. It facilitates the communication between the Kontent.ai app and the custom app providing access to the configuration and context data.
pnpm add @kontent-ai/custom-app-sdk
# or
npm install @kontent-ai/custom-app-sdkImportant
The SDK attaches event listeners to communicate with the Kontent.ai app. Make sure to include the SDK only in the browser environment.
import { getCustomAppContext, CustomAppContext } from "@kontent-ai/custom-app-sdk";
const response = await getCustomAppContext();
if (response.isError) {
console.error({ errorCode: response.code, description: response.description });
} else {
// TypeScript will narrow the type based on currentPage
switch (response.context.currentPage) {
case "itemEditor":
console.log({
contentItemId: response.context.contentItemId,
languageId: response.context.languageId,
validationErrors: response.context.validationErrors
});
break;
case "contentInventory":
console.log({
languageId: response.context.languageId,
itemListingFilter: response.context.itemListingFilter,
itemListingSelection: response.context.itemListingSelection
});
break;
case "contentTypeListing":
case "snippetListing":
console.log({
contentModelListingSelection: response.context.contentModelListingSelection,
contentModelListingFilter: response.context.contentModelListingFilter
});
break;
case "taxonomyListing":
console.log({
contentModelListingSelection: response.context.contentModelListingSelection
});
break;
case "contentTypeEditor":
console.log({
contentTypeId: response.context.contentTypeId,
hasUnsavedChanges: response.context.hasUnsavedChanges,
validationErrors: response.context.validationErrors
});
break;
case "snippetEditor":
console.log({
snippetId: response.context.snippetId,
hasUnsavedChanges: response.context.hasUnsavedChanges,
validationErrors: response.context.validationErrors
});
break;
case "taxonomyEditor":
console.log({
taxonomyGroupId: response.context.taxonomyGroupId,
hasUnsavedChanges: response.context.hasUnsavedChanges
});
break;
}
}Retrieves the context of the custom app. The function takes no arguments and automatically detects the current page type, returning the appropriate context with all relevant properties for that page.
Returns a promise that resolves to a discriminated union type with two possible states:
| Property | Type | Description |
|---|---|---|
isError |
false |
Indicates the request was successful |
context |
CustomAppContext |
A discriminated union of page-specific context objects |
| Property | Type | Description |
|---|---|---|
isError |
true |
Indicates an error occurred |
code |
ErrorCode enum | The code of the error message |
description |
string | The description of the error message |
CustomAppContext is a discriminated union type based on the currentPage property. Each page type includes only the relevant properties for that specific page:
All context types include the following shared properties:
| Property | Type | Description |
|---|---|---|
environmentId |
UUID | The environment's ID |
userId |
string | The current user's ID |
userEmail |
string | The current user's email |
userRoles |
Array<UserRole> | An array containing all the roles of the current user in the environment |
path |
string | The current path within the Kontent.ai application |
pageTitle |
string | The title of the current page |
appConfig |
unknown | undefined | JSON object specified in the custom app configuration |
When currentPage is "itemEditor", the context includes the shared properties above plus:
| Property | Type | Description |
|---|---|---|
currentPage |
"itemEditor" |
Identifies this as an item editor page |
contentItemId |
UUID | The ID of the content item being edited |
languageId |
UUID | The ID of the current language |
validationErrors |
Record<string, Array> | A record of validation errors for content item fields |
When currentPage is "contentInventory", the context includes the shared properties above plus:
| Property | Type | Description |
|---|---|---|
currentPage |
"contentInventory" |
Identifies this as a content inventory (item listing) page |
languageId |
UUID | The ID of the current language |
itemListingFilter |
SerializedListingFilter | The current filter settings applied to the content item listing |
itemListingSelection |
ItemListingSelection | The current selection state of items in the listing |
When currentPage is "contentTypeListing", the context includes the shared properties above plus:
| Property | Type | Description |
|---|---|---|
currentPage |
"contentTypeListing" |
Identifies this as a content type listing page |
contentModelListingSelection |
ContentModelListingSelection | The current selection state of content types in the listing |
contentModelListingFilter |
ContentModelListingFilter | The current filter settings applied to the content type listing |
When currentPage is "contentTypeEditor", the context includes the shared properties above plus:
| Property | Type | Description |
|---|---|---|
currentPage |
"contentTypeEditor" |
Identifies this as a content type editor page |
contentTypeId |
UUID | null | The ID of the content type being edited, or null when creating new |
hasUnsavedChanges |
boolean | Whether the content type has unsaved changes |
validationErrors |
Record<string, Array> | A record of validation errors for content type fields |
When currentPage is "snippetListing", the context includes the shared properties above plus:
| Property | Type | Description |
|---|---|---|
currentPage |
"snippetListing" |
Identifies this as a snippet listing page |
contentModelListingSelection |
ContentModelListingSelection | The current selection state of snippets in the listing |
contentModelListingFilter |
ContentModelListingFilter | The current filter settings applied to the snippet listing |
When currentPage is "snippetEditor", the context includes the shared properties above plus:
| Property | Type | Description |
|---|---|---|
currentPage |
"snippetEditor" |
Identifies this as a snippet editor page |
snippetId |
UUID | null | The ID of the snippet being edited, or null when creating new |
hasUnsavedChanges |
boolean | Whether the snippet has unsaved changes |
validationErrors |
Record<string, Array> | A record of validation errors for snippet fields |
When currentPage is "taxonomyListing", the context includes the shared properties above plus:
| Property | Type | Description |
|---|---|---|
currentPage |
"taxonomyListing" |
Identifies this as a taxonomy listing page |
contentModelListingSelection |
ContentModelListingSelection | The current selection state of taxonomy groups in the listing |
When currentPage is "taxonomyEditor", the context includes the shared properties above plus:
| Property | Type | Description |
|---|---|---|
currentPage |
"taxonomyEditor" |
Identifies this as a taxonomy editor page |
taxonomyGroupId |
UUID | The ID of the taxonomy group being edited |
hasUnsavedChanges |
boolean | Whether the taxonomy group has unsaved changes |
When currentPage is "other", the context includes the shared properties above plus:
| Property | Type | Description |
|---|---|---|
currentPage |
"other" |
Identifies this as any other page type |
| Property | Type | Description |
|---|---|---|
id |
UUID | The role's ID |
codename |
string | The role's codename - applicable only for the Project manager role |
The filter settings applied to the content item listing.
| Property | Type | Description |
|---|---|---|
selectedCollections |
Array<string> | IDs of collections selected in the filter |
selectedContentItemStatus |
Array<VariantCompletionStatus> | Selected content item workflow status states |
selectedContentTypes |
Array<string> | IDs of content types selected in the filter |
selectedContributors |
Array<string> | IDs of contributors selected in the filter |
selectedPublishingStates |
Array<PublishingState> | Selected publishing states |
selectedSpaces |
Array<string> | IDs of spaces selected in the filter |
selectedTaxonomies |
Record<string, Array<string>> | Selected taxonomy terms grouped by taxonomy ID |
selectedWorkflows |
Record<string, Array<string>> | Selected workflow steps grouped by workflow ID |
searchPhrase |
string | The search phrase entered by the user |
searchScope |
Array<string> | The scope of the search (e.g., content item names, elements) |
An enum representing the possible workflow completion status states for content item variants.
| Value | Description |
|---|---|
"unfinished" |
Content item variant is unfinished |
"ready" |
Content item variant is ready |
"notTranslated" |
Content item variant is not translated |
"allDone" |
Content item variant is all done |
An enum representing the possible publishing states for content items.
| Value | Description |
|---|---|
"published" |
Content item is published |
"unpublished" |
Content item is unpublished |
"none" |
Content item has no publishing state |
The current selection state of items in the content inventory listing.
| Property | Type | Description |
|---|---|---|
selectAll |
boolean | Whether the "select all" option is active |
selectedItemIds |
Array<UUID> | IDs of content items that are selected (when selectAll is false, these are the selected items; when selectAll is true, these are exceptions to the selection) |
unselectedItemIds |
Array<UUID> | IDs of content items that are explicitly unselected (used when selectAll is true to exclude specific items) |
The current selection state of items in the content model listing pages (content types, snippets, taxonomies).
| Property | Type | Description |
|---|---|---|
selectedIds |
Array<UUID> | IDs of the selected items in the listing |
The filter settings applied to content model listing pages (content types, snippets).
| Property | Type | Description |
|---|---|---|
searchPhrase |
string | The search phrase entered by the user |
Subscribes to context changes and receives notifications when the context is updated. The function takes a callback that will be invoked whenever the context changes.
| Parameter | Type | Description |
|---|---|---|
callback |
(context: CustomAppContext) => void |
Function to be called when the context changes |
Returns a promise that resolves to a discriminated union type with two possible states:
| Property | Type | Description |
|---|---|---|
isError |
false |
Indicates the request was successful |
context |
CustomAppContext |
The initial context value |
unsubscribe |
() => Promise<void> |
Function to call to stop receiving context updates |
| Property | Type | Description |
|---|---|---|
isError |
true |
Indicates an error occurred |
code |
ErrorCode enum | The code of the error message |
description |
string | The description of the error message |
import { observeCustomAppContext } from "@kontent-ai/custom-app-sdk";
const response = await observeCustomAppContext((context) => {
console.log("Context updated:", context);
});
if (response.isError) {
console.error({ errorCode: response.code, description: response.description });
} else {
console.log("Initial context:", response.context);
// Later, when you want to stop observing
await response.unsubscribe();
}Sets the size of the popup window when the custom app is displayed in a popup.
| Parameter | Type | Description |
|---|---|---|
width |
PopupSizeDimension |
The desired width of the popup |
height |
PopupSizeDimension |
The desired height of the popup |
A discriminated union type for specifying dimensions in either pixels or percentages:
type PopupSizeDimension =
| { unit: "px"; value: number }
| { unit: "%"; value: number };Returns a promise that resolves to a discriminated union type with two possible states:
| Property | Type | Description |
|---|---|---|
isError |
false |
Indicates the request was successful |
| Property | Type | Description |
|---|---|---|
isError |
true |
Indicates an error occurred |
code |
ErrorCode enum | The code of the error message |
description |
string | The description of the error message |
import { setPopupSize } from "@kontent-ai/custom-app-sdk";
const response = await setPopupSize(
{ unit: "px", value: 800 },
{ unit: "%", value: 90 }
);
if (response.isError) {
console.error({ errorCode: response.code, description: response.description });
}For Contributing please see CONTRIBUTING.md for more information.
Distributed under the MIT License. See LICENSE.md for more information.