sp-dev-fx-webparts/samples/react-calendar-feed
Hugo Bernier c24aacbd7f Updated telemetry link 2023-03-12 21:16:15 -04:00
..
.devcontainer Added SPFx 1.10 containers 2022-02-15 00:50:11 -05:00
.vscode init Upgrade 2022-10-21 23:31:02 +02:00
assets Updated sample.json and readme 2022-11-08 11:52:42 -05:00
config init Upgrade 2022-10-21 23:31:02 +02:00
src Linter 2022-10-22 08:36:40 +02:00
.editorconfig Initial commit (#512) 2018-06-07 14:09:40 +03:00
.eslintrc.js init Upgrade 2022-10-21 23:31:02 +02:00
.gitignore init Upgrade 2022-10-21 23:31:02 +02:00
.npmignore init Upgrade 2022-10-21 23:31:02 +02:00
.yo-rc.json init Upgrade 2022-10-21 23:31:02 +02:00
README.md Updated telemetry link 2023-03-12 21:16:15 -04:00
gulpfile.js init Upgrade 2022-10-21 23:31:02 +02:00
package-lock.json Bump decode-uri-component in /samples/react-calendar-feed 2022-12-30 23:35:42 -05:00
package.json Upgrade to 1.15.2 2022-10-22 08:15:04 +02:00
tsconfig.json fix build errors 2022-10-21 23:53:48 +02:00

README.md

Calendar Feed

Summary

This web part uses event feeds from various sources and renders events using a look and feel that is consistent with the SharePoint out-of-the-box Group calendar/events web part.

It supports the following types of feeds:

  • iCal
  • WordPress
  • RSS
  • Exchange Public Calendar
  • SharePoint

The web part in action

The web part was designed to allow other calendar feed types (or any other type of data you'd like to show as events). If you have additional feeds that you'd like to support, please contact the author or submit a pull request.

Like the SharePoint event web parts, this web part renders a film-strip view when placed on a single column page, and renders a list view when placed in narrow column (e.g.: 3 column layout), or when viewed on a mobile device.

To improve performance, the web part caches the events to the user's local storage (so that it doesn't retrieve the events every time the user visits the page). You can turn off the cache by setting the cache duration to 0 minutes.

For more information about how this solution was built, including some design decisions and information on how you can extend this example to allow additional event feed provider, visit https://tahoeninja.blog/creating-a-calendar-feed-web-part.

Compatibility

⚠️ Important
Every SPFx version is only compatible with specific version(s) of Node.js. In order to be able to build this sample, please ensure that the version of Node on your workstation matches one of the versions listed in this section. This sample will not work on a different version of Node.
Refer to https://aka.ms/spfx-matrix for more information on SPFx compatibility.

This sample is optimally compatible with the following environment configuration:

SPFx 1.15.2 Node.js v16 | v14 | v12 Compatible with SharePoint Online Does not work with SharePoint 2019 Does not work with SharePoint 2016 (Feature Pack 2) Local Workbench Unsupported Hosted Workbench Compatible Compatible with Remote Containers

For more information about SPFx compatibility, please refer to https://aka.ms/spfx-matrix

Applies to

Get your own free development tenant by subscribing to Microsoft 365 developer program

Prerequisites

Before you can use this web part example, you will need one of the following:

  • A publicly-accessible iCal feed (i.e.: .ics)
  • A publicly-accessible RSS feed of events (e.g.: Google calendar)
  • A WordPress WP-FullCalendar feed
  • An Exchange Public Calendar

This web part only supports anonymous external feeds. Also, make sure that your calendar includes upcoming events, as the web part will filter out evens that are earlier than today's date.

If your feed supports filtering by dates, you can specify {s} in the URL where the start date should be inserted, and the web part will automatically replace the {s} placeholder with today's date. Similarly, you can specify {e} in the URL where you wish the end date to be inserted, and the web part will automatically replace the placeholder for the end date, as determined by the date range you select.

Contributors

Version history

Version Date Comments
1.0 May 15, 2018 Initial release
2.0 June 25, 2018 Converted to SPFx 1.5 and added Exchange Public Calendar support
3.0 November 9, 2018 Converted to SPFx 1.7; Added SharePoint Calendar feed
4.0 January 16, 2019 Converted to SPFx 1.7.1; Removed NPM libraries associated with issue #708.
5.0 August 17, 2019 Converted to SPFx 1.9.1; Refreshed carousel code; Addresses #735, #909. Also added Convert from UTC option to handle feeds which do not provide time zone information.
5.1 April 16, 2020 Converted to SPFx 1.10.0; Fixed issue with UTC mode when in narrow view. Updated resizing behavior and styles to match OOB calendar view. Added support for themes and theme variants.
5.2 July 15, 2020 Fixed issue to support IE11
5.3 October 21, 2022 Upgrade to 1.15 Security fixes Removed IE11 Support

Minimal Path to Awesome

  • Clone this repository
  • in the command line run:
    • npm install
    • gulp serve
  • Insert the web part on a page
  • When prompted to configure the web part, select Configure to launch the web part property pane.
  • Select a feed type (RSS, iCal, WordPress, or Mock if using the debug solution)
  • Provide the feed's URL. If using Mock, provide any valid URL (value will be ignored). If you wish to use a SharePoint calendar feed, provide the URL to the list (e.g.: https://yourtenant.sharepoint.com/sites/sitename/lists/eventlistname)
  • Specify a date range (one week, two weeks, one month, one quarter, one year)
  • Specify a maximum number of events to retrieve
  • If necessary, specify to use a proxy. Use this option if you encounter issues where your feed provider does not accept your tenant URL as a CORS origin.
  • If desired, specify how long (in minutes) you want to expire your users' local storage and refresh the events.

This sample can also be opened with VS Code Remote Development. Visit https://aka.ms/spfx-devcontainer for further instructions.

Features

This Web Part illustrates the following concepts on top of the SharePoint Framework:

  • Rendering different views based on size
  • Loading third-party CSS from a CDN
  • Excluding mock data from production build
  • Using @pnp/spfx-property-controls
  • Using @pnp/spfx-controls-react
  • Using localStorage to cache results locally
  • Creating shared components and services
  • Creating extensible services
  • Using a proxy to resolve CORS issues
  • Retrieving SharePoint events from a list with a filter

Help

We do not support samples, but we this community is always willing to help, and we want to improve these samples. We use GitHub to track issues, which makes it easy for community members to volunteer their time and help resolve issues.

If you're having issues building the solution, please run spfx doctor from within the solution folder to diagnose incompatibility issues with your environment.

You can try looking at issues related to this sample to see if anybody else is having the same issues.

You can also try looking at discussions related to this sample and see what the community is saying.

If you encounter any issues while using this sample, create a new issue.

For questions regarding this sample, create a new question.

Finally, if you have an idea for improvement, make a suggestion.

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.