aboutsummaryrefslogtreecommitdiffstats
path: root/src/components/ui
diff options
context:
space:
mode:
authorLibravatar vantezzen <properly@protonmail.com>2019-09-07 15:50:39 +0200
committerLibravatar vantezzen <properly@protonmail.com>2019-09-07 15:50:39 +0200
commitca7153dd6aac2983b02db3fa78d8021e76fc466a (patch)
tree3912542559837afa696b7f0fa3e4b10aff931b48 /src/components/ui
parentMerge branch 'master' of https://github.com/meetfranz/franz into franz-5.3.0 (diff)
downloadferdium-app-ca7153dd6aac2983b02db3fa78d8021e76fc466a.tar.gz
ferdium-app-ca7153dd6aac2983b02db3fa78d8021e76fc466a.tar.zst
ferdium-app-ca7153dd6aac2983b02db3fa78d8021e76fc466a.zip
Remove analytics
Diffstat (limited to 'src/components/ui')
-rw-r--r--src/components/ui/ActivateTrialButton/index.js8
-rw-r--r--src/components/ui/UpgradeButton/index.js7
2 files changed, 2 insertions, 13 deletions
diff --git a/src/components/ui/ActivateTrialButton/index.js b/src/components/ui/ActivateTrialButton/index.js
index e0637da90..a9d9be75a 100644
--- a/src/components/ui/ActivateTrialButton/index.js
+++ b/src/components/ui/ActivateTrialButton/index.js
@@ -5,7 +5,6 @@ import { defineMessages, intlShape } from 'react-intl';
5import classnames from 'classnames'; 5import classnames from 'classnames';
6 6
7import { Button } from '@meetfranz/forms'; 7import { Button } from '@meetfranz/forms';
8import { gaEvent } from '../../../lib/analytics';
9 8
10import UserStore from '../../../stores/UserStore'; 9import UserStore from '../../../stores/UserStore';
11 10
@@ -63,7 +62,7 @@ class ActivateTrialButton extends Component {
63 }; 62 };
64 63
65 handleCTAClick() { 64 handleCTAClick() {
66 const { actions, stores, gaEventInfo } = this.props; 65 const { actions, stores } = this.props;
67 const { hadSubscription } = stores.user.data; 66 const { hadSubscription } = stores.user.data;
68 // const { defaultTrialPlan } = stores.features.features; 67 // const { defaultTrialPlan } = stores.features.features;
69 68
@@ -77,11 +76,6 @@ class ActivateTrialButton extends Component {
77 } 76 }
78 77
79 actions.ui.openSettings({ path: 'user' }); 78 actions.ui.openSettings({ path: 'user' });
80
81 if (gaEventInfo) {
82 const { category, event } = gaEventInfo;
83 gaEvent(category, event, label);
84 }
85 } 79 }
86 80
87 render() { 81 render() {
diff --git a/src/components/ui/UpgradeButton/index.js b/src/components/ui/UpgradeButton/index.js
index 73762f0bf..1b764bd90 100644
--- a/src/components/ui/UpgradeButton/index.js
+++ b/src/components/ui/UpgradeButton/index.js
@@ -4,7 +4,6 @@ import { inject, observer } from 'mobx-react';
4import { defineMessages, intlShape } from 'react-intl'; 4import { defineMessages, intlShape } from 'react-intl';
5 5
6import { Button } from '@meetfranz/forms'; 6import { Button } from '@meetfranz/forms';
7import { gaEvent } from '../../../lib/analytics';
8 7
9import UserStore from '../../../stores/UserStore'; 8import UserStore from '../../../stores/UserStore';
10import ActivateTrialButton from '../ActivateTrialButton'; 9import ActivateTrialButton from '../ActivateTrialButton';
@@ -41,13 +40,9 @@ class UpgradeButton extends Component {
41 }; 40 };
42 41
43 handleCTAClick() { 42 handleCTAClick() {
44 const { actions, gaEventInfo } = this.props; 43 const { actions } = this.props;
45 44
46 actions.ui.openSettings({ path: 'user' }); 45 actions.ui.openSettings({ path: 'user' });
47 if (gaEventInfo) {
48 const { category, event } = gaEventInfo;
49 gaEvent(category, event, 'Upgrade Account');
50 }
51 } 46 }
52 47
53 render() { 48 render() {