使用 react-redux-firebase 将组件连接到 redux 时选择 firestore 子集合

Choose firestore subcollection when connecting component to redux with react-redux-firebase

我正在使用 react-redux-firebasefireStoreConnect() 中间件 我的反应本机移动应用程序中的屏幕。在将组件连接到 redux store 时,我想指定我连接到的 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)

在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` }
  ]
)

请注意 firebaseConnect 中的第二个参数如何从 firebaseInstance 变为 store 从 v1 变为 v2。

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

Firestore(和所有 NoSQL 数据库)遵循交替的“(父) 集合/文档/集合/文档 ...”层次结构模式。要将 React 组件同步到父级 firestore 集合下的子集合和文档,您需要将 subcollection/subdocument 层次结构信息作为 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)