bee4583c65 | ||
---|---|---|
.. | ||
config | ||
src | ||
teams | ||
tests | ||
.gitignore | ||
.npmignore | ||
.yo-rc.json | ||
README.md | ||
gulpfile.js | ||
package-lock.json | ||
package.json | ||
tsconfig.json | ||
tslint.json |
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
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
- Getting started with SharePoint Framework
- Building for Microsoft teams
- Use Microsoft Graph in your solution
- Publish SharePoint Framework applications to the Marketplace
- Microsoft 365 Patterns and Practices - Guidance, tooling, samples and open-source controls for your Microsoft 365 development
- You can find more on unit testing on my Blog