Adaptive Card data binding and templating engine for JavaScript
npm install adaptivecards-templatingadaptivecards-templating package embedded a full copy of the adaptive-expressions package. This model didn't allow an application to use Adaptive Card templating with a more recent version of adaptive-expressions, and bug fixes in adaptive-expressions would always have to be accompanied with a new release of the adaptivecards-templating package.
adaptivecards-templating doesn't embed adaptive-expressions anymore, and it is the responsibility of the consuming application to explicitly load this package.
console
npm install adaptive-expressions adaptivecards-templating --save
`
`js
// Import the module:
import * as ACData from "adaptivecards-templating";
// OR require it:
var ACData = require("adaptivecards-templating");
`
$3
The unpkg.com CDN makes it easy to load the script in an browser.
The latest release will keep you up to date with features and fixes, but may have breaking changes over time. For maximum stability you should use a specific version.
* adaptivecards-templating.js - non-minified, useful for dev
* adaptivecards-templating.min.js - minified version, best for production
`html
`
Once the library is loaded, the global ACData variable is defined and ready to be used.
Usage
$3
Here is a simplistic "Hello World" example on how to use the library to generate an Adaptive Card using a template bound to a data object. Note this example requires the adaptivecards package.
`typescript
import * as ACData from "adaptivecards-templating";
import * as AdaptiveCards from "adaptivecards";
// Define a template payload
var templatePayload = {
"type": "AdaptiveCard",
"version": "1.0",
"body": [
{
"type": "TextBlock",
"text": "Hello ${name}!"
}
]
};
// Create a Template instance from the template payload
var template = new ACData.Template(templatePayload);
// Create a data binding context, and set its $root property to the
// data object to bind the template to
var context: ACData.IEvaluationContext = {
$root = {
"name": "Adaptive Cards"
}
};
// "Expand" the template - this generates the final Adaptive Card,
// ready to render
var card = template.expand(context);
// Render the card
var adaptiveCard = new AdaptiveCards.AdaptiveCard();
adaptiveCard.parse(card);
document.getElementById('exampleDiv').appendChild(adaptiveCard.render());
`
This example is implemented in the example.html file.
$3
#### Built-in functions
For a list of and documentation on built-in functions, please refer to the AdaptiveExpressions documentation.
#### Custom functions
`typescript
// Coming soon...
``