sp-dev-fx-webparts/samples/react-groups-teams
Hugo Bernier 28ee1ecc71 Updated readme and sample.json 2021-08-02 00:59:32 -04:00
..
assets Updated readme and sample.json 2021-08-02 00:59:32 -04:00
config Updated readme and sample.json 2021-08-02 00:59:32 -04:00
src Update MyTeams.tsx 2021-08-01 11:48:33 -07:00
teams initial pr for react-groups-teams 2021-05-06 00:33:51 -04:00
.editorconfig initial pr for react-groups-teams 2021-05-06 00:33:51 -04:00
.gitignore initial pr for react-groups-teams 2021-05-06 00:33:51 -04:00
.yo-rc.json initial pr for react-groups-teams 2021-05-06 00:33:51 -04:00
README.md Updated readme and sample.json 2021-08-02 00:59:32 -04:00
gulpfile.js initial pr for react-groups-teams 2021-05-06 00:33:51 -04:00
package-lock.json Updated readme and sample.json. Fixed minor linting issues. 2021-05-06 01:04:33 -04:00
package.json Updated readme and sample.json 2021-08-02 00:59:32 -04:00
tsconfig.json initial pr for react-groups-teams 2021-05-06 00:33:51 -04:00
tslint.json initial pr for react-groups-teams 2021-05-06 00:33:51 -04:00

README.md

All Microsoft 365 Groups and Teams with SPFx

Summary

Web part pulls all Microsoft 365 Groups and Teams that the logged in user has access to view.

  1. The Microsoft Groups view has filter option for private or public groups and can switch between viewing all groups or just my groups.
  • Group Name (hover for group description)
  • Link to email
  • Link to SharePoint site
  • Link to calendar
  • Link to Planner plan (if available)
  • Group privacy
  1. The Microsoft Teams view has filter option for private or public Teams.
  • Team Name (hover for group description)
  • Link to email
  • Link to SharePoint site
  • Link to calendar
  • Link to Planner plan (if available)
  • Link to Team
  • Team privacy Each Team o Uses SharePoint theme.

picture of the web part in action picture of the web part in action picture of the web part in action picture of the web part in action

Compatibility

SPFx 1.10 Node.js LTS 8.x | LTS 10.x SharePoint Online Teams N/A: Untested with Microsoft Teams Workbench Hosted: Only after API permissions granted

Applies to

Solution

Solution Author(s)
React-Groups-Teams Alison Collins

Version history

Version Date Comments
1.0.0 April 16, 2021 Initial release
1.0.1 August 1, 2021 Fixed references to Office.com

Prerequisites

  • Administrative access to Azure AD of Microsoft 365 tenant
  • SharePoint Online tenant
  • You need following set of permissions in order to manage Microsoft 365 Groups and Teams
"webApiPermissionRequests": [{
      "resource": "Microsoft Graph",
      "scope": "Groups.Read.All"
    }, {
      "resource": "Team",
      "scope": "Teams.ReadBasic.All"
    }]

Minimal Path to Awesome

  • Clone this repo
  • Navigate to the folder with current sample
  • Restore dependencies: $ npm i
  • Bundle the solution: $ gulp bundle --ship
  • Package the solution: $ gulp package-solution --ship
  • Upload to SharePoint tenant app catalog
  • You will see a message saying that solution has pending permissions which need to be approved
  • Approve the permission requests.
  • Run $ gulp serve --nobrowser
  • Open hosted workbench, i.e. https://<tenant>.sharepoint.com/sites/<your site>/_layouts/15/workbench.aspx
  • Search and add O365 Groups Manager web part to see it in action

Features

This project contains sample client-side web part built on the SharePoint Framework illustrating possibilities to quickly gain access to features in Microsoft 365 Groups and Teams using React and MS Graph.

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

  • Explore MS Graph APIs for Microsoft 365 Group
  • Using the MSGraphClient in a SharePoint Framework web part
  • Requesting API permissions in a SharePoint Framework package
  • Communicating with the Microsoft Graph using its REST API
  • Using Office UI Fabric controls for building SharePoint Framework client-side web parts
  • Passing web part properties to React 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.

Support

We do not support samples, but we do use GitHub to track issues and constantly want to improve these samples.

If you encounter any issues while using this sample, create a new issue.

For questions regarding this sample, create a new question.

Finally, if you have an idea for improvement, make a suggestion.