2020-11-08 22:43:31 -05:00
# RSS Reader
2019-01-27 03:27:58 -05:00
## Summary
A RSS Reader original based on work completed by Olivier Carpentier's from: https://github.com/OlivierCC/spfx-40-fantastics/tree/master/src/webparts/rssReader
Root project: https://github.com/OlivierCC/spfx-40-fantastics
2021-03-16 18:16:33 -04:00
React RSS Reader utilizes SharePoint Framework v1.11.0 with no dependency on jQuery or a RSS Feed library. This project does utilize https://sharepoint.github.io/sp-dev-fx-property-controls/, and Moment React for date manipulation. Handlebar template option derived from React Search Refiners (PnP Modern Search): https://microsoft-search.github.io/pnp-modern-search/. Use NodeJS version 10 to compile or rebuild the spfx solution.
2019-01-27 03:27:58 -05:00
Main features include:
2020-11-22 20:26:51 -05:00
- Three different RSS Feed retrieval services, direct, https://feed2json.org, https://rss2json.com
- Optionally store RSS feed results to local storage for quick reload with configurable timeout window
2019-01-27 03:27:58 -05:00
- Optional CORS proxy service for cross origin feeds
- Optional View All link in header to point to custom feed source
- Embedded feed rendering with optional parameters
-- Feed result layout options including optional display of item publish date and description
-- Demostration of color picker property for color control of certain aspects of webpart
- Custom feed rendering using local or remote handlebar template
< p align = "center" >
< img src = "./images/react-rss-reader.gif" / >
< / p >
This sample includes the following service(s):
## Used SharePoint Framework Version
2020-11-22 20:26:51 -05:00
![SPFx 1.11 ](https://img.shields.io/badge/drop-1.11.0-green.svg )
2019-01-27 03:27:58 -05:00
## Applies to
2020-06-09 03:09:22 -04:00
* [SharePoint Framework ](https://docs.microsoft.com/sharepoint/dev/spfx/sharepoint-framework-overview )
* [Office 365 tenant ](https://docs.microsoft.com/sharepoint/dev/spfx/set-up-your-development-environment )
2019-01-27 03:27:58 -05:00
## Solution
Solution|Author(s)
--------|---------
react-rss-reader | Eric Overfield -[@ericoverfield](http://www.twitter.com/ericoverfield)
2020-11-22 18:00:30 -05:00
react-rss-reader | Abderahman Moujahid
2019-01-27 03:27:58 -05:00
## Version history
Version|Date|Comments
-------|----|--------
2020-11-22 18:00:30 -05:00
1.0.0 | Jan 21, 2019 | Initial release
1.0.1 | Nov 22, 2020 | Upgraded to SPFx 1.11
2019-01-27 03:27:58 -05:00
## Disclaimer
2020-11-22 20:26:51 -05:00
2019-01-27 03:27:58 -05:00
**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.**
---
## Minimal Path to Awesome
- Clone this repository
### SPFx
2021-03-16 18:16:33 -04:00
- In the command line, with a version of Node 10, i.e. 10.16.3, run:
2019-01-27 03:27:58 -05:00
- `npm install`
- `gulp serve`
2021-03-16 18:16:33 -04:00
- To bundle and package the installable .sppkg, run:
- `gulp bundle --ship`
- `gulp package-solution --ship`
2019-01-27 03:27:58 -05:00
## Web Parts Configuration
2020-11-22 20:26:51 -05:00
### RSS Reader Web Part
2019-01-27 03:27:58 -05:00
2020-11-22 20:26:51 -05:00
![Property Pane ](./images/rss_property_pane.png )
2019-01-27 03:27:58 -05:00
2020-11-22 20:26:51 -05:00
#### RSS Reader Settings
2019-01-27 03:27:58 -05:00
Setting | Description
-------|----
2020-11-22 20:26:51 -05:00
Feed Url | The url of the RSS Feed for readers. Normally will url will return XML
2021-04-26 02:08:59 -04:00
Feed Retrieval Service | The service to use to retrieve the feed. **Direct** = Make a direct call from the web part to the feed. Note, may have issues with CORS depending on the feed owner. **Feed2Json** = Retrieve a JSON version of feed via feed2json.org. Note, not for production, and may have issues with CORS. For production use, host your own feed2json service. Learn more at https://github.com/appsattic/feed2json.org. **Rss2Json** = CORS safe method to retieve a feed response. Note, subject to limitations with paid options available.
2019-01-27 03:27:58 -05:00
Feed Service Url | If using Feed2Json, the url of the feed2json service. Host your own service, learn more at https://github.com/appsattic/feed2json.org
2020-11-22 20:26:51 -05:00
Feed Service API Key | If using rss2json, an optional API key for paid services
2019-01-27 03:27:58 -05:00
Max Count | The maximum results to return, default: 10
Cache Results | Locally store results in browser local storage, default: no
Mins to Cache Results | If storing results in browser, number of minutes to store. Valid 1 to 1440 (one day), default: 60
Storage Key Prefix | An optional local storage key prefix to use when storing results
2020-11-22 20:26:51 -05:00
Loading Message | An optional custom message to display while the RSS feed is being loaded
2019-01-27 03:27:58 -05:00
Use a CORS proxy | Use a CORS proxy to assist with feed retrieval, default: no
CORS Proxy Url | The url of a CORS proxy if allowed. {0} will be replaced with Feed Url, i.e. https://cors-anywhere.herokuapp.com/{0}
Disable CORS | Set request header mode to "no-cors", thus not requesting CORS response from service. Will disable CORS request, default: no
#### Styling Options
2020-05-14 14:52:24 -04:00
|Setting | Description|
|-------|----|
|External Template Url | The url of an external handlebar template to use in place of the handlebar template editor for custom layouts|
|Results Layout | The layout to use to display feed, Default (list) or Custom|
|Template Editor | A handlebar editor for custom layouts|
2020-11-22 20:26:51 -05:00
|View All Link | An optional link to view the entire feed, often a link to the RSS source blog itself, default: none|
2020-05-14 14:52:24 -04:00
|View All Link Label | An optional label for the View All Link|
2019-01-27 03:27:58 -05:00
2020-05-14 14:52:24 -04:00
**Default layout options**
|Setting | Description|
-------|----
2019-01-27 03:27:58 -05:00
Show Publication Date | Display the publication date
Show Description | Display the content or description of each feed listing
Description Character Limit | The maximum number of description characters to display
Link Target | The "target" of a listing link, default: _blank
2020-04-04 02:18:47 -04:00
Date Format | The Moment based format format of the listing date, i.e. DD/MM/YYYY (European), default: MM/DD/YYYY
2019-01-27 03:27:58 -05:00
Title Color | Color override for a listing title
2021-04-26 02:08:59 -04:00
Background Color | Color override for the web part background
2019-01-27 03:27:58 -05:00
## Features
This Web Part illustrates the following concepts on top of the SharePoint Framework:
- Use HttpClient to retrieve data from an outside data source using different services
- Utilize local storage
- Demonstrate different method to address CORS / CORB issues
- Handlebar based rendering with inline editor or remote template retrieval
2021-05-02 15:04:59 -04:00
- Use the React container component approach inspiring by the [react-todo-basic sample ](https://github.com/pnp/sp-dev-fx-webparts/tree/main/samples/react-todo-basic ).
2019-01-27 03:27:58 -05:00
< img src = "https://telemetry.sharepointpnp.com/sp-dev-fx-webparts/samples/react-rss-reader" / >