Skip to content
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

add WebHomeMiniAvatarUploadButton Interaction #57

Merged
merged 3 commits into from
May 9, 2022
Merged
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
1 change: 1 addition & 0 deletions schemas/Interaction.json
Original file line number Diff line number Diff line change
Expand Up @@ -44,6 +44,7 @@
{"const": "WebRoomListHeaderPlusMenuCreateChatItem", "description": "User clicked the create DM button in the + context menu of the room list header in Element Web/Desktop." },
{"const": "WebSpaceContextMenuHomeItem", "description": "User clicked the home button in the context menu of a space in Element Web/Desktop." },
{"const": "WebHomeExploreRoomsButton", "description": "User clicked the explore rooms button in the home page of Element Web/Desktop." },
{"const": "WebHomeMiniAvatarUploadButton", "description": "User clicked on the mini avatar uploader in the home page of Element Web/Desktop." },
{"const": "WebLeftPanelExploreRoomsButton", "description": "User clicked the explore rooms button next to the search field at the top of the left panel in Element Web/Desktop." },
{"const": "WebSpaceContextMenuExploreRoomsItem", "description": "User clicked the explore rooms button in the context menu of a space in Element Web/Desktop." },
{"const": "WebRoomListHeaderPlusMenuExploreRoomsItem", "description": "User clicked the explore rooms button in the + context menu of the room list header in Element Web/Desktop." },
Expand Down
6 changes: 6 additions & 0 deletions types/html/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -1379,6 +1379,12 @@ <h2>Interaction</h2>

</li>

<li>

<b>WebHomeMiniAvatarUploadButton:</b> User clicked on the mini avatar uploader in the home page of Element Web/Desktop.

</li>

<li>

<b>WebLeftPanelExploreRoomsButton:</b> User clicked the explore rooms button next to the search field at the top of the left panel in Element Web/Desktop.
Expand Down
6 changes: 6 additions & 0 deletions types/kotlin2/Interaction.kt
Original file line number Diff line number Diff line change
Expand Up @@ -105,6 +105,12 @@ data class Interaction(
*/
WebHomeExploreRoomsButton,

/**
* User clicked on the mini avatar uploader in the home page of Element
* Web/Desktop.
*/
WebHomeMiniAvatarUploadButton,

/**
* User clicked the explore rooms button next to the search field at the
* top of the left panel in Element Web/Desktop.
Expand Down
2 changes: 2 additions & 0 deletions types/swift/Interaction.swift
Original file line number Diff line number Diff line change
Expand Up @@ -62,6 +62,8 @@ extension AnalyticsEvent {
case WebHomeCreateRoomButton
/// User clicked the explore rooms button in the home page of Element Web/Desktop.
case WebHomeExploreRoomsButton
/// User clicked on the mini avatar uploader in the home page of Element Web/Desktop.
case WebHomeMiniAvatarUploadButton
/// User clicked the explore rooms button next to the search field at the top of the left panel in Element Web/Desktop.
case WebLeftPanelExploreRoomsButton
/// User interacted with pin to sidebar checkboxes in the quick settings menu of Element Web/Desktop.
Expand Down
1 change: 1 addition & 0 deletions types/typescript/Interaction.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -49,6 +49,7 @@ export interface Interaction {
| "WebRoomListHeaderPlusMenuCreateChatItem"
| "WebSpaceContextMenuHomeItem"
| "WebHomeExploreRoomsButton"
| "WebHomeMiniAvatarUploadButton"
| "WebLeftPanelExploreRoomsButton"
| "WebSpaceContextMenuExploreRoomsItem"
| "WebRoomListHeaderPlusMenuExploreRoomsItem"
Expand Down