sp-dev-fx-webparts/samples/react-my-teams
Hugo Bernier 197f43ded3 Updated sample.json and readme 2022-01-04 16:30:20 -05:00
..
assets Updated sample.json and readme 2022-01-04 16:30:20 -05:00
config Upgraded to SPFx v1.13.1 2022-01-01 14:20:46 +01:00
src Upgraded to SPFx v1.13.1 2022-01-01 14:20:46 +01:00
teams Upgraded to SPFx v1.13.1 2022-01-01 14:20:46 +01:00
.gitignore Upgraded to SPFx v1.13.1 2022-01-01 14:20:46 +01:00
.npmignore Updated .npmignore 2022-01-01 14:50:12 +01:00
.yo-rc.json Upgraded to SPFx v1.13.1 2022-01-01 14:20:46 +01:00
README.md Updated sample.json and readme 2022-01-04 16:30:20 -05:00
gulpfile.js Upgraded to SPFx v1.13.1 2022-01-01 14:20:46 +01:00
package-lock.json Updated sample.json and readme 2022-01-04 16:30:20 -05:00
package.json Updated sample.json and readme 2022-01-04 16:30:20 -05:00
tsconfig.json Upgraded to SPFx v1.13.1 2022-01-01 14:20:46 +01:00
tslint.json Upgraded to SPFx v1.13.1 2022-01-01 14:20:46 +01:00

README.md

My Teams

Summary

This sample uses Microsoft Graph to list the Teams the current user is a member of. When the user clicks on one of the teams, the web part retrieves information about the default channel (General) and opens it. The web part can be configured to open the team on the web browser or client app.

Demo

Compatibility

SPFx 1.13.1 Node.js v14 Compatible with SharePoint Online Compatible with SharePoint 2019 Does not work with SharePoint 2016 (Feature Pack 2)

Applies to

Prerequisites

  • Microsoft 365 subscription with SharePoint Online license
  • SharePoint Framework development environment already set up.

Solution

Solution Author(s)
react-my-teams Joel Rodrigues
react-my-teams Yves Habersaat

Version history

Version Date Comments
1.1 December 18, 2021 Upgraded for SPFx v1.13.1
1.0 February 26, 2019 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.

In the command line run:

npm install
gulp serve --nobrowser

Navigate to the hosted version of SharePoint workbench, eg. https://contoso.sharepoint.com/_layouts/15/workbench.aspx

Grant the service principal permission to the Microsoft Graph API

Once installed, the solution will request the required permissions via the Office 365 admin portal. If you prefer to approve the permissions in advance, for example when testing the solution in the Workbench page without installing it, you can do so using Office 365 CLI:

o365 spo login https://contoso-admin.sharepoint.com
o365 spo serviceprincipal grant add --resource 'Microsoft Graph' --scope 'User.Read.All'
o365 spo serviceprincipal grant add --resource 'Microsoft Graph' --scope 'User.ReadWrite.All'
o365 spo serviceprincipal grant add --resource 'Microsoft Graph' --scope 'Group.Read.All'
o365 spo serviceprincipal grant add --resource 'Microsoft Graph' --scope 'Group.ReadWrite.All'

Features

This Web Part lists all the teams the current user is a member of.