From 9bac3cf33cf336292001befe8c12af2d74441e20 Mon Sep 17 00:00:00 2001 From: Sean O'Connor Date: Wed, 27 Aug 2025 13:22:38 +0200 Subject: [PATCH] Fix analytics naming and BibTeX syntax errors The changes fix a missing comma in the BibTeX file and updates analytics event names to better reflect user interactions ("View" -> "Click") --- public/publications.bib | 2 +- src/lib/analytics.ts | 6 +++--- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/public/publications.bib b/public/publications.bib index ee41d5c..2c68d22 100644 --- a/public/publications.bib +++ b/public/publications.bib @@ -6,7 +6,7 @@ address = {Eindhoven, The Netherlands}, abstract = {Human-robot interaction (HRI) research plays a pivotal role in shaping how robots communicate and collaborate with humans. However, conducting HRI studies can be challenging, particularly those employing the Wizard-of-Oz (WoZ) technique. WoZ user studies can have technical and methodological complexities that may render the results irreproducible. We propose to address these challenges with HRIStudio, a modular web-based platform designed to streamline the design, the execution, and the analysis of WoZ experiments. HRIStudio offers an intuitive interface for experiment creation, real-time control and monitoring during experimental runs, and comprehensive data logging and playback tools for analysis and reproducibility. By lowering technical barriers, promoting collaboration, and offering methodological guidelines, HRIStudio aims to make human-centered robotics research easier and empower researchers to develop scientifically rigorous user studies.}, url = {https://soconnor.dev/api/publications/ROMAN25_0574_FI.pdf}, - paperUrl = {/api/publications/ROMAN25_0574_FI.pdf} + paperUrl = {/api/publications/ROMAN25_0574_FI.pdf}, slidesUrl = {/api/publications/ROMAN25_0574_SLIDES.pdf} } diff --git a/src/lib/analytics.ts b/src/lib/analytics.ts index a73e44e..d74cb86 100644 --- a/src/lib/analytics.ts +++ b/src/lib/analytics.ts @@ -69,7 +69,7 @@ export function trackPdfView( pdfType: "paper" | "poster"; }, ) { - track("Publication PDF View", { + track("Publication PDF Click", { title: data.publicationTitle, type: data.publicationType, year: data.publicationYear.toString(), @@ -96,12 +96,12 @@ export function trackDoiClick( } /** - * Track slides views specifically + * Track slides clicks - user intent/engagement */ export function trackSlidesView( data: Omit, ) { - track("Publication Slides View", { + track("Publication Slides Click", { title: data.publicationTitle, type: data.publicationType, year: data.publicationYear.toString(),