Skip to content

Instantly share code, notes, and snippets.

@jperelli
Created April 4, 2017 11:16
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 2 You must be signed in to fork a gist
  • Save jperelli/d8728bf1916e07a79aed1bc129b52ec9 to your computer and use it in GitHub Desktop.
Save jperelli/d8728bf1916e07a79aed1bc129b52ec9 to your computer and use it in GitHub Desktop.
Reactotron + redux + react-native configuration
import Reactotron from 'reactotron-react-native'
import { reactotronRedux } from 'reactotron-redux'
var store;
if (__DEV__) {
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