Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -188,6 +188,53 @@ data class Interaction(
*/
PinnedMessageStateEventClick("PinnedMessageStateEventClick"),

/**
* User clicked on the button to collapse the room list filters.
*/
RoomListFilterCollapse("RoomListFilterCollapse"),

/**
* User clicked on the button to expand the room list filters.
*/
RoomListFilterExpand("RoomListFilterExpand"),

/**
* User clicked on the button to filter favourites in the room list.
*/
RoomListFilterFavourites("RoomListFilterFavourites"),

/**
* User clicked on the button to filter invites in the room list.
*/
RoomListFilterInvites("RoomListFilterInvites"),

/**
* User clicked on the button to filter low priority messages in the
* room list.
*/
RoomListFilterLowPriority("RoomListFilterLowPriority"),

/**
* User clicked on the button to filter mentions in the room list.
*/
RoomListFilterMentions("RoomListFilterMentions"),

/**
* User clicked on the button to filter people in the room list.
*/
RoomListFilterPeople("RoomListFilterPeople"),

/**
* User clicked on the button to filter rooms in the room list.
*/
RoomListFilterRooms("RoomListFilterRooms"),

/**
* User clicked on the button to filter unread messages in the room
* list.
*/
RoomListFilterUnreads("RoomListFilterUnreads"),

/**
* User tapped the already selected space from the space list.
*/
Expand Down
10 changes: 10 additions & 0 deletions schemas/Interaction.json
Original file line number Diff line number Diff line change
Expand Up @@ -80,6 +80,16 @@
{"const": "PinnedMessageRoomInfoButton", "description": "User clicked on the Pinned messages menu item from the Room Info on Mobile and Element Web/Desktop." },
{"const": "PinnedMessageStateEventClick", "description": "User clicked on the Pinned messages state event in the timeline on Mobile and Element Web/Desktop." },

{"const": "RoomListFilterUnreads", "description": "User clicked on the button to filter unread messages in the room list." },
{"const": "RoomListFilterPeople", "description": "User clicked on the button to filter people in the room list." },
{"const": "RoomListFilterRooms", "description": "User clicked on the button to filter rooms in the room list." },
{"const": "RoomListFilterMentions", "description": "User clicked on the button to filter mentions in the room list." },
{"const": "RoomListFilterInvites", "description": "User clicked on the button to filter invites in the room list." },
{"const": "RoomListFilterFavourites", "description": "User clicked on the button to filter favourites in the room list." },
{"const": "RoomListFilterLowPriority", "description": "User clicked on the button to filter low priority messages in the room list." },
{"const": "RoomListFilterExpand", "description": "User clicked on the button to expand the room list filters." },
{"const": "RoomListFilterCollapse", "description": "User clicked on the button to collapse the room list filters." },

{"const": "SpacePanelSelectedSpace", "description": "User tapped the already selected space from the space list."},
{"const": "SpacePanelSwitchSpace", "description": "User tapped an unselected space from the space list -> space switching should occur."},
{"const": "SpacePanelSwitchSubSpace", "description": "User tapped an unselected sub space from the space list -> space switching should occur."},
Expand Down
18 changes: 18 additions & 0 deletions types/swift/Interaction.swift
Original file line number Diff line number Diff line change
Expand Up @@ -94,6 +94,24 @@ extension AnalyticsEvent {
case PinnedMessageRoomInfoButton = "PinnedMessageRoomInfoButton"
/// User clicked on the Pinned messages state event in the timeline on Mobile and Element Web/Desktop.
case PinnedMessageStateEventClick = "PinnedMessageStateEventClick"
/// User clicked on the button to collapse the room list filters.
case RoomListFilterCollapse = "RoomListFilterCollapse"
/// User clicked on the button to expand the room list filters.
case RoomListFilterExpand = "RoomListFilterExpand"
/// User clicked on the button to filter favourites in the room list.
case RoomListFilterFavourites = "RoomListFilterFavourites"
/// User clicked on the button to filter invites in the room list.
case RoomListFilterInvites = "RoomListFilterInvites"
/// User clicked on the button to filter low priority messages in the room list.
case RoomListFilterLowPriority = "RoomListFilterLowPriority"
/// User clicked on the button to filter mentions in the room list.
case RoomListFilterMentions = "RoomListFilterMentions"
/// User clicked on the button to filter people in the room list.
case RoomListFilterPeople = "RoomListFilterPeople"
/// User clicked on the button to filter rooms in the room list.
case RoomListFilterRooms = "RoomListFilterRooms"
/// User clicked on the button to filter unread messages in the room list.
case RoomListFilterUnreads = "RoomListFilterUnreads"
/// User tapped the already selected space from the space list.
case SpacePanelSelectedSpace = "SpacePanelSelectedSpace"
/// User tapped an unselected space from the space list -> space switching should occur.
Expand Down
Loading