1

我在我的 react-native 移动应用程序中使用带有屏幕react-redux-firebase的中间件。fireStoreConnect()在将组件连接到 redux 商店时,我想指定我连接到的 firestore 子集合,这取决于正在导航应用程序的用户。

我应该如何指定集合firestoreConnect?用户 ID 在 redux 存储中。

MWE:

import React, { Component } from 'react';
import { View, Text } from 'react-native';
import { compose } from 'redux';
import { connect } from 'react-redux'
import { firestoreConnect } from 'react-redux-firebase';

class PhotosScreen extends Component {
  render() {
    return (
      <View>
        <Text> i plan the use this.props.images here </Text>
      </View>
    );
  }
}

const mapStateToProps = (state) => {

    // reference the subcollection of the user
    const images = state.firestore.data.images;

    return {
        images: images,
    }
}

export default compose(
    firestoreConnect([
        {
            collection: 'users',
            doc: "HOW DO I GET THE USERS ID HERE? IT IS IN REDUX STORE",
            subcollections: [{ collection: 'images' }]
        }
    ]),
    connect(mapStateToProps),
)(PhotosScreen)
4

2 回答 2

3

Firestore(和所有 NoSQL 数据库)遵循交替的“ (父)集合/文档/集合/文档......”分层模式。要将 React 组件与父 firestore 集合下的子集合和文档同步,您需要将子集合/子文档层次结构信息作为 props 传递给firestoreConnect

    import React, { Component } from 'react';
    import { View, Text } from 'react-native';
    import { compose } from 'redux';
    import { connect } from 'react-redux'
    import { firestoreConnect } from 'react-redux-firebase';

    class PhotosScreen extends Component {
      render() {
        return (
          <View>
            <Text> i plan the use this.props.images here </Text>
            {images && images.length ? <div> render your images here using this.props.images and images.map </div> : <p>No images</p>}
          </View>
        );
      }
    }

    const mapStateToProps = (state) => {

   
        return {
            images  : state.firestore.data.images, // reference the subcollection of the user
            userId  : state.firestore.auth.uid     // assuming the 'doc id' is the same as the user's uid
        }                                          
    }

    export default compose(
        firestoreConnect((props) => 

            if (!props.userId) return []                 // sync only if the userId is available (in this case, if they are authenticated)
            return [
                {
                   collection     : 'users',             // parent collection
                   doc            : props.userId,        // sub-document
                   subcollections : [
                          {collection : 'images'}        // sub-collection
                   ],
                   storeAs        : 'images'
                }
             ]
        }),
        connect(mapStateToProps),
    )(PhotosScreen)
于 2020-01-06T20:42:49.633 回答
2

在 1.x 中

const enhance = compose(
  connect(
    (state) => ({
      someKey: state.someData
    })
  ),
  firebaseConnect(
    (props, firebaseInstance) => [
      { path: `${props.someKey}/someData` }
    ]
  )
)

在 2.x 中

firebaseConnect(
  (props, store) => [
    { path: `${store.getState().someKey}/someData` }
  ]
)

请注意第二个参数如何从firebaseConnectv1变为 v2。firebaseInstancestore

这应该可以满足您的需求。

于 2019-02-16T19:41:00.510 回答