sp-dev-fx-webparts/samples/react-avatar
Hugo Bernier 68f7f67761 Changed from updated to modificationDateTime 2021-05-02 15:39:42 -04:00
..
assets Changed from updated to modificationDateTime 2021-05-02 15:39:42 -04:00
config Adding PnP identifier for the MPN ID entries in samples - distinct sample usage in production 2021-01-07 14:51:39 +02:00
src Adding react-avatar sample 2020-08-12 00:54:53 +05:30
teams Adding react-avatar sample 2020-08-12 00:54:53 +05:30
.editorconfig add missing files 2020-10-20 14:18:39 +01:00
.gitignore add missing files 2020-10-20 14:18:39 +01:00
.yo-rc.json add missing files 2020-10-20 14:18:39 +01:00
README.md Added links to issue templates 2021-04-26 02:08:59 -04:00
gulpfile.js Adding react-avatar sample 2020-08-12 00:54:53 +05:30
package-lock.json update to SPFx 1.11.0 2020-10-20 14:32:40 +01:00
package.json update to SPFx 1.11.0 2020-10-20 14:32:40 +01:00
tsconfig.json update to SPFx 1.11.0 2020-10-20 14:32:40 +01:00
tslint.json Adding react-avatar sample 2020-08-12 00:54:53 +05:30

README.md

Avatar Editor

Summary

This is a sample web part that helps user create their avatar and save as profile picture. User can even download their avatar as PNG file. This web part can be useful in Intranet to help user create their avatar and save it as profile picture.

directory

Features

  • Avatar Generator from multiple options available
  • Set Avatar as Profile Picture.
  • Download Avatar as PNG file.

Used SharePoint Framework Version

SPFx 1.11

Applies to

Prerequisites

  • SharePoint Online tenant
  • You have to provide permission in SharePoint admin for accessing Graph API on behalf of your solution. We can do it before deployment as proactive steps, or after deployment. You can refer to steps about how to do this post-deployment. You have to use API Access Page of SharePoint admin and add below permission for our use case.
 "webApiPermissionRequests": [
      {
        "resource": "Microsoft Graph",
        "scope": "User.ReadWrite"
      }
    ]

Concepts

This Web Part illustrates the following concepts on top of the SharePoint Framework:

  • Using react framework in SPFx webpart
  • Calling Graph API my Photo to store the image in SPFx webpart
  • Usage of Material UI Tab and Dialog
  • Usage of avataaars

Web Part Properties

Property Type Required comments
Web Part Title Text no

Solution

The web part Use avataaars library for creating avatars and MS Graph with User.ReadWrite and User.ReadWriteAll for saving avatar as current users Profile Picture.FileSaver for downloading avatar image as png file.

Solution Author(s)
react Avatar Kunj Sangani

Version history

Version Date Comments
1.0.0 August 1, 2020 Initial release
1.0.1 October 20, 2020 Update to SPFx 1.11.0

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 build
    • gulp bundle --ship
    • gulp package-solution --ship
    • Add to AppCatalog and deploy