sp-dev-fx-webparts/samples/react-events-aggregator
Hugo Bernier 82598c094f Added links to issue templates 2021-04-26 02:08:59 -04:00
..
assets Updated sample JSON 2021-03-15 03:48:14 -04:00
config react events aggregator updated to version 1.4.1 of the SPFx (#455) 2018-04-04 16:52:02 +02:00
src Event aggregator sample deprecated (#690) 2018-11-19 23:53:52 +02:00
.editorconfig Two samples on communication between web parts through broadcasting events utilizing the Publish–subscribe pattern (#290) 2017-09-05 12:05:47 +03:00
.gitattributes Two samples on communication between web parts through broadcasting events utilizing the Publish–subscribe pattern (#290) 2017-09-05 12:05:47 +03:00
.gitignore Two samples on communication between web parts through broadcasting events utilizing the Publish–subscribe pattern (#290) 2017-09-05 12:05:47 +03:00
.npmignore Two samples on communication between web parts through broadcasting events utilizing the Publish–subscribe pattern (#290) 2017-09-05 12:05:47 +03:00
.yo-rc.json react events aggregator updated to version 1.4.1 of the SPFx (#455) 2018-04-04 16:52:02 +02:00
README.md Added links to issue templates 2021-04-26 02:08:59 -04:00
gulpfile.js react events aggregator updated to version 1.4.1 of the SPFx (#455) 2018-04-04 16:52:02 +02:00
package-lock.json Bump y18n from 3.2.1 to 3.2.2 in /samples/react-events-aggregator 2021-03-31 09:36:56 +00:00
package.json Bump lodash from 4.17.15 to 4.17.19 in /samples/react-events-aggregator 2020-07-20 06:31:15 +00:00
tsconfig.json react events aggregator updated to version 1.4.1 of the SPFx (#455) 2018-04-04 16:52:02 +02:00
tslint.json Add tslint at the root of each SPFx project (#394) 2018-01-08 15:58:48 +02:00

README.md

SPFx Event Aggregator Sample

DEPRECATED

The event aggregator is deprecated and no longer available in the SharePoint Framework. Please use dynamic data instead. #

Following issue #659, the event aggregator functionality is no longer working. This feature was in ALPHA state and never made it to general availability state. There is a replacement for the event aggregator. Please have a look at the dynamic data functionality and use it instead https://docs.microsoft.com/en-us/sharepoint/dev/spfx/dynamic-data. There is already a sample in this library https://github.com/SharePoint/sp-dev-fx-webparts/tree/master/samples/react-events-dynamicdata

Summary

This sample shows how we can use the SPFx Event Aggregator to communicate between web parts through broadcasting events utilizing the Publishsubscribe pattern. It enables a web part or component to raise event (broadcast message) through the SPFx event aggregator and that event is received by other web parts or components that have been subscribed to receive it.

Please note the SPFx Event Aggregator is still in Alpha and NOT SUPPORTED IN PRODUCTION USE, but this sample will be updated in future when there are changes from the Alpha version to GA.

SPFx eventAggregator

Used SharePoint Framework Version

drop

Applies to

Prerequisites

Solution

Solution Author(s)
react-events-aggregator Miguel Rabaca ( Spanish Point ), Velin Georgiev ( @VelinGeorgiev ), Austin Breslin ( @AustinBreslin )

Version history

Version Date Comments
0.0.1 August 22, 2017 Initial commit
0.0.2 March 20, 2018 Updated to SPFx v1.4.1
0.0.3 November 18, 2018 Sample deprecated

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.
  • Open the command line, navigate to the web part folder and execute:
    • npm i
    • gulp test (optional)
    • gulp serve

Features

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

  • Using React for building SharePoint Framework client-side web parts.
  • Using Office UI Fabric React styles for building user experience consistent with SharePoint and Office.
  • The use the SPFx event aggregator to broadcast messages (events).
  • The use the SPFx event aggregator to subscribe and receive broadcasted messages (events).
  • Unit tests including spies, mocks and faking class methods and properties.