File tree 2 files changed +29
-0
lines changed
2 files changed +29
-0
lines changed Original file line number Diff line number Diff line change @@ -10,12 +10,19 @@ export default class CampaignTabs extends Component {
10
10
@service notifications;
11
11
@service fileSaver;
12
12
@service session;
13
+ @service metrics;
13
14
14
15
@action
15
16
async exportData () {
16
17
try {
17
18
const token = this .session .data .authenticated .access_token ;
18
19
await this .fileSaver .save ({ url: this .args .campaign .urlToResult , token });
20
+ this .metrics .add ({
21
+ event : ' custom-event' ,
22
+ ' pix-event-category' : ' Campagnes' ,
23
+ ' pix-event-action' : " Cliquer sur le bouton d'export des résultats d'une campagne" ,
24
+ ' pix-event-name' : " Clic sur le bouton d'export" ,
25
+ });
19
26
} catch (err) {
20
27
this .notifications .sendError (this .intl .t (' api-error-messages.global' ));
21
28
}
Original file line number Diff line number Diff line change @@ -143,5 +143,27 @@ module('Integration | Component | Campaign::Header::Tabs', function (hooks) {
143
143
} ) ,
144
144
) ;
145
145
} ) ;
146
+
147
+ test ( 'it should push matomo event when user clicks on export button' , async function ( assert ) {
148
+ const add = sinon . stub ( ) ;
149
+
150
+ class MetricsStubService extends Service {
151
+ add = add ;
152
+ }
153
+ this . owner . register ( 'service:metrics' , MetricsStubService ) ;
154
+
155
+ const screen = await render ( hbs `<Campaign::Header::Tabs @campaign={{this.campaign}} />` ) ;
156
+
157
+ // when
158
+ await click ( screen . getByRole ( 'button' , { name : t ( 'pages.campaign.actions.export-results' ) } ) ) ;
159
+
160
+ sinon . assert . calledWithExactly ( add , {
161
+ event : 'custom-event' ,
162
+ 'pix-event-category' : 'Campagnes' ,
163
+ 'pix-event-action' : "Cliquer sur le bouton d'export des résultats d'une campagne" ,
164
+ 'pix-event-name' : "Clic sur le bouton d'export" ,
165
+ } ) ;
166
+ assert . ok ( true ) ;
167
+ } ) ;
146
168
} ) ;
147
169
} ) ;
You can’t perform that action at this time.
0 commit comments