sp-dev-fx-webparts/samples/react-documents-detailslist
Joel Rodrigues 764d8f10e0 Add tslint at the root of each SPFx project (#394) 2018-01-08 15:58:48 +02:00
..
assets Add sample that shows documents webparts with DetailsList (+ filtering, sorting ) (#334) 2017-10-25 12:37:54 -04:00
config Add sample that shows documents webparts with DetailsList (+ filtering, sorting ) (#334) 2017-10-25 12:37:54 -04:00
src Add sample that shows documents webparts with DetailsList (+ filtering, sorting ) (#334) 2017-10-25 12:37:54 -04:00
typings Add sample that shows documents webparts with DetailsList (+ filtering, sorting ) (#334) 2017-10-25 12:37:54 -04:00
.editorconfig Add sample that shows documents webparts with DetailsList (+ filtering, sorting ) (#334) 2017-10-25 12:37:54 -04:00
.gitignore Add sample that shows documents webparts with DetailsList (+ filtering, sorting ) (#334) 2017-10-25 12:37:54 -04:00
.yo-rc.json Add sample that shows documents webparts with DetailsList (+ filtering, sorting ) (#334) 2017-10-25 12:37:54 -04:00
README.md Add sample that shows documents webparts with DetailsList (+ filtering, sorting ) (#334) 2017-10-25 12:37:54 -04:00
gulpfile.js Add sample that shows documents webparts with DetailsList (+ filtering, sorting ) (#334) 2017-10-25 12:37:54 -04:00
package.json Add sample that shows documents webparts with DetailsList (+ filtering, sorting ) (#334) 2017-10-25 12:37:54 -04:00
tsconfig.json Add sample that shows documents webparts with DetailsList (+ filtering, sorting ) (#334) 2017-10-25 12:37:54 -04:00
tslint.json Add tslint at the root of each SPFx project (#394) 2018-01-08 15:58:48 +02:00

README.md

Documents Web Part

Summary

This sample shows how to build web parts that display documents in accordance with the SharePoint Online modern experience. The code uses Office UI Fabric components on the top of SharePoint framework. The web parts implement filtering and sorting. Two data source approaches are demonstrated: items retrieved from the search index and real-time query to a document library.

Demo

Used SharePoint Framework Version

drop

Applies to

Prerequisites

Solution

Solution Author(s)
react-documents Dimcho Tsanov

Version history

Version Date Comments
1.0 October 13, 2017 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.


Minimal Path to Awesome

  • Clone this repository
  • in the command line run:
    • npm install
    • gulp serve

Features

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

-Using React for building SharePoint Framework client-side web parts. -Using Office UI Fabric React styles for building user experience consistent with SharePoint and Office. -Using the SharePoint rest API for querying document library's files. -Using the SharePoint rest API for retrieving documents from the search index. -Passing web part properties to React components. -Reusing single React component between two web parts.