sp-dev-fx-webparts/samples/react-adaptive-cards-image-...
VesaJuvonen 22318b95a3 Adding missing telemetry images for readme files 2019-04-15 12:49:10 +03:00
..
assets Added sample react-adaptive-cards-image-gallery (#700) 2018-12-08 18:56:15 +02:00
config Added sample react-adaptive-cards-image-gallery (#700) 2018-12-08 18:56:15 +02:00
sharepoint/assets Added sample react-adaptive-cards-image-gallery (#700) 2018-12-08 18:56:15 +02:00
src Added sample react-adaptive-cards-image-gallery (#700) 2018-12-08 18:56:15 +02:00
teams Added sample react-adaptive-cards-image-gallery (#700) 2018-12-08 18:56:15 +02:00
.editorconfig Added sample react-adaptive-cards-image-gallery (#700) 2018-12-08 18:56:15 +02:00
.gitignore Added sample react-adaptive-cards-image-gallery (#700) 2018-12-08 18:56:15 +02:00
.yo-rc.json Added sample react-adaptive-cards-image-gallery (#700) 2018-12-08 18:56:15 +02:00
README.md Adding missing telemetry images for readme files 2019-04-15 12:49:10 +03:00
gulpfile.js Added sample react-adaptive-cards-image-gallery (#700) 2018-12-08 18:56:15 +02:00
npm-shrinkwrap.json Added sample react-adaptive-cards-image-gallery (#700) 2018-12-08 18:56:15 +02:00
package.json Added sample react-adaptive-cards-image-gallery (#700) 2018-12-08 18:56:15 +02:00
tsconfig.json Added sample react-adaptive-cards-image-gallery (#700) 2018-12-08 18:56:15 +02:00
tslint.json Added sample react-adaptive-cards-image-gallery (#700) 2018-12-08 18:56:15 +02:00

README.md

Summary

This sample demonstrates the capability of using [Adaptive Cards] (https://adaptivecards.io/) with SharePoint Framework. Adaptive cards are great fit for Bot, however they can be effectively used with SPFx to render the content. This web part helps to display the image gallery from SharePoint list.

Web part preview

When added to SharePoint site, the source list containing images information, number of images to display can be configured from web part properties. The sample also provisions the list called "Adaptive Card Images" which can be used as an example to start using the web part. SharePoint Run

SharePoint Asset

A SharePoint list (named "Adaptive Card Images") is provisioned to store the image information. The schema of the list is as below. List Schema

  • The "Image Link" column stores the url of image to be displayed in adaptive card.
  • The "Navigation URL" column represents the url to navigate by clicking on image in adaptive card.
  • The "Sort Order" column represents the order in which images to be displayed in adaptive card.

The solution also provisions sample data to the "Adaptive Card Images" list. List Sample Data

NPM Packages Used

Below NPM packages are used to develop this sample.

  1. sp-pnp-js (https://www.npmjs.com/package/sp-pnp-js)
  2. adaptivecards (https://www.npmjs.com/package/adaptivecards)

Used SharePoint Framework Version

drop

Applies to

Solution

Solution Author(s)
react-adaptive-cards-image-gallery Nanddeep Nachan (SharePoint Consultant, @NanddeepNachan )
  Ravi Kulkarni (SharePoint Consultant)

Version history

Version Date Comments
1.0.0 November 28, 2018 Initial release

Disclaimer

THIS CODE IS PROVIDED AS IS WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESS OR IMPLIED, INCLUDING ANY IMPLIED WARRANTIES OF FITNESS FOR A PARTICULAR PURPOSE, MERCHANTABILITY, OR NON-INFRINGEMENT.


Prerequisites

  • SharePoint Online tenant
  • Site Collection created under the /sites/ or /

Minimal Path to Awesome

Features

This sample web part shows how adaptive cards can be used effectively with SharePoint Framework to render an image gallery with data stored in a SharePoint list.

  • Integrating adaptive cards
  • Rendering image gallery
  • SharePoint assets provisioning
  • Creating extensible services
  • Using @sp-pnp-js
  • Using @adaptivecards