Fixed Readme.md
This commit is contained in:
parent
7f07c800dd
commit
aebc0daa21
|
@ -9,8 +9,8 @@ React RSS Reader utilizes SharePoint Framework v1.7.0 with no dependency on jQue
|
|||
|
||||
Main features include:
|
||||
|
||||
- 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
|
||||
- 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
|
||||
- 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
|
||||
|
@ -25,7 +25,8 @@ Main features include:
|
|||
This sample includes the following service(s):
|
||||
|
||||
## Used SharePoint Framework Version
|
||||
![drop](https://img.shields.io/badge/drop-1.7.0-green.svg)
|
||||
|
||||
![SPFx 1.11](https://img.shields.io/badge/drop-1.11.0-green.svg)
|
||||
|
||||
## Applies to
|
||||
|
||||
|
@ -47,6 +48,7 @@ Version|Date|Comments
|
|||
1.0.1 | Nov 22, 2020 | Upgraded to SPFx 1.11
|
||||
|
||||
## 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.**
|
||||
|
||||
---
|
||||
|
@ -62,23 +64,23 @@ Version|Date|Comments
|
|||
|
||||
## Web Parts Configuration
|
||||
|
||||
### Rss Reader Web Part
|
||||
### RSS Reader Web Part
|
||||
|
||||
<p align="center"><img width="700px" src="./images/rss_property_pane.png"/><p>
|
||||
![Property Pane](./images/rss_property_pane.png)
|
||||
|
||||
#### Rss Reader Settings
|
||||
#### RSS Reader Settings
|
||||
|
||||
Setting | Description
|
||||
-------|----
|
||||
Feed Url | The url of the Rss Feed for readers. Normally will url will return XML
|
||||
Feed Url | The url of the RSS Feed for readers. Normally will url will return XML
|
||||
Feed Retrieval Service | The service to use to retrieve the feed. **Direct** = Make a direct call from the webpart 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.
|
||||
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
|
||||
Feed Service Api Key | If using rss2json, an optional Api key for paid services
|
||||
Feed Service API Key | If using rss2json, an optional API key for paid services
|
||||
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
|
||||
Loading Message | An optional custom message to display while the rss feed is being loaded
|
||||
Loading Message | An optional custom message to display while the RSS feed is being loaded
|
||||
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
|
||||
|
@ -90,7 +92,7 @@ Disable CORS | Set request header mode to "no-cors", thus not requesting CORS re
|
|||
|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|
|
||||
|View All Link | An optional link to view the entire feed, often a link to the rss source blog itself, default: none|
|
||||
|View All Link | An optional link to view the entire feed, often a link to the RSS source blog itself, default: none|
|
||||
|View All Link Label | An optional label for the View All Link|
|
||||
|
||||
|
||||
|
|
Loading…
Reference in New Issue