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:
How can I fill the value
field?
Issue Analytics
- State:
- Created 7 years ago
- Reactions:2
- Comments:5 (1 by maintainers)
Top 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 >
Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start Free
Top Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
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!
@annelorraineuy in theory it is possible, I was unfamiliar with Firebase at that moment