-
Notifications
You must be signed in to change notification settings - Fork 56
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
[FEATURE] Matomo - Envoyer les events liés à l'utilisation du Expand (toggle) (PIX-15774) #10889
base: dev
Are you sure you want to change the base?
Conversation
Une fois les applications déployées, elles seront accessibles via les liens suivants :
Les variables d'environnement seront accessibles via les liens suivants : |
9a2ba7a
to
4c6e4c6
Compare
f2b731a
to
10a0407
Compare
Co-authored-by: Eric Lim <[email protected]>
Co-authored-by: Diane Cordier <[email protected]>
10a0407
to
cc57b25
Compare
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Bravo d'avoir géré les cas "Ouverture" et "Fermeture", je ne pensais pas que c'était possible 👏🏻
export default class ModulixExpand extends Component { | ||
@action | ||
onExpandToggle(event) { | ||
const isOpen = event?.srcElement?.open; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
question: est-ce qu'il y a un cas où event
ou srcElement
peuvent être undefined
?
Si oui, l'évènement envoyé à Matomo sera une fermeture, est-ce vraiment ce qu'on veut ?
suggestion: si isOpen
peut être vraiment undefined
, cela signifie qu'on on peut ne pas avoir l'information, donc il faudrait gérer dans un troisième cas qui ne soit ni "Ouverture" ni "Fermeture" mais "Clic".
module('when click on Expand', function () { | ||
test('should call method onExpandToggle', async function (assert) { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
suggestion : de formulation orientée utilisateur + il faudrait tester aussi que quand on clique deux fois, ça appelle la méthode avec isOpen: false
module('when click on Expand', function () { | |
test('should call method onExpandToggle', async function (assert) { | |
module('when users opens Expand element', function () { | |
test('should call method onExpandToggle with isOpen set to true', async function (assert) { |
module('when user clicks on expand element', function () { | ||
test('should push metrics event', async function (assert) { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
suggestion : il faudrait tester aussi le cas où ça appelle la méthode avec "Fermeture"
module('when user clicks on expand element', function () { | |
test('should push metrics event', async function (assert) { | |
module('when user clicks expand element', function () { | |
module('when isOpen argument is true', function () { | |
test('should push metrics event with "Ouverture" event name', async function (assert) { | |
//… | |
}); | |
module('when isOpen argument is false', function () { | |
test('should push metrics event with "Fermeture" event name', async function (assert) { |
🎁 Proposition
Ajouter une fonction dans Passage pour appeler le service metrics et envoyer des informations à Matomo sur le click d'un Expand
🧦 Remarques
toggle
comme mis dans la doc de la balise detailssummary
sinon le contenu ne s'affiche pas.🎅 Pour tester (en local)