Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/amplience/dc-accelerators-content-rendering-service
An accelerated starting point for implementing Amplience Dynamic Content.
https://github.com/amplience/dc-accelerators-content-rendering-service
es6 front-end handlebars html javascript npm vanilla-javascript
Last synced: about 1 month ago
JSON representation
An accelerated starting point for implementing Amplience Dynamic Content.
- Host: GitHub
- URL: https://github.com/amplience/dc-accelerators-content-rendering-service
- Owner: amplience
- License: other
- Created: 2018-08-15T14:48:36.000Z (over 6 years ago)
- Default Branch: master
- Last Pushed: 2023-07-17T10:26:42.000Z (over 1 year ago)
- Last Synced: 2024-10-23T08:25:39.385Z (2 months ago)
- Topics: es6, front-end, handlebars, html, javascript, npm, vanilla-javascript
- Language: JavaScript
- Homepage:
- Size: 7.08 MB
- Stars: 15
- Watchers: 20
- Forks: 15
- Open Issues: 35
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- License: LICENSE.MD
Awesome Lists containing this project
README
# Dynamic Content Accelerators - Rendering Service
> Extensible content types and rendering templates for use with the Amplience Rendering Service
[![github version](https://img.shields.io/github/release/amplience/dc-accelerators-content-rendering-service.svg)](https://github.com/amplience/dc-accelerators-content-rendering-service/releases/latest) [![License](https://img.shields.io/badge/License-Apache%202.0-blue.svg)](https://opensource.org/licenses/Apache-2.0)
This project is designed to accelerate implementing Amplience Dynamic Content. It contains a set of commonly used components implemented as handlebars templates that can be rendered by the [Content Rendering Service](https://docs.amplience.net/integration/contentrenderingservice.html#the-content-rendering-service).
[![Amplience Dynamic Content Accelerators](media/screenshot.jpeg)](https://amplience.com/dynamic-content)
## Demo
* [Working demo](https://dev-solutions.s3.amazonaws.com/dc-demo-site/dist/homepage/index.html?c=d8b929ee-214d-48f0-90c0-4e121ca55a6f&s=e6bdb253-db3c-4458-b5cc-0d90aa02e114) of the accelerator components.
* [Component explorer](http://dev-solutions.s3.amazonaws.com/dc-renders-wireframe/dist/index.html?c=ab78c8be-9f03-4a52-bde0-4ebde03b79a3) showcasing the capability of each component.
## Getting started
### Developing components
This project has a local development environment which lets you test your component templates, styles and javascript without deploying them to Dynamic Content.
Steps:
1. Check-out the project
2. Install project dependencies
```js
npm install
```
3. Run development environment
```js
npm run storybook
```This will launch a browser displaying the components using [Storybook](https://storybook.js.org/), a popular component explorer. Any changes made to template files, styles or Javascript will reload automatically.
See the [documentation](#documentation) links below for further details.
### Exporting components
Before you can deploy the components you need to run the export process. This will compile, concatenate and minify the CSS & JavaScript as well as collect the templates, icons and content types into a folder to ease deployment.
Steps:
1. Ensure gulp-cli is installed:
```
npm install --global gulp-cli
```2. Run gulp:
```
gulp
```This will export the following files:
| file | description |
|---------------------|------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
| dist/contentTypes | [Content Types](https://docs.amplience.net/integration/contenttypes.html) which define the content structure for each component. |
| dist/templates | [Content Rendering Service](https://docs.amplience.net/integration/contentrenderingservice.html#the-content-rendering-service) templates which render content to HTML. |
| dist/icons | Icons for each component. |
| dist/styles.min.css | CSS Styles for the components. |
| dist/utils.min.js | JavaScript which adds functionality to the components. |
| dist/lory.min.js | [JavaScript Library](https://github.com/loryjs/lory) required by the Slider component. |### Deploying components
To make use of these components in your application you must configure them in your Amplience account in addition to including the CSS & JavaScript in your project.
#### Configure Dynamic Content
To make the components available for use they must be configured in your Dynamic Content account. This includes:
* [Content Types](https://docs.amplience.net/integration/contenttypes.html)
* [Content Rendering Templates](https://docs.amplience.net/integration/contentrenderingservice.html)
* [Image Transformation Templates](https://docs.amplience.net/contenthub/tools.html#templates)Steps for this can be found in the [configuration guide](./docs/CONFIGURE-DYNAMIC-CONTENT.md).
#### Include CSS & JavaScript
Include a reference to the CSS & JavaScript resources in your application.
```html
```
If you are using the Slider component also include the [lory library](https://github.com/loryjs/lory).
```html
```
Interactive components will automatically attach their functionality when the DOM has loaded. If your application asynchronously renders the components you can manually activate the components with the following JavaScript:
```js
if (window.AmpCa && window.AmpCa.Utils) {
window.AmpCa.Utils.attachComponents();
}
```## Documentation
* [Creating new components](./docs/CREATING-COMPONENTS.md)
* [Extending Storybook](./docs/EXTENDING-STORYBOOK.md)
* [Template dependencies](./docs/TEMPLATE-DEPENDENCIES.md)
* [Hosting Content Types externally](./docs/EXTERNAL-CONTENT-TYPES.md)## Getting Help
If you need help please reach out using one of the following channels:* Ask a question on [StackOverflow](https://stackoverflow.com/) using the tag `amplience-dynamic-content`
* Contact your [Amplience Customer Success](https://amplience.com/customer-success) representative
* If you have found a bug please report it by [opening an issue](https://github.com/amplience/dc-accelerators-content-rendering-service/issues/new)## License
This software is licensed under the [Apache License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0),
Copyright 2019 Amplience
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License athttp://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.