mirror of
https://github.com/Dokploy/dokploy.git
synced 2026-09-14 11:06:15 +05:00
feat: track cloud sign_up event in dataLayer
Fires the sign_up dataLayer event already read by GTM for the three signup paths on the cloud version: email/password (register.tsx), GitHub/Google OAuth (via better-auth's newUserCallbackURL, distinct from callbackURL so returning-user logins aren't counted), and invitation acceptance. All gated behind isCloud, same as the rest of the analytics wiring.
This commit is contained in:
parent
d542967ae4
commit
d8b7c1ea5e
@ -13,6 +13,8 @@ export function SignInWithGithub() {
|
||||
try {
|
||||
const { error } = await authClient.signIn.social({
|
||||
provider: "github",
|
||||
callbackURL: "/dashboard/home",
|
||||
newUserCallbackURL: "/dashboard/home?signup=github",
|
||||
errorCallbackURL: "/",
|
||||
});
|
||||
if (error) {
|
||||
|
||||
@ -13,6 +13,8 @@ export function SignInWithGoogle() {
|
||||
try {
|
||||
const { error } = await authClient.signIn.social({
|
||||
provider: "google",
|
||||
callbackURL: "/dashboard/home",
|
||||
newUserCallbackURL: "/dashboard/home?signup=google",
|
||||
errorCallbackURL: "/",
|
||||
});
|
||||
if (error) {
|
||||
|
||||
@ -21,6 +21,7 @@ import {
|
||||
FormMessage,
|
||||
} from "@/components/ui/form";
|
||||
import { Input } from "@/components/ui/input";
|
||||
import { pushToDataLayer } from "@/lib/analytics";
|
||||
import { authClient } from "@/lib/auth-client";
|
||||
import { api } from "@/utils/api";
|
||||
import { useWhitelabelingPublic } from "@/utils/hooks/use-whitelabeling";
|
||||
@ -139,6 +140,9 @@ const Invitation = ({
|
||||
});
|
||||
|
||||
toast.success("Account created successfully");
|
||||
if (isCloud) {
|
||||
pushToDataLayer("sign_up", { method: "invitation" });
|
||||
}
|
||||
router.push("/dashboard/home");
|
||||
} catch {
|
||||
toast.error("An error occurred while creating your account");
|
||||
|
||||
@ -24,6 +24,7 @@ import {
|
||||
FormMessage,
|
||||
} from "@/components/ui/form";
|
||||
import { Input } from "@/components/ui/input";
|
||||
import { pushToDataLayer } from "@/lib/analytics";
|
||||
import { authClient } from "@/lib/auth-client";
|
||||
import { useWhitelabelingPublic } from "@/utils/hooks/use-whitelabeling";
|
||||
|
||||
@ -116,6 +117,7 @@ const Register = ({ isCloud }: Props) => {
|
||||
if (!isCloud) {
|
||||
router.push("/");
|
||||
} else {
|
||||
pushToDataLayer("sign_up", { method: "email" });
|
||||
setData(data);
|
||||
}
|
||||
}
|
||||
|
||||
Loading…
Reference in New Issue
Block a user