sp-dev-fx-webparts/samples/react-birthdays
petkir 71f6469fa0 URL dev.office.com to docs.microsoft.com 2020-06-09 09:09:22 +02:00
..
assets React-Carousel and New Version of Happy Birthday Web Part (#914) 2019-07-28 13:19:30 +03:00
config Birthdays Web Part - Update Documentation and bug fix (#844) 2019-04-18 21:30:11 +03:00
src Update React-Directory new features and fix issue #931 (#937) 2019-08-13 11:07:43 +03:00
teams React-Birthdays Web Part (#716) 2018-12-28 17:47:35 +02:00
.editorconfig React-Birthdays Web Part (#716) 2018-12-28 17:47:35 +02:00
.gitignore React-Birthdays Web Part (#716) 2018-12-28 17:47:35 +02:00
.yo-rc.json React-Carousel and New Version of Happy Birthday Web Part (#914) 2019-07-28 13:19:30 +03:00
README.md URL dev.office.com to docs.microsoft.com 2020-06-09 09:09:22 +02:00
gulpfile.js React-Birthdays Web Part (#716) 2018-12-28 17:47:35 +02:00
package-lock.json React-Carousel and New Version of Happy Birthday Web Part (#914) 2019-07-28 13:19:30 +03:00
package.json React-Carousel and New Version of Happy Birthday Web Part (#914) 2019-07-28 13:19:30 +03:00
tsconfig.json React-Carousel and New Version of Happy Birthday Web Part (#914) 2019-07-28 13:19:30 +03:00
tslint.json React-Birthdays Web Part (#716) 2018-12-28 17:47:35 +02:00

README.md

React Birthdays Web Part

Summary

The Web Part Birthdays shows the upcoming birthdays in the company, the web part reads birthdays from a list located on the tenant's root site with title "Birthdays."

Now is possible to the user select an image for the background in the properties of the webpart.

There is an Azure function available that get AAD user birthdays, this function creates a list on the tenant root site, if it does not exist. See the local.settings.json for details on the required application variable located in SyncUsersBirthdaysFunction folder.

But you can synchronize the Birthdays list with other applications HR Systems, or other sources

Birthdays Web Part

Birthdays Web Part

Used SharePoint Framework Version

drop

Applies to

Prerequisites

Existing list in tenant root site, with the Title "Birthdays" and columns:

Column Internal Name Type Required comments
JobTitle Text no
Birthday DateTime true
userAADGUID Text no required if used Azure Function to get Birthdays from AAD
Title Text true
email Text true

After create a column Index on column "Birthday" - Important!

Solution

Solution Author(s)
react Birthday Web Part João Mendes

Version history

Version Date Comments
1.0.0 November 6, 2018 Initial release
1.1.0 July 23, 2019 new version

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 - please follow all the steps.

  • Clone this repository
  • in the command line run:
    • npm install
    • gulp build
    • gulp bundle --ship
    • gulp package-solution --ship
    • Add and Deploy Package to AppCatalog
    • Go to API Management - from SharePoint Admin Center new experience, and Approve the Permission Require to Use Graph API SCOPES

Features

This project contains sample Birthday web parts built on the SharePoint Framework using React and an Azure Function to get user Birthdays from AAD. This sample illustrates the following concepts on top of the SharePoint Framework:

  • using React for building SharePoint Framework client-side web parts
  • using React components for building Birthday web part
  • using MSGraph API to get data from SharePoint Lists
  • using MSGraph API to read users from AAD
  • using @PnP/PnPjs to create a List, add, update, delete Items.