Skip to content

Instantly share code, notes, and snippets.

@wwwjsw
Forked from jperelli/store-config.js
Last active January 8, 2019 13:04
Show Gist options
  • Select an option

  • Save wwwjsw/9877c27d19543c56b64bf303a134d2f4 to your computer and use it in GitHub Desktop.

Select an option

Save wwwjsw/9877c27d19543c56b64bf303a134d2f4 to your computer and use it in GitHub Desktop.
Reactotron + redux + react-native configuration
import Config from '../Config/DebugConfig'
import Immutable from 'seamless-immutable'
import Reactotron from 'reactotron-react-native'
import { reactotronRedux } from 'reactotron-redux'
import sagaPlugin from 'reactotron-redux-saga'
var store;
if (Config.useReactotron) {
Reactotron
.configure({ name: 'VTX-sharepoint' })
.use(reactotronRedux())
.connect()
// monkey patch console.log to send log to reactotron
const yeOldeConsoleLog = console.log
console.log = (...args) => {
yeOldeConsoleLog(...args)
Reactotron.display({
name: 'CONSOLE.LOG',
value: args,
preview: args.length > 0 && typeof args[0] === 'string' ? args[0] : null
})
}
store = Reactotron.createStore(rootReducer, ...middlewares)
}
else {
store = createStore(rootReducer, ...middlewares)
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment