Initial commit

Co-Authored-By: kotte <14197736+mrtamagotchi@users.noreply.github.com>
Co-Authored-By: mikaeltellhed <2311083+mikaeltellhed@users.noreply.github.com>
Co-Authored-By: Tore Knudsen <18231882+torekndsn@users.noreply.github.com>
Co-Authored-By: Michael Cartner <32543275+michaelcartner@users.noreply.github.com>
This commit is contained in:
Eric Tuvesson
2023-09-05 12:08:55 +02:00
commit 53f0d6320e
2704 changed files with 76354 additions and 0 deletions

View File

@@ -0,0 +1,33 @@
---
title: Google Analytics Root
hide_title: true
---
<##head##>
# Google Analytics Root
This node loads Google Analytics in your Noodl app. It _must_ be placed in your **Root Component** for the tracking to work properly. You can find your **Root Component** in the **Components** list in the sidebar, having a house icon beside it.
<div className="ndl-image-with-background l">
![](/library/modules/google-analytics/screenshot.png)
</div>
This node uses [Google Analytics 4](https://developers.google.com/analytics/devguides/collection/ga4) and requires a [Google Analytics Measurement ID](https://support.google.com/analytics/answer/9539598#find-G-ID).
<##head##>
## Inputs
| Data | Description |
| ------------------------------------------------ | ------------------------------------------------------------------------------------------------------------------------- |
| <span className="ndl-data">Measurement ID</span> | The [Google Analytics Measurement ID](https://support.google.com/analytics/answer/9539598#find-G-ID) to send the data to. |
| <span className="ndl-data">Allow Tracking</span> | Sets if tracking should be allowed. For GDPR reasons this is disabled by default. |
## Outputs
| Signal | Description |
| ----------------------------------------------------- | ---------------------------------------------------------------------------------------- |
| <span className="ndl-signal">Starting Tracking</span> | Sends a signal after the tracking code is activated, before it's initialised in the app. |

View File

@@ -0,0 +1,34 @@
---
title: Send Google Analytics Data
hide_title: true
---
<##head##>
# Send Google Analytics Data
This node is used to send custom data to Google Analytics. It works similarily to the [gtag](https://support.google.com/analytics/answer/11147304) function provided by Google.
<div className="ndl-image-with-background l">
![](/library/modules/google-analytics/screenshot.png)
</div>
<##head##>
## Inputs
| Data | Description |
| ---------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ |
| <span className="ndl-data">Gtag Tracking Data</span> | The data that should be sent to Google Analytics. <br/><br/>For the code `gtag("event", "search", {"term": "Noodl"})` you would send `"event", "search", {"term": "Noodl"}` to this input. |
| Signal | Description |
| -------------------------------------- | ------------------------------------------------------------------ |
| <span className="ndl-signal">Do</span> | Send a signal to this input to track the data in Google Analytics. |
## Outputs
| Signal | Description |
| --------------------------------------------- | ----------------------------------------------------------------------------------------------------------------- |
| <span className="ndl-signal">Data Sent</span> | Sends a signal when the data has been sent to Google Analytics. Useful for clearing user inputs after submission. |