How to use the react-redux-firebase.getVal function in react-redux-firebase

To help you get started, we’ve selected a few react-redux-firebase examples, based on popular ways it is used in public projects.

Secure your code as it's written. Use Snyk Code to scan source code in minutes - no build needed - and fix issues immediately.

github prescottprue / fireadmin / src / routes / Project / routes / Migration / enhancer.js View on Github external
connect(({ firebase: { data } }) => ({
    files: getVal(data, 'serviceAccounts/test')
  })),
  withHandlers({
github prescottprue / fireadmin / src / routes / Migration / enhancer.js View on Github external
connect(({ firebase: { data } }) => ({
    files: getVal(data, 'serviceAccounts/test')
  })),
  withStateHandlers(
github prescottprue / fireadmin / src / routes / Project / routes / Migration / components / MigrationPage / MigrationPage.enhancer.js View on Github external
connect(({ firebase, firestore: { data } }, { params }) => ({
    auth: firebase.auth,
    project: get(data, `projects.${params.projectId}`),
    serviceAccounts: getVal(
      firebase,
      `data/serviceAccounts/${params.projectId}`
    )
  })),
  withStateHandlers(