sp-dev-fx-webparts/samples/react-graph-auto-batching
Marcin Wojciechowski bee4583c65 Added a sample to showcase auto-bathing graph client used for rendering user card 2022-02-03 18:53:20 +01:00
..
config Added a sample to showcase auto-bathing graph client used for rendering user card 2022-02-03 18:53:20 +01:00
src Added a sample to showcase auto-bathing graph client used for rendering user card 2022-02-03 18:53:20 +01:00
teams Added a sample to showcase auto-bathing graph client used for rendering user card 2022-02-03 18:53:20 +01:00
tests Added a sample to showcase auto-bathing graph client used for rendering user card 2022-02-03 18:53:20 +01:00
.gitignore Added a sample to showcase auto-bathing graph client used for rendering user card 2022-02-03 18:53:20 +01:00
.npmignore Added a sample to showcase auto-bathing graph client used for rendering user card 2022-02-03 18:53:20 +01:00
.yo-rc.json Added a sample to showcase auto-bathing graph client used for rendering user card 2022-02-03 18:53:20 +01:00
README.md Added a sample to showcase auto-bathing graph client used for rendering user card 2022-02-03 18:53:20 +01:00
gulpfile.js Added a sample to showcase auto-bathing graph client used for rendering user card 2022-02-03 18:53:20 +01:00
package-lock.json Added a sample to showcase auto-bathing graph client used for rendering user card 2022-02-03 18:53:20 +01:00
package.json Added a sample to showcase auto-bathing graph client used for rendering user card 2022-02-03 18:53:20 +01:00
tsconfig.json Added a sample to showcase auto-bathing graph client used for rendering user card 2022-02-03 18:53:20 +01:00
tslint.json Added a sample to showcase auto-bathing graph client used for rendering user card 2022-02-03 18:53:20 +01:00

README.md

react-graph-auto-batching

Summary

This same shows how to abstract batching graph requests. The idea behind this sample is quite simple. To render simple user card we need three calls to MS GraphAPI. First one to get user information, second to get the image and third to get the presence. As with rendering multiple user card we may hit graph throttling, it is a good idea to batch those requests. This might create quite a repetition across our solution. To avoid such situation, we can implement composition pattern to abstract that batch generation. This design pattern will also help us with unit testing.

This is the second idea behind this sample. It provides few unit tests of quite a complex implementation detail, which auto batching is. You can also find how one can test react component in SPFx stack in isolation, by providing mock to all data access layer implementation.

Finally, let me know if You would like to see this auto batcher in some library You can import to Your solution.

You may ask why I used AadHttpClient instead of MSGraphClient. AadHttpClient shares more similarity with a http client based on fetch api, this means it will be easier to adopt this solution to an implementation outside of SPFx.

Used SharePoint Framework Version

version

Applies to

Get your own free development tenant by subscribing to

Prerequisites

None

Solution

Solution Author(s)
react-graph-auto-batching Marcin Wojciechowski @mgwojciech

Version history

Version Date Comments
1.0 February 3, 2022 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
  • Ensure that you are at the solution folder
  • in the command-line run:
    • npm install
    • gulp serve
  • Add Graph Auto Batching

To run tests Clone this repository

  • Ensure that you are at the solution folder
  • in the command-line run:
    • npm install
    • npx jest

Features

Description of the extension that expands upon high-level summary above.

This extension illustrates the following concepts:

  • User Card using auto batching requests to MS Graph Client
  • Unit testing batching client using mocked http client
  • Unit testing React component in SPFx
    • In total isolation
    • Awaiting the useEffect(()=>{},[]) operation

References