sp-dev-fx-webparts/samples/sharepoint-crud
Gautam Sheth 277af705b0 SharePoint CRUD sample updated to SPFx 1.6.0 (#666) 2018-11-09 09:44:42 +02:00
..
assets Added SharePoint CRUD sample (#16) 2016-09-16 06:33:47 +02:00
config SharePoint CRUD sample updated to SPFx 1.6.0 (#666) 2018-11-09 09:44:42 +02:00
src SharePoint CRUD sample updated to SPFx 1.6.0 (#666) 2018-11-09 09:44:42 +02:00
.editorconfig Added SharePoint CRUD sample (#16) 2016-09-16 06:33:47 +02:00
.gitattributes Added SharePoint CRUD sample (#16) 2016-09-16 06:33:47 +02:00
.gitignore Updated SharePoint CRUD sample to SPFx GA (#147) 2017-03-09 15:03:19 +02:00
.npmignore Updated SharePoint CRUD sample to SPFx GA (#147) 2017-03-09 15:03:19 +02:00
.yo-rc.json SharePoint CRUD sample updated to SPFx 1.6.0 (#666) 2018-11-09 09:44:42 +02:00
README.md SharePoint CRUD sample updated to SPFx 1.6.0 (#666) 2018-11-09 09:44:42 +02:00
gulpfile.js SharePoint CRUD sample updated to SPFx 1.4.1 (#464) 2018-04-04 16:53:25 +02:00
package-lock.json SharePoint CRUD sample updated to SPFx 1.6.0 (#666) 2018-11-09 09:44:42 +02:00
package.json SharePoint CRUD sample updated to SPFx 1.6.0 (#666) 2018-11-09 09:44:42 +02:00
tsconfig.json SharePoint CRUD sample updated to SPFx 1.6.0 (#666) 2018-11-09 09:44:42 +02:00
tslint.json SharePoint CRUD sample updated to SPFx 1.6.0 (#666) 2018-11-09 09:44:42 +02:00

README.md

SharePoint CRUD operations

Summary

Sample Web Parts illustrating performing SharePoint CRUD operations in React, Angular, JavaScript without any framework and using the @pnp/sp library.

Sample To do SharePoint Framework Client-Side Web Part built using Angular and ngOfficeUIFabric

Used SharePoint Framework Version

drop

Applies to

Solution

Solution Author(s)
sharepoint-crud Waldek Mastykarz (MVP, Rencore, @waldekm), Gautam Sheth (SharePoint Consultant, RapidCircle)

Version history

Version Date Comments
1.3 November 1, 2018 Updated to SPFx 1.6.0
1.2 March 30, 2018 Updated to SPFx 1.4.1
1.1 March 9, 2017 Updated to SPFx GA
1.0 September 16, 2016 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 repo
  • in the command line run:
    • npm i
    • gulp serve --nobrowser
  • in your SharePoint Site create a list

Note: this Site should be located in a Site Collection under the /sites/ managed path, eg. https://contoso.sharepoint.com/sites/my-team-site

Features

This project contains sample client-side web parts built on the SharePoint Framework illustrating how to perform SharePoint CRUD operations on different JavaScript frameworks.

This sample illustrates the following concepts on top of the SharePoint Framework:

  • general
    • performing SharePoint CRUD operations
      • in React
      • in Angular v1.x
      • without a particular JavaScript framework
      • using the @pnp/sp library
    • using ETag to ensure data integrity when updating and deleting items
    • chaining promises for performing multiple asynchronous operations as part of one use case
    • breaking a chain of promises in case of an error and handling it gracefully
    • retrieving List Item Entity Type for modelling items in REST requests
    • optimizing REST responses for performance
  • React
    • using Office UI Fabric React components
    • using state to keep track of Web Part status and data
    • using Web Part's HttpClient in a React component
  • Angular
    • loading Angular and ngOfficeUIFabric from CDN
    • using conditional rendering for one-time Web Part setup
    • passing Web Part configuration to Angular and reacting to configuration changes in the Angular application
  • @pnp/sp library
    • using the @pnp/sp JS library with SharePoint Framework Client-Side Web Parts
    • configuring global request headers and overriding them for specific requests
    • sorting and selecting top n items from a list using the fluent API