sp-dev-fx-webparts/samples/react-outlook-add-todo-task/README.md

2.9 KiB
Raw Blame History

Create To Do Task from Email (Outlook Add in)

Summary

This webpart allows us to create a new To Do task using the new ToDo MS Graph endpoint. If deployed as an Outlook Add In, the Task title comes from email subject. Let´s say this is similar to the OOTB "Flag" action, but here you can select the ToDo List where to store the Task, and you can modify the Title before adding it.

Create ToDo task

Graph To-Do Preview endpoints

As of today, To Do endpoint is not very well documented yet. It was presented in latest Build 2020. Here are some of the basic operations. You can get more information and see the Build session from this link: https://developer.microsoft.com/en-us/office/blogs/introducing-the-new-microsoft-graph-to-do-api/

Get lists

GET https://graph.microsoft.com/beta/me/todo/lists

Create new List

POST https://graph.microsoft.com/beta/me/todo/lists

{
  displayName: "My new List"
}

Get tasks in list

GET https://graph.microsoft.com/beta/me/todo/lists/{listId}/tasks

Create new Task in List

POST https://graph.microsoft.com/beta/me/todo/lists/{listId}/tasks

{
  "importance": "high",
  "status": "notStarted",
  "title": "New task to do",
  "body": {
    "content": "You have a new task to do",
    "contentType": "text"
  }
}

Used SharePoint Framework Version

SPFx v1.10.0

Solution

Solution Author(s)
react-outlook-add-todo-task Luis Mañez (MVP, ClearPeople, @luismanez)

Version history

Version Date Comments
1.0.0 Jun 3, 2020 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 repo
  • gulp bundle --ship
  • gulp package-solution --ship
  • deploy package to SharePoint App Catalog (check tenant deploy)
  • Using O365 CLI to configure MS Graph permissions to allow creating ToDo tasks
spo serviceprincipal grant add --resource "Microsoft Graph" --scope "Tasks.ReadWrite"

Features

This sample illustrates the following concepts on top of the SharePoint Framework:

  • New ToDo MS Graph endpoint
  • Using MSGraphClient
  • Outlook SPFx add-in
  • Using async / await for the async calls
  • FluentUI components