This service lets you integrate Wonderpush in your React applications easily.
You can install the module from a package manager of your choice directly from the command line
# Yarn
yarn add react-wonderpush
# NPM
npm i react-wonderpush
import WonderPush from 'react-wonderpush';
<WonderPush options = {{
webKey: "a6a00ccf60ffee04cb201cead4304fc4db8fa8e0a2823a77466e8c8ebeed4e25",
applicationName: "React WonderPush Demo",
notificationDefaultUrl: "https://www.wonderpush.com/demo/",
notificationIcon: "../img/image.png"
}}>
<div className="App">
Your components here ...
</div>
</WonderPush>
Options available for wonderpush.init: https://wonderpush.github.io/wonderpush-javascript-sdk/latest/WonderPush.html#.InitOptions
Integrate a wonderpush subscription:
import React,{Component} from 'react';
const SwitchButton = () => (
<div className="switch-container">
<div id="wonderpush-subscription-switch" data-on="YES" data-off="NO"></div>
</div>
)
export default SwitchButton
Create a component who need wonderpush:
import React, {Component} from 'react'
import {withWonderPush} from 'react-wonderpush'
export class EventToTrack extends Component {
constructor(props){
super(props)
this.fireEvent = this.fireEvent.bind(this)
}
fireEvent(e){
this.props.wonderPush.trackEvent("myEvent")
}
render(){
return (
<div
className={"event myEvent"}
onClick={this.fireEvent}
>
Click on this div will track event name myEvent
</div>
)
}
}
export default withWonderPush(EventToTrack, {waitWonderPushReady: true})
WithWonderPush take two arguments:
- Component
- options
Options available:
- waitWonderPushReady: boolean (default : false)
To help you with your implementaiton we provided a sample application. to run it
cd wonderpush-sample-app
yarn start
then go to http://localhost:3000
As React itself, this module is released under the permissive MIT License. Your contributions are always welcome.
Start the wonderpush-sample-app with npm start or yarn start will install and build library and install sample-app node_modules if they not exists.
After forking you will need to run the following from a command line to get your environment setup:
yarn install
After install you have the following commands available to you from a command line:
gulp