sp-dev-fx-webparts/samples/react-follow-document
Hugo Bernier 2134a56023 Updated image url and default spfx version 2021-06-27 01:58:16 -04:00
..
Assets Updated image url and default spfx version 2021-06-27 01:58:16 -04:00
config New Sample Follow Document WebPart 2021-06-22 02:51:19 +02:00
src Update Image and controls to avoid render issue with Teams. 2021-06-26 15:19:46 +02: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 readme 2021-06-27 01:49:16 -04: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 Social feature "Follow Document WebPart" 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

SPFx 1.12.1 Node.js LTS v14 | LTS v12 | LTS v10 SharePoint Online Teams Yes: Designed for Microsoft Teams Workbench Local

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 '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'

Solution

Solution Author(s)
react-follow-document André Lage (http://aaclage.blogspot.com, @aaclage)

Version history

Version Date Comments
1.0 June 22, 2021 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
    • gulp bundle --ship
    • gulp package-solution --ship
    • Add to AppCatalog and deploy

Features

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

This extension illustrates the following concepts:

  • Change of SharePoint Social Feature "Follow" to follow key Documents for 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).

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.

Help

We do not support samples, but we 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 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