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

feat: add connect wallet analytics event #231

Merged
merged 4 commits into from
Jul 4, 2024
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
16 changes: 10 additions & 6 deletions src/common/lib/hooks/usePrevious.ts
Original file line number Diff line number Diff line change
@@ -1,11 +1,15 @@
import { useEffect, useRef } from "react";
import { useState } from "react";

export const usePrevious = (value: any) => {
const ref = useRef();
useEffect(() => {
ref.current = value;
}, [value]);
return ref.current;
const [current, setCurrent] = useState(value);
const [previous, setPrevious] = useState(null);

if (value !== current) {
setPrevious(current);
setCurrent(value);
}

return previous;
};

export default usePrevious;
20 changes: 20 additions & 0 deletions src/common/lib/hooks/useValueHistory.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
import { useState } from "react";

export const useValueHistory = <T>(
value: T,
limit: number,
): [T, ...Array<T | undefined>] => {
const [values, setValues] = useState([
value,
...Array(limit - 1).map((v) => undefined),
]);
const current = values[0];

if (value !== current) {
setValues([value, ...values.slice(0, -1)]);
}

return values as [T, ...Array<T | undefined>];
};

export default useValueHistory;
2 changes: 2 additions & 0 deletions src/common/providers/AnalyticsProvider.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@ import { useCurrentSpaceIdentityPublicKey } from "@/common/lib/hooks/useCurrentS
import { useCurrentFid } from "@/common/lib/hooks/useCurrentFid";

export enum AnalyticsEvent {
CONNECT_WALLET = "Connect Wallet",
SIGN_UP = "Sign Up",
LINK_FID = "Link FID",
SAVE_SPACE_THEME = "Save Space Theme",
Expand All @@ -16,6 +17,7 @@ export enum AnalyticsEvent {
}

type AnalyticsEventProperties = {
[AnalyticsEvent.CONNECT_WALLET]: { hasNogs: boolean };
[AnalyticsEvent.SIGN_UP]: Record<string, never>;
[AnalyticsEvent.LINK_FID]: { fid: number };
[AnalyticsEvent.SAVE_SPACE_THEME]: Record<string, never>;
Expand Down
18 changes: 18 additions & 0 deletions src/common/providers/LoggedInStateProvider.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,11 @@ import { ALCHEMY_API } from "@/constants/urls";
import { AlchemyIsHolderOfContract } from "@/pages/api/signerRequests";
import axios from "axios";
import { NOGS_CONTRACT_ADDR } from "@/constants/nogs";
import useValueHistory from "@/common/lib/hooks/useValueHistory";
import {
analytics,
AnalyticsEvent,
} from "@/common/providers/AnalyticsProvider";

type LoggedInLayoutProps = { children: React.ReactNode };

Expand Down Expand Up @@ -91,6 +96,7 @@ const LoggedInStateProvider: React.FC<LoggedInLayoutProps> = ({ children }) => {
const { signMessage, ready: walletsReady } = useSignMessage();
const authenticatorManager = useAuthenticatorManager();
const logout = useLogout();
const previousSteps = useValueHistory<SetupStep>(currentStep, 4);

async function loadWallet() {
if (walletsReady && ready && authenticated && user) {
Expand All @@ -106,6 +112,18 @@ const LoggedInStateProvider: React.FC<LoggedInLayoutProps> = ({ children }) => {
}
}

useEffect(() => {
if (
previousSteps[1] === SetupStep.WALLET_CONNECTED &&
previousSteps[2] === SetupStep.SIGNED_IN &&
previousSteps[3] === SetupStep.NOT_SIGNED_IN
) {
analytics.track(AnalyticsEvent.CONNECT_WALLET, {
hasNogs: previousSteps[0] === SetupStep.TOKENS_FOUND,
});
}
}, [previousSteps]);

async function loadIdentity() {
if (walletsReady && ready && authenticated && user) {
if (isUndefined(getCurrentIdentity())) {
Expand Down