|
|
import PropTypes from 'prop-types'; |
|
|
import { createContext, PureComponent } from 'react'; |
|
|
import { Provider } from 'react-redux'; |
|
|
import repliesCache from './comment-replies-cache'; |
|
|
import RestClient from './rest-client'; |
|
|
import { init as initAPI } from './rest-client/wpcom'; |
|
|
import { init as initStore, store } from './state'; |
|
|
import { SET_IS_SHOWING } from './state/action-types'; |
|
|
import actions from './state/actions'; |
|
|
import { addListeners, removeListeners } from './state/create-listener-middleware'; |
|
|
import Layout from './templates'; |
|
|
const debug = require( 'debug' )( 'notifications:panel' ); |
|
|
|
|
|
import './boot/stylesheets/style.scss'; |
|
|
|
|
|
let client; |
|
|
|
|
|
const noop = () => {}; |
|
|
const globalData = {}; |
|
|
|
|
|
repliesCache.cleanup(); |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
export const refreshNotes = () => client && client.refreshNotes.call( client ); |
|
|
|
|
|
export const RestClientContext = createContext( client ); |
|
|
|
|
|
export class Notifications extends PureComponent { |
|
|
static propTypes = { |
|
|
customEnhancer: PropTypes.func, |
|
|
actionHandlers: PropTypes.object, |
|
|
isShowing: PropTypes.bool, |
|
|
isVisible: PropTypes.bool, |
|
|
locale: PropTypes.string, |
|
|
receiveMessage: PropTypes.func, |
|
|
wpcom: PropTypes.object.isRequired, |
|
|
forceLocale: PropTypes.bool, |
|
|
}; |
|
|
|
|
|
static defaultProps = { |
|
|
customEnhancer: ( a ) => a, |
|
|
actionHandlers: {}, |
|
|
isShowing: false, |
|
|
isVisible: false, |
|
|
locale: 'en', |
|
|
receiveMessage: noop, |
|
|
}; |
|
|
|
|
|
defaultHandlers = { |
|
|
APP_REFRESH_NOTES: [ |
|
|
( _store, action ) => { |
|
|
if ( ! client ) { |
|
|
return; |
|
|
} |
|
|
|
|
|
if ( 'boolean' === typeof action.isVisible ) { |
|
|
debug( 'APP_REFRESH_NOTES', { |
|
|
isShowing: this.props.isShowing, |
|
|
isVisible: action.isVisible, |
|
|
} ); |
|
|
|
|
|
|
|
|
|
|
|
client.setVisibility.call( client, { |
|
|
isShowing: this.props.isShowing, |
|
|
isVisible: action.isVisible, |
|
|
} ); |
|
|
} |
|
|
|
|
|
client.refreshNotes.call( client, action.isVisible ); |
|
|
}, |
|
|
], |
|
|
}; |
|
|
|
|
|
constructor( props ) { |
|
|
super( props ); |
|
|
|
|
|
const { customEnhancer, actionHandlers, isShowing, isVisible, receiveMessage, wpcom } = |
|
|
this.props; |
|
|
|
|
|
initStore( { customEnhancer } ); |
|
|
|
|
|
store.dispatch( addListeners( actionHandlers ) ); |
|
|
store.dispatch( addListeners( this.defaultHandlers ) ); |
|
|
|
|
|
initAPI( wpcom ); |
|
|
|
|
|
client = new RestClient(); |
|
|
client.global = globalData; |
|
|
client.sendMessage = receiveMessage; |
|
|
|
|
|
if ( this.props.forceLocale ) { |
|
|
client.locale = this.props.locale; |
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
store.dispatch( { type: SET_IS_SHOWING, isShowing } ); |
|
|
|
|
|
client.setVisibility( { isShowing, isVisible } ); |
|
|
} |
|
|
|
|
|
componentDidMount() { |
|
|
store.dispatch( { type: 'APP_IS_READY' } ); |
|
|
} |
|
|
|
|
|
|
|
|
UNSAFE_componentWillReceiveProps( { isShowing, isVisible, wpcom } ) { |
|
|
debug( 'Component will recieve props', { |
|
|
isShowing, |
|
|
isVisible, |
|
|
wpcom, |
|
|
prevShowing: this.props.isShowing, |
|
|
prevVis: this.props.isVisible, |
|
|
prevWPcom: this.props.wpcom, |
|
|
} ); |
|
|
|
|
|
if ( wpcom !== this.props.wpcom ) { |
|
|
initAPI( wpcom ); |
|
|
} |
|
|
|
|
|
if ( this.props.isShowing && ! isShowing ) { |
|
|
|
|
|
store.dispatch( actions.ui.unselectNote() ); |
|
|
} |
|
|
|
|
|
if ( isShowing !== this.props.isShowing ) { |
|
|
store.dispatch( { type: SET_IS_SHOWING, isShowing } ); |
|
|
} |
|
|
|
|
|
if ( isShowing !== this.props.isShowing || isVisible !== this.props.isVisible ) { |
|
|
client.setVisibility( { isShowing, isVisible } ); |
|
|
} |
|
|
} |
|
|
|
|
|
componentWillUnmount() { |
|
|
const { actionHandlers } = this.props; |
|
|
store.dispatch( removeListeners( actionHandlers ) ); |
|
|
store.dispatch( removeListeners( this.defaultHandlers ) ); |
|
|
} |
|
|
|
|
|
render() { |
|
|
return ( |
|
|
<Provider store={ store }> |
|
|
<RestClientContext.Provider value={ client }> |
|
|
<Layout |
|
|
client={ client } |
|
|
data={ globalData } |
|
|
global={ globalData } |
|
|
isShowing={ this.props.isShowing } |
|
|
locale={ this.props.local } |
|
|
/> |
|
|
</RestClientContext.Provider> |
|
|
</Provider> |
|
|
); |
|
|
} |
|
|
} |
|
|
|
|
|
export default Notifications; |
|
|
|