1
0
mirror of https://github.com/matrix-org/matrix-react-sdk.git synced 2025-11-03 00:33:22 +03:00

More posthog tracking around joining rooms and room search (#7807)

This commit is contained in:
Michael Telatynski
2022-02-17 18:03:27 +00:00
committed by GitHub
parent e997676ae2
commit 658590e5bc
59 changed files with 276 additions and 116 deletions

View File

@@ -350,8 +350,8 @@ export const Commands = [
event_id: eventId,
highlighted: true,
room_id: roomId,
_trigger: "SlashCommand",
_viaKeyboard: true,
metricsTrigger: "SlashCommand",
metricsViaKeyboard: true,
});
})());
}
@@ -615,8 +615,8 @@ export const Commands = [
action: Action.ViewRoom,
room_alias: roomAlias,
auto_join: true,
_trigger: "SlashCommand",
_viaKeyboard: true,
metricsTrigger: "SlashCommand",
metricsViaKeyboard: true,
});
return success();
} else if (params[0][0] === '!') {
@@ -627,8 +627,8 @@ export const Commands = [
room_id: roomId,
via_servers: viaServers, // for the rejoin button
auto_join: true,
_trigger: "SlashCommand",
_viaKeyboard: true,
metricsTrigger: "SlashCommand",
metricsViaKeyboard: true,
});
return success();
} else if (isPermalink) {
@@ -653,8 +653,8 @@ export const Commands = [
const dispatch: ViewRoomPayload = {
action: Action.ViewRoom,
auto_join: true,
_trigger: "SlashCommand",
_viaKeyboard: true,
metricsTrigger: "SlashCommand",
metricsViaKeyboard: true,
};
if (entity[0] === '!') dispatch["room_id"] = entity;
@@ -1155,8 +1155,8 @@ export const Commands = [
dis.dispatch<ViewRoomPayload>({
action: Action.ViewRoom,
room_id: roomId,
_trigger: "SlashCommand",
_viaKeyboard: true,
metricsTrigger: "SlashCommand",
metricsViaKeyboard: true,
});
})());
},
@@ -1179,8 +1179,8 @@ export const Commands = [
dis.dispatch<ViewRoomPayload>({
action: Action.ViewRoom,
room_id: roomId,
_trigger: "SlashCommand",
_viaKeyboard: true,
metricsTrigger: "SlashCommand",
metricsViaKeyboard: true,
});
if (msg) {
cli.sendTextMessage(roomId, msg);