-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathTonAuth.svelte
196 lines (180 loc) · 5.54 KB
/
TonAuth.svelte
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
<script lang="ts">
import { onMount } from "svelte";
import { useQueryClient } from "@tanstack/svelte-query";
import mixpanel from "mixpanel-browser";
import {
isDarkMode,
user,
triggerConnectWallet,
tonConnector,
} from "~/store";
import { nimbus } from "~/lib/network";
import { Toast } from "flowbite-svelte";
import { blur } from "svelte/transition";
import { v4 as uuidv4 } from "uuid";
import User from "~/assets/user.png";
import Ton from "~/assets/chains/ton.png";
const queryClient = useQueryClient();
let invitation = "";
let toastMsg = "";
let isSuccessToast = false;
let counter = 3;
let showToast = false;
const trigger = () => {
showToast = true;
counter = 3;
timeout();
};
const timeout = () => {
if (--counter > 0) return setTimeout(timeout, 1000);
showToast = false;
toastMsg = "";
isSuccessToast = false;
};
onMount(() => {
const urlParams = new URLSearchParams(window.location.search);
const invitationParams = urlParams.get("invitation");
if (invitationParams) {
invitation = invitationParams;
}
});
const handleTonAuth = async () => {
mixpanel.track("user_login_ton");
const uuid = uuidv4();
if ($tonConnector.connected) {
$tonConnector.disconnect();
}
handleGetNonce(uuid);
};
const handleGetNonce = async (id: string) => {
try {
const res = await nimbus.post("/users/nonce", {
publicAddress: id,
referrer: invitation.length !== 0 ? invitation : undefined,
});
if (res && res.data) {
const msg = `I am signing my one-time nonce: ${res.data.nonce}`;
$tonConnector.setConnectRequestParameters({
state: "ready",
value: { tonProof: msg },
});
$tonConnector.openModal();
$tonConnector.onStatusChange((wallet) => {
if (
wallet &&
wallet.connectItems?.tonProof &&
"proof" in wallet.connectItems.tonProof
) {
handleGetTonToken(wallet, id);
}
});
}
} catch (e) {
console.error("error: ", e);
}
};
const handleGetTonToken = async (data, id) => {
try {
const formatData = {
account: {
address: data?.account?.address,
chain: data?.account?.chain,
walletStateInit: data?.account?.walletStateInit,
},
connectItems: {
tonProof: {
name: data?.connectItems?.tonProof?.name,
proof: {
timestamp: data?.connectItems?.tonProof?.proof?.timestamp,
domain: {
lengthBytes:
data?.connectItems?.tonProof?.proof?.domain?.lengthBytes,
value: data?.connectItems?.tonProof?.proof?.domain?.value,
},
signature: data?.connectItems?.tonProof?.proof?.signature,
},
},
},
};
const res = await nimbus.post(`/auth/ton?loginId=${id}`, {
walletInfo: formatData,
});
if (res?.data?.result) {
triggerConnectWallet.update((n) => (n = false));
localStorage.removeItem("auth_token");
localStorage.setItem("ton_token", res?.data?.result);
user.update(
(n) =>
(n = {
picture: User,
})
);
toastMsg = "Login with Ton successfully!";
isSuccessToast = true;
trigger();
queryClient.invalidateQueries(["users-me"]);
queryClient.invalidateQueries(["list-address"]);
} else {
toastMsg = res?.error;
isSuccessToast = false;
trigger();
}
} catch (e) {
console.error("error: ", e);
}
};
</script>
<div
class={`flex items-center justify-center gap-2 text-white border cursor-pointer py-3 px-6 rounded-[12px] min-w-[250px] ${
$isDarkMode ? "border-white text-white" : "border-[#27326f] text-[#27326f]"
}`}
on:click={handleTonAuth}
>
<img src={Ton} class="h-[24px] w-auto" />
<div class="font-semibold text-[15px]">Login with Ton</div>
</div>
{#if showToast}
<div class="fixed top-3 right-3 w-full" style="z-index: 2147483648;">
<Toast
transition={blur}
params={{ amount: 10 }}
position="top-right"
color={isSuccessToast ? "green" : "red"}
bind:open={showToast}
>
<svelte:fragment slot="icon">
{#if isSuccessToast}
<svg
aria-hidden="true"
class="w-5 h-5"
fill="currentColor"
viewBox="0 0 20 20"
xmlns="http://www.w3.org/2000/svg"
><path
fill-rule="evenodd"
d="M16.707 5.293a1 1 0 010 1.414l-8 8a1 1 0 01-1.414 0l-4-4a1 1 0 011.414-1.414L8 12.586l7.293-7.293a1 1 0 011.414 0z"
clip-rule="evenodd"
/></svg
>
<span class="sr-only">Check icon</span>
{:else}
<svg
aria-hidden="true"
class="w-5 h-5"
fill="currentColor"
viewBox="0 0 20 20"
xmlns="http://www.w3.org/2000/svg"
><path
fill-rule="evenodd"
d="M4.293 4.293a1 1 0 011.414 0L10 8.586l4.293-4.293a1 1 0 111.414 1.414L11.414 10l4.293 4.293a1 1 0 01-1.414 1.414L10 11.414l-4.293 4.293a1 1 0 01-1.414-1.414L8.586 10 4.293 5.707a1 1 0 010-1.414z"
clip-rule="evenodd"
/></svg
>
<span class="sr-only">Error icon</span>
{/if}
</svelte:fragment>
{toastMsg}
</Toast>
</div>
{/if}
<style windi:preflights:global windi:safelist:global></style>