sp-dev-fx-webparts/samples/react-members-with-presence
Hugo Bernier 411f1b1eca Changed authors to contributors 2023-02-18 22:58:44 -05:00
..
.devcontainer Added spfx 1.9.1 containers 2022-02-15 23:34:24 -05:00
assets Changed docs links to learn 2022-10-24 09:42:45 -04:00
config Group members with presence information (#1091) 2019-12-30 15:59:33 +02:00
src Group members with presence information (#1091) 2019-12-30 15:59:33 +02:00
teams Group members with presence information (#1091) 2019-12-30 15:59:33 +02:00
.editorconfig Group members with presence information (#1091) 2019-12-30 15:59:33 +02:00
.gitignore Group members with presence information (#1091) 2019-12-30 15:59:33 +02:00
.yo-rc.json Group members with presence information (#1091) 2019-12-30 15:59:33 +02:00
README.md Changed authors to contributors 2023-02-18 22:58:44 -05:00
gulpfile.js Group members with presence information (#1091) 2019-12-30 15:59:33 +02:00
package-lock.json Group members with presence information (#1091) 2019-12-30 15:59:33 +02:00
package.json Group members with presence information (#1091) 2019-12-30 15:59:33 +02:00
tsconfig.json Group members with presence information (#1091) 2019-12-30 15:59:33 +02:00
tslint.json Group members with presence information (#1091) 2019-12-30 15:59:33 +02:00

README.md

SPFx Web part Group members list with Presence information

Summary

This sample shows how to get the members of a specific group, including their presence information (using the new Presence endpoint in the MS Graph API).

Members with Presence

Compatibility

⚠️ Important
Every SPFx version is only compatible with specific version(s) of Node.js. In order to be able to build this sample, please ensure that the version of Node on your workstation matches one of the versions listed in this section. This sample will not work on a different version of Node.
Refer to https://aka.ms/spfx-matrix for more information on SPFx compatibility.

SPFx 1.9.1 Node.js v10 | v8 Compatible with SharePoint Online Does not work with SharePoint 2019 Does not work with SharePoint 2016 (Feature Pack 2) Local Workbench Compatible Hosted Workbench Compatible Compatible with Remote Containers

For more information about SPFx compatibility, please refer to https://aka.ms/spfx-matrix

Applies to

Contributors

Version history

Version Date Comments
1.0.0 Dec 23, 2019 Initial release

Minimal Path to Awesome

  • clone repo
  • Using the Office365 CLI, connect to your tenant and run the following commands (this will add the proper permissions to the Tenant, in order to call Graph API):
    • spo serviceprincipal grant add --resource "Microsoft Graph" --scope "User.Read.All"
    • spo serviceprincipal grant add --resource "Microsoft Graph" --scope "Presence.Read.All"
  • run gulp serve
  • open the SharePoint workbench in a Modern Team site (Communication site does not have a Group)

This sample can also be opened with VS Code Remote Development. Visit https://aka.ms/spfx-devcontainer for further instructions.

Features

This sample shows how to get the members of a specific Group and their Presence information.

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

  • Using GraphHttpClient to get data from MS Graph API
  • How to get Presence information using MS Graph API
  • How to configure API Permissions using Office365 CLI
  • Using async / await for the async calls
  • Office UI fabric components

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.