question-mark
Stuck on an issue?

Lightrun Answers was designed to reduce the constant googling that comes with debugging 3rd party libraries. It collects links to all the places you might be looking at while hunting down a tough bug.

And, if you’re still stuck at the end, we’re happy to hop on a call to see how we can help out.

How can I fill value field?

See original GitHub issue

_This might be a duplicate of https://github.com/evollu/react-native-firebase-analytics/issues/18_

I believe I am doing this right. I am trying to log all my redux actions like this:

function analytics (state = 0, action = {}) {
  const { type, ...rest } = action
  // ignore all the following events for analytics
  switch (type) {
    case types.__INIT__:
    case types.REHYDRATE:
    case types.router.PUSH:
    case types.router.REFRESH:
      return state
    // by default, log everything possible
    default:
      Analytics.logEvent(type, {'action': JSON.stringify(rest)})
      return true
  }
}

But this is how they end up on firebase: screen shot 2016-10-28 at 09 51 28

How can I fill the value field?

Issue Analytics

  • State:open
  • Created 7 years ago
  • Reactions:2
  • Comments:5 (1 by maintainers)

github_iconTop GitHub Comments

1reaction
evollucommented, Dec 1, 2016

I don’t know how to do it. there should be some place where you can drill down each event right? Perhaps ask firebase team? I want to do this too!

0reactions
jsdariocommented, Feb 20, 2017

@annelorraineuy in theory it is possible, I was unfamiliar with Firebase at that moment

Read more comments on GitHub >

github_iconTop Results From Across the Web

How to fill input field value from javascript id value?
Give id to your input field and then append value through JavaScript <div class=" ...
Read more >
10 - Fill-out Forms and Input fields
VALUE : The initial value for the field, or the value when checked for checkboxes and radio buttons. This attribute is required for...
Read more >
How to pre-fill complex fields in Advanced Forms - Hookturn
Learn how to pre-fill both simple and complex ACF form fields using Advanced Forms. We'll walk through both a repeater and a group...
Read more >
Tech Tip: How to Use URL Parameters to Pre-Fill Form Fields
This can all be done by linking to a specialized URL that includes all the information you want pre-filled in the form when...
Read more >
Automatically Populate Fields - Formidable Forms
You can autofill fields by retrieving submitted values from the current user, IP address, or entry ID.
Read more >

github_iconTop Related Medium Post

No results found

github_iconTop Related StackOverflow Question

No results found

github_iconTroubleshoot Live Code

Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start Free

github_iconTop Related Reddit Thread

No results found

github_iconTop Related Hackernoon Post

No results found

github_iconTop Related Tweet

No results found

github_iconTop Related Dev.to Post

No results found

github_iconTop Related Hashnode Post

No results found