Created
February 28, 2019 04:49
-
-
Save josephcc/eac11bf13b23298926022d5022344ea1 to your computer and use it in GitHub Desktop.
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 React, { useState, useEffect, useContext } from 'react' | |
import { FirebaseContext } from 'bentowidgets/widgets/firebase_context' | |
import firebase from 'firebase' | |
const FirestoreCacheContext = React.createContext() | |
function FirestoreCacheProvider(props) { | |
const _firebase = useContext(FirebaseContext) | |
const { children } = props | |
const onSnapshot = firebase.firestore.Query.prototype.onSnapshot | |
firebase.firestore.Query.prototype.onSnapshot = (arg1, arg2, arg3) => { | |
console.log('WRAPPED') | |
console.log(this) | |
return Reflect.apply(onSnapshot, arg1, arg2, arg3) | |
} | |
return <FirestoreCacheContext.Provider value={_firebase}>{children}</FirestoreCacheContext.Provider> | |
} | |
// This function takes a component... | |
function withFirestoreCache(Component) { | |
// ...and returns another component... | |
return function FirestoreCacheComponent(props) { | |
// ... and renders the wrapped component with the context theme! | |
// Notice that we pass through any additional props as well | |
return ( | |
<FirestoreCacheContext.Consumer> | |
{firebase => <Component {...props} firebase={firebase} />} | |
</FirestoreCacheContext.Consumer> | |
) | |
} | |
} | |
export default FirestoreCacheProvider | |
export { FirestoreCacheContext, withFirestoreCache, FirestoreCacheProvider } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment