sp-dev-fx-webparts/samples/react-follow-document
Hugo Bernier 72bb01cafc Updated links to devprogram 2024-02-06 11:16:44 -05:00
..
.devcontainer Added all 1.12.1 and 1.13 containers 2022-02-14 02:52:18 -05:00
assets Changed docs links to learn 2022-10-24 09:42:45 -04:00
config updated to use Microsoft Graph follow 2021-11-25 18:17:13 +01:00
src Adding a message when there are no items returned. Using MS office look & feel 2022-05-17 11:33:46 -04:00
teams New Sample Follow Document WebPart 2021-06-22 02:51:19 +02:00
.gitignore New Sample Follow Document WebPart 2021-06-22 02:51:19 +02:00
.yo-rc.json New Sample Follow Document WebPart 2021-06-22 02:51:19 +02:00
README.md Updated links to devprogram 2024-02-06 11:16:44 -05:00
gulpfile.js New Sample Follow Document WebPart 2021-06-22 02:51:19 +02:00
package-lock.json New Sample Follow Document WebPart 2021-06-22 02:51:19 +02:00
package.json New Sample Follow Document WebPart 2021-06-22 02:51:19 +02:00
tsconfig.json New Sample Follow Document WebPart 2021-06-22 02:51:19 +02:00
tslint.json New Sample Follow Document WebPart 2021-06-22 02:51:19 +02:00

README.md

Follow Document

Summary

This solution has the goal to easily identify/follow user key documents from all Tenant and easily access them in Modern Pages and Microsoft Teams. This solution uses the Out of Box Office Page > Favorites Files Tab with combination of MSGraph queries and extension for Microsoft Teams.

This is a 2 phase project with associated dependency of solution Follow-Document extension where users are allow to select and manage Followed Document in Libraries to be used in this project.

Available features:

  • Display Follow Documents as Document Card Grid.
  • Click on icon redirects to Document.
  • Click on Site name redirects to Site.
  • Team icon, Form to send message with html to Teams using adaptive cards.
  • Folder Icon redirects to Library where document is located.
  • Filled Start allow user to unfollow document.
  • Info icon open the Properties of Document with capability to edit.
  • Document with search icon allow to preview Document in Side Panel.
  • Search by Filename.
  • Grouping by Site.
  • Microsoft Team integration with personal/Tab App that allow user focus on key Documents.

Usage of following Technologies:

image

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.12.1 Node.js v14 | v12 | v10 Compatible with SharePoint Online Does not work with SharePoint 2019 Does not work with SharePoint 2016 (Feature Pack 2) Local Workbench Incompatible Hosted Workbench Compatible (requires permissions) Compatible with Remote Containers

Applies to

Get your own free development tenant by subscribing to Microsoft 365 developer program

Prerequisites

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 > SharePoint > Advanced > API access. 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 the CLI for Microsoft 365:

o365 spo login https://contoso-admin.sharepoint.com
o365 spo serviceprincipal grant add --resource 'Microsoft Graph' --scope 'Files.Read'
o365 spo serviceprincipal grant add --resource 'Microsoft Graph' --scope 'Files.Read.All'
o365 spo serviceprincipal grant add --resource 'Microsoft Graph' --scope 'Sites.Read.All'
o365 spo serviceprincipal grant add --resource 'Microsoft Graph' --scope 'Files.ReadWrite.All'
o365 spo serviceprincipal grant add --resource 'Microsoft Graph' --scope 'Sites.ReadWrite.All'
o365 spo serviceprincipal grant add --resource 'Microsoft Graph' --scope 'Team.ReadBasic.All'
o365 spo serviceprincipal grant add --resource 'Microsoft Graph' --scope 'Channel.ReadBasic.All'
o365 spo serviceprincipal grant add --resource 'Microsoft Graph' --scope 'ChannelMessage.Send'

Contributors

Version history

Version Date Comments
1.0 June 22, 2021 Initial release
2.0 November 25, 2021 Change to use Microsoft Graph Follow
3.0 January 13, 2022 Graph fixes
3.1 May 17, 2022 Fixed issue when no items are returned

Minimal Path to Awesome

  • Clone this repository
  • Ensure that you are at the solution folder
  • in the command-line run:
    • npm install
    • gulp serve
    • gulp bundle --ship
    • gulp package-solution --ship
    • Add to AppCatalog and deploy

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

Features

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

This extension illustrates the following concepts:

  • Usage of Office > Favorites to follow key Documents from users in Modern Sites.
  • Simple UX to manage Followed documents and report list followed documents across Tenant and access properties and Preview of Document.
  • Option to unfollow documents individually.
  • Integration with other services of Office 365 such us (Preview, Microsoft Team Messages).

Video

Follow Documents in Modern Workspace with SPFx

Help

We do not support samples, but this community is always willing to help, and we want to improve these samples. We use GitHub to track issues, which makes it easy for community members to volunteer their time and help resolve issues.

If you're having issues building the solution, please run spfx doctor from within the solution folder to diagnose incompatibility issues with your environment.

You can try looking at issues related to this sample to see if anybody else is having the same issues.

You can also try looking at discussions related to this sample and see what the community is saying.

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.

References

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.