You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
* fix(examples): switch to next in simple example with new version of react-redux
* fix(types): make options param optional in `updateProfile` - #749 - @rscotten
* feat(HOCs): remove `createFirestoreConnect` and `createFirebaseConnect` - store selection is no longer necessary
* fix(types): add descriptions for main methods
* fix(types): remove no longer exported functions from types
* feat(tests): replace [`istanbul`](https://www.npmjs.com/package/istanbul) with [`nyc`](https://www.npmjs.com/package/nyc)
Returns **[Function](https://developer.mozilla.org/docs/Web/JavaScript/Reference/Statements/function)** HOC that accepts a watchArray and wraps a component
35
-
36
7
## firebaseConnect
37
8
38
9
**Extends React.Component**
@@ -42,6 +13,7 @@ to provided firebase paths using React's Lifecycle hooks.
42
13
43
14
**Parameters**
44
15
16
+
-`dataOrFn` (optional, default `[]`)
45
17
-`watchArray`**[Array](https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Array)** Array of objects or strings for paths to sync
46
18
from Firebase. Can also be a function that returns the array. The function
47
19
is passed the current props and the firebase object.
Returns **[Function](https://developer.mozilla.org/docs/Web/JavaScript/Reference/Statements/function)** HOC that accepts a watchArray and wraps a component
35
-
36
7
## firestoreConnect
37
8
38
9
**Extends React.Component**
@@ -44,6 +15,7 @@ attempting to use. **Note** Populate is not yet supported.
44
15
45
16
**Parameters**
46
17
18
+
-`dataOrFn` (optional, default `[]`)
47
19
-`queriesConfig`**[Array](https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Array)** Array of objects or strings for paths to sync
48
20
from Firebase. Can also be a function that returns the array. The function
49
21
is passed the current props and the firebase object.
Returns **[Function](https://developer.mozilla.org/docs/Web/JavaScript/Reference/Statements/function)** HOC that accepts a watchArray and wraps a component
Returns **[Function](https://developer.mozilla.org/docs/Web/JavaScript/Reference/Statements/function)** Higher Order Component which accepts an array of
Returns **[Function](https://developer.mozilla.org/docs/Web/JavaScript/Reference/Statements/function)** Higher Order Component which accepts an array of
Copy file name to clipboardexpand all lines: docs/v3-migration-guide.md
+11-1
Original file line number
Diff line number
Diff line change
@@ -3,8 +3,18 @@
3
3
## What Changed
4
4
5
5
* Support `react-redux` v6 and new React Context API - [#581](https://github.com/prescottprue/react-redux-firebase/issues/581). This mean no more `reactReduxFirebase` and `reduxFirestore` store enhancers (instance is passed through the new React context API) - [#581](https://github.com/prescottprue/react-redux-firebase/issues/581)
6
-
*`componentDidMount` used in place of `componentWillMount` for data loading
6
+
*`componentDidMount` used in place of `componentWillMount` for data loading in `firebaseConnect` and `firestoreConnect`
7
7
*`getFirebase` no longer part of the API
8
+
*`createFirebaseConnect` and `createFirestoreConnect` are no longer part of the API
9
+
10
+
### Remove createFirebaseConnect and createFirestoreConnect
11
+
12
+
These are no longer needed since the extended firebase instance is now loaded through react context instead of through `store.firebase`.
0 commit comments