Created
April 4, 2017 11:16
-
-
Save jperelli/d8728bf1916e07a79aed1bc129b52ec9 to your computer and use it in GitHub Desktop.
Reactotron + redux + react-native configuration
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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