sp-dev-fx-webparts/samples/react-adaptive-cards-image-...
Nanddeep Nachan 23583ef0c0 Updated code and instructions 2020-07-17 12:20:55 +00:00
..
assets Added sample react-adaptive-cards-image-gallery (#700) 2018-12-08 18:56:15 +02:00
config Updated code and instructions 2020-07-17 12:20:55 +00:00
sharepoint/assets Updated asset provisioning 2020-06-27 07:37:53 +00:00
src Updated code and instructions 2020-07-17 12:20:55 +00:00
teams Upgraded the solution to SPFx v1.10 2020-06-15 07:15:58 +00: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 Upgraded the solution to SPFx v1.10 2020-06-15 07:15:58 +00:00
README.md Updated code and instructions 2020-07-17 12:20:55 +00:00
gulpfile.js Added sample react-adaptive-cards-image-gallery (#700) 2018-12-08 18:56:15 +02:00
package-lock.json Updated code and instructions 2020-07-17 12:20:55 +00:00
package.json Updated code and instructions 2020-07-17 12:20:55 +00:00
tsconfig.json Upgraded the solution to SPFx v1.10 2020-06-15 07:15:58 +00:00
tslint.json Added sample react-adaptive-cards-image-gallery (#700) 2018-12-08 18:56:15 +02:00

README.md

page_type products languages extensions
sample
office-sp
javascript
typescript
contentType technologies platforms createdDate
samples
SharePoint Framework
React
11/28/2018 12:00:00 AM

Image Gallery Web Part Built with Adaptive Cards

Summary

This sample demonstrates the capability of using Adaptive Cards 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

1.10.0

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.1.0 June 15, 2020 Upgrade to SPFx 1.10.0
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

  • Clone this repository.
  • On the command prompt, navigate to the web part folder and execute:
  • npm i
  • gulp bundle --ship
  • gulp package-solution --ship
  • The package can be found at \react-adaptive-cards-image-gallery\sharepoint\solution\react-adaptive-cards-image-gallery.sppkg
  • Deploy the package to the app catalog.
  • Install the client-side solution to your SharePoint site.
  • Add web part to your SharePoint page named "Adaptive Cards Image Gallery".

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