@frak-labs/components 0.0.26-beta.d2556d47 → 0.0.26-beta.eb3cff34

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (37) hide show
  1. package/cdn/Banner.Ws9o79lU.js +64 -0
  2. package/cdn/ButtonShare.BDS1fgma.js +1 -0
  3. package/cdn/ButtonWallet.Be1UyRm8.js +40 -0
  4. package/cdn/OpenInAppButton.Diqt07eo.js +1 -0
  5. package/cdn/PostPurchase.DqFhm-Jn.js +52 -0
  6. package/cdn/components.js +1 -1
  7. package/cdn/formatReward.CXxVsWN3.js +1 -0
  8. package/cdn/loader.js +3 -55
  9. package/cdn/sprinkles.css.ts.vanilla.BtFkD4B3.js +1175 -0
  10. package/cdn/useGlobalComponents.BRe8dKO7.js +1 -0
  11. package/cdn/useLightDomStyles.ZFa154u8.js +1 -0
  12. package/cdn/usePlacement.B7jMsQvP.js +58 -0
  13. package/cdn/useReward.qEKeySJG.js +1 -0
  14. package/cdn/useShareModal.B--64ELG.js +1 -0
  15. package/dist/GiftIcon-4sr9xXyq.js +1501 -0
  16. package/dist/banner.d.ts +116 -0
  17. package/dist/banner.js +431 -0
  18. package/dist/buttonShare.d.ts +3 -3
  19. package/dist/buttonShare.js +26 -63
  20. package/dist/buttonWallet.d.ts +2 -2
  21. package/dist/buttonWallet.js +3 -7
  22. package/dist/formatReward-Bub6Z6eY.js +33 -0
  23. package/dist/openInApp.d.ts +2 -2
  24. package/dist/openInApp.js +3 -9
  25. package/dist/postPurchase.d.ts +122 -0
  26. package/dist/postPurchase.js +1579 -0
  27. package/dist/useGlobalComponents-Cmfszr7v.js +21 -0
  28. package/dist/{useLightDomStyles-ZGaYUErZ.js → useLightDomStyles-hgYYZsTy.js} +4 -7
  29. package/dist/{usePlacement-D99UDsVs.js → usePlacement-LqYjZLX_.js} +20 -62
  30. package/dist/useReward-DU3_yP8Q.js +65 -0
  31. package/dist/useShareModal-DgEf5WWG.js +53 -0
  32. package/package.json +23 -9
  33. package/cdn/ButtonShare.Chxmap9H.js +0 -1
  34. package/cdn/ButtonWallet.Bgt7hfbh.js +0 -40
  35. package/cdn/OpenInAppButton.CGXLv0k_.js +0 -1
  36. package/cdn/jsxRuntime.module.feNUq6Nq.js +0 -58
  37. package/dist/useReward-DAkT-7wT.js +0 -48
@@ -0,0 +1,21 @@
1
+ import { sdkConfigStore } from "@frak-labs/core-sdk";
2
+ import { useEffect, useMemo, useState } from "preact/hooks";
3
+ //#region src/hooks/useGlobalComponents.ts
4
+ /**
5
+ * Subscribe to the global component defaults from the SDK config store.
6
+ * These serve as fallbacks when no placement-level override exists.
7
+ */
8
+ function useGlobalComponents() {
9
+ const [configVersion, setConfigVersion] = useState(0);
10
+ useEffect(() => {
11
+ const onConfig = (_e) => {
12
+ setConfigVersion((v) => v + 1);
13
+ };
14
+ window.addEventListener("frak:config", onConfig);
15
+ setConfigVersion((v) => v + 1);
16
+ return () => window.removeEventListener("frak:config", onConfig);
17
+ }, []);
18
+ return useMemo(() => sdkConfigStore.getConfig().components, [configVersion]);
19
+ }
20
+ //#endregion
21
+ export { useGlobalComponents as t };
@@ -1,6 +1,5 @@
1
- import { r as lightDomBaseCss } from "./usePlacement-D99UDsVs.js";
1
+ import { r as lightDomBaseCss } from "./usePlacement-LqYjZLX_.js";
2
2
  import { useEffect } from "preact/hooks";
3
-
4
3
  //#region src/utils/styleManager.ts
5
4
  function ensureStyle(id, css) {
6
5
  const existing = document.getElementById(id);
@@ -23,12 +22,11 @@ const styleManager = {
23
22
  injectBase,
24
23
  injectPlacement
25
24
  };
26
-
27
25
  //#endregion
28
26
  //#region src/hooks/useLightDomStyles.ts
29
- function useLightDomStyles(tag, placementId, placementCss) {
27
+ function useLightDomStyles(tag, placementId, placementCss, baseCss) {
30
28
  useEffect(() => {
31
- styleManager.injectBase(tag, lightDomBaseCss);
29
+ styleManager.injectBase(tag, baseCss ?? lightDomBaseCss);
32
30
  }, [tag]);
33
31
  useEffect(() => {
34
32
  if (!placementId || !placementCss) return;
@@ -39,6 +37,5 @@ function useLightDomStyles(tag, placementId, placementCss) {
39
37
  placementCss
40
38
  ]);
41
39
  }
42
-
43
40
  //#endregion
44
- export { useLightDomStyles as t };
41
+ export { useLightDomStyles as t };
@@ -1,10 +1,9 @@
1
1
  import register from "preact-custom-element";
2
2
  import * as coreSdkIndex from "@frak-labs/core-sdk";
3
- import { sdkConfigStore, setupClient } from "@frak-labs/core-sdk";
3
+ import { sdkConfigStore, setupClient, withCache } from "@frak-labs/core-sdk";
4
4
  import * as coreSdkActions from "@frak-labs/core-sdk/actions";
5
- import { displayEmbeddedWallet, referralInteraction } from "@frak-labs/core-sdk/actions";
5
+ import { displayEmbeddedWallet } from "@frak-labs/core-sdk/actions";
6
6
  import { useEffect, useMemo, useState } from "preact/hooks";
7
-
8
7
  //#region src/utils/embeddedWallet.ts
9
8
  async function openEmbeddedWallet(targetInteraction, placement) {
10
9
  if (!window.FrakSetup?.client) {
@@ -20,7 +19,6 @@ async function openEmbeddedWallet(targetInteraction, placement) {
20
19
  }
21
20
  } : modalWalletConfig, placement);
22
21
  }
23
-
24
22
  //#endregion
25
23
  //#region src/utils/safeVibrate.ts
26
24
  /**
@@ -30,14 +28,12 @@ function safeVibrate() {
30
28
  if ("vibrate" in navigator) navigator.vibrate(10);
31
29
  else console.log("Vibration not supported");
32
30
  }
33
-
34
31
  //#endregion
35
32
  //#region src/components/ButtonWallet/utils.ts
36
33
  function openWalletModal(targetInteraction, placement) {
37
34
  safeVibrate();
38
35
  openEmbeddedWallet(targetInteraction, placement);
39
36
  }
40
-
41
37
  //#endregion
42
38
  //#region src/utils/clientReady.ts
43
39
  const CUSTOM_EVENT_NAME = "frak:client";
@@ -60,74 +56,42 @@ function onClientReady(action, callback) {
60
56
  }
61
57
  (action === "add" ? window.addEventListener : window.removeEventListener)(CUSTOM_EVENT_NAME, callback, false);
62
58
  }
63
-
64
- //#endregion
65
- //#region src/utils/setup.ts
66
- /**
67
- * Setup the referral
68
- * @param client
69
- */
70
- async function setupReferral(client) {
71
- const referral = await referralInteraction(client);
72
- console.log("referral", referral);
73
- }
74
-
75
59
  //#endregion
76
60
  //#region src/utils/initFrakSdk.ts
77
61
  /**
78
62
  * Initializes the Frak SDK client and sets up necessary configurations.
79
- * This function handles the one-time setup of the Frak client and related features.
63
+ * Uses withCache for inflight dedup concurrent callers share the same promise.
64
+ * Failures are not cached, allowing retry on next call.
80
65
  *
81
66
  * @returns {Promise<void>}
82
67
  */
83
- async function initFrakSdk() {
68
+ function initFrakSdk() {
84
69
  window.FrakSetup.core = {
85
70
  ...coreSdkIndex,
86
71
  ...coreSdkActions
87
72
  };
88
- if (!preChecks()) return;
73
+ if (window.FrakSetup?.client) return Promise.resolve();
74
+ return withCache(() => doInit(), {
75
+ cacheKey: "frak-sdk-init",
76
+ cacheTime: Number.POSITIVE_INFINITY
77
+ }).catch(() => {});
78
+ }
79
+ /**
80
+ * Performs the actual SDK initialization.
81
+ * Throws on failure so withCache doesn't cache failed attempts.
82
+ */
83
+ async function doInit() {
84
+ if (!window.FrakSetup?.config) throw new Error("[Frak SDK] Configuration not found. Please ensure window.FrakSetup.config is set.");
89
85
  console.log("[Frak SDK] Starting initialization");
90
- if (!window.FrakSetup.config) {
91
- console.error("[Frak SDK] Configuration not found");
92
- window.frakSetupInProgress = false;
93
- return;
94
- }
95
86
  const client = await setupClient({ config: window.FrakSetup.config });
96
- if (!client) {
97
- console.error("[Frak SDK] Failed to create client");
98
- window.frakSetupInProgress = false;
99
- return;
100
- }
87
+ if (!client) throw new Error("[Frak SDK] Failed to create client");
101
88
  window.FrakSetup.client = client;
102
89
  console.log("[Frak SDK] Client initialized successfully");
103
90
  dispatchClientReadyEvent();
104
- setupReferral(client);
105
- window.frakSetupInProgress = false;
91
+ coreSdkActions.setupReferral(client);
106
92
  handleActionQueryParam();
107
93
  }
108
94
  /**
109
- * Pre-checks for the Frak SDK initialization
110
- * Sets frakSetupInProgress flag atomically to prevent race conditions
111
- */
112
- function preChecks() {
113
- if (window.frakSetupInProgress) {
114
- console.log("[Frak SDK] Initialization already in progress");
115
- return false;
116
- }
117
- window.frakSetupInProgress = true;
118
- if (window.FrakSetup?.client) {
119
- console.log("[Frak SDK] Client already initialized");
120
- window.frakSetupInProgress = false;
121
- return false;
122
- }
123
- if (!window.FrakSetup?.config) {
124
- console.error("[Frak SDK] Configuration not found. Please ensure window.FrakSetup.config is set.");
125
- window.frakSetupInProgress = false;
126
- return false;
127
- }
128
- return true;
129
- }
130
- /**
131
95
  * Check the query param contain params for an auto opening of the frak modal
132
96
  */
133
97
  function handleActionQueryParam() {
@@ -138,7 +102,6 @@ function handleActionQueryParam() {
138
102
  openWalletModal();
139
103
  }
140
104
  }
141
-
142
105
  //#endregion
143
106
  //#region src/utils/onDocumentReady.ts
144
107
  /**
@@ -149,7 +112,6 @@ function onDocumentReady(callback) {
149
112
  if (document.readyState === "complete" || document.readyState === "interactive") setTimeout(callback, 1);
150
113
  else document.addEventListener("DOMContentLoaded", callback);
151
114
  }
152
-
153
115
  //#endregion
154
116
  //#region src/utils/registerWebComponent.ts
155
117
  /**
@@ -166,7 +128,6 @@ function registerWebComponent(component, tagName, observedAttributes = [], optio
166
128
  if (!customElements.get(tagName)) register(component, tagName, observedAttributes, options);
167
129
  }
168
130
  }
169
-
170
131
  //#endregion
171
132
  //#region src/hooks/useClientReady.ts
172
133
  function useClientReady() {
@@ -202,7 +163,6 @@ function useClientReady() {
202
163
  isClientReady
203
164
  };
204
165
  }
205
-
206
166
  //#endregion
207
167
  //#region src/utils/sharedCss.ts
208
168
  const sharedCss = `
@@ -267,7 +227,6 @@ const lightDomBaseCss = `
267
227
  }
268
228
  }
269
229
  `;
270
-
271
230
  //#endregion
272
231
  //#region src/hooks/usePlacement.ts
273
232
  function getPlacement(id) {
@@ -285,6 +244,5 @@ function usePlacement(placementId) {
285
244
  }, []);
286
245
  return useMemo(() => placementId ? getPlacement(placementId) : void 0, [placementId, configVersion]);
287
246
  }
288
-
289
247
  //#endregion
290
- export { registerWebComponent as a, useClientReady as i, buildStyleContent as n, openWalletModal as o, lightDomBaseCss as r, openEmbeddedWallet as s, usePlacement as t };
248
+ export { registerWebComponent as a, useClientReady as i, buildStyleContent as n, openWalletModal as o, lightDomBaseCss as r, openEmbeddedWallet as s, usePlacement as t };
@@ -0,0 +1,65 @@
1
+ import { n as formatEstimatedReward } from "./formatReward-Bub6Z6eY.js";
2
+ import { getCurrencyAmountKey, getSupportedCurrency } from "@frak-labs/core-sdk";
3
+ import { getMerchantInformation } from "@frak-labs/core-sdk/actions";
4
+ import { useEffect, useState } from "preact/hooks";
5
+ //#region src/hooks/useReward.ts
6
+ /**
7
+ * Get the comparable fiat value of a reward for ranking purposes.
8
+ */
9
+ function getRewardValue(reward, key) {
10
+ switch (reward.payoutType) {
11
+ case "fixed": return reward.amount[key];
12
+ case "tiered": return reward.tiers.reduce((acc, tier) => Math.max(acc, tier.amount[key]), 0);
13
+ case "percentage": return 0;
14
+ }
15
+ }
16
+ /**
17
+ * Pick the best referrer reward from merchant info and format it.
18
+ * Returns `undefined` when no displayable reward is found.
19
+ */
20
+ function resolveBestReward({ rewards }, currency, targetInteraction) {
21
+ const referrerRewards = (targetInteraction ? rewards.filter((r) => r.interactionTypeKey === targetInteraction) : rewards).map((r) => r.referrer).filter((r) => r !== void 0);
22
+ if (referrerRewards.length === 0) return void 0;
23
+ const key = getCurrencyAmountKey(getSupportedCurrency(currency));
24
+ let bestReward = referrerRewards[0];
25
+ let bestValue = getRewardValue(bestReward, key);
26
+ for (let i = 1; i < referrerRewards.length; i++) {
27
+ const value = getRewardValue(referrerRewards[i], key);
28
+ if (value > bestValue) {
29
+ bestReward = referrerRewards[i];
30
+ bestValue = value;
31
+ }
32
+ }
33
+ if (bestValue <= 0) {
34
+ const percentageReward = referrerRewards.find((r) => r.payoutType === "percentage");
35
+ if (!percentageReward) return void 0;
36
+ bestReward = percentageReward;
37
+ }
38
+ return formatEstimatedReward(bestReward, currency);
39
+ }
40
+ /**
41
+ * Hook to fetch and format the best referrer reward for a given interaction type.
42
+ *
43
+ * Calls `getMerchantInformation`, picks the highest-value referrer reward
44
+ * across all matching campaigns, and returns it as a formatted string.
45
+ *
46
+ * @param shouldUseReward - Whether to fetch the reward at all
47
+ * @param targetInteraction - Optional filter by interaction type (e.g. "purchase")
48
+ * @returns Object containing the formatted reward string, or undefined if unavailable
49
+ */
50
+ function useReward(shouldUseReward, targetInteraction) {
51
+ const [reward, setReward] = useState(void 0);
52
+ useEffect(() => {
53
+ if (!shouldUseReward) return;
54
+ const client = window.FrakSetup?.client;
55
+ if (!client) return;
56
+ getMerchantInformation(client).then((merchantInfo) => {
57
+ const currency = client.config.metadata?.currency;
58
+ const formatted = resolveBestReward(merchantInfo, currency, targetInteraction);
59
+ if (formatted) setReward(formatted);
60
+ }).catch(() => {});
61
+ }, [shouldUseReward, targetInteraction]);
62
+ return { reward };
63
+ }
64
+ //#endregion
65
+ export { useReward as t };
@@ -0,0 +1,53 @@
1
+ import { DebugInfoGatherer, trackEvent } from "@frak-labs/core-sdk";
2
+ import { modalBuilder } from "@frak-labs/core-sdk/actions";
3
+ import { useCallback, useState } from "preact/hooks";
4
+ import { FrakRpcError, RpcErrorCodes } from "@frak-labs/frame-connector";
5
+ //#region src/components/ButtonShare/hooks/useShareModal.ts
6
+ /**
7
+ * Open the share modal
8
+ *
9
+ * @description
10
+ * This function will open the share modal, lazily creating a modal builder on demand.
11
+ */
12
+ function useShareModal(targetInteraction, placement, sharingLink) {
13
+ const [debugInfo, setDebugInfo] = useState(void 0);
14
+ const [isError, setIsError] = useState(false);
15
+ return {
16
+ handleShare: useCallback(async () => {
17
+ if (!window.FrakSetup?.client) {
18
+ console.error("Frak client not found");
19
+ setDebugInfo(DebugInfoGatherer.empty().formatDebugInfo("Frak client not found"));
20
+ setIsError(true);
21
+ return;
22
+ }
23
+ const builder = modalBuilder(window.FrakSetup.client, {});
24
+ try {
25
+ await builder.sharing(sharingLink ? { link: sharingLink } : {}).display((metadata) => ({
26
+ ...metadata,
27
+ targetInteraction
28
+ }), placement);
29
+ } catch (e) {
30
+ if (e instanceof FrakRpcError && e.code === RpcErrorCodes.clientAborted) {
31
+ console.debug("User aborted the modal");
32
+ return;
33
+ }
34
+ const debugInfo = window.FrakSetup.client.debugInfo.formatDebugInfo(e);
35
+ trackEvent(window.FrakSetup.client, "share_modal_error", {
36
+ error: e instanceof Object && "message" in e ? e.message : "Unknown error",
37
+ debugInfo
38
+ });
39
+ setDebugInfo(debugInfo);
40
+ setIsError(true);
41
+ console.error("Error while opening the modal", e);
42
+ }
43
+ }, [
44
+ targetInteraction,
45
+ placement,
46
+ sharingLink
47
+ ]),
48
+ isError,
49
+ debugInfo
50
+ };
51
+ }
52
+ //#endregion
53
+ export { useShareModal as t };
package/package.json CHANGED
@@ -11,7 +11,7 @@
11
11
  "url": "https://twitter.com/QNivelais"
12
12
  }
13
13
  ],
14
- "version": "0.0.26-beta.d2556d47",
14
+ "version": "0.0.26-beta.eb3cff34",
15
15
  "description": "Frak Wallet components, helping any person to interact with the Frak wallet.",
16
16
  "repository": {
17
17
  "url": "https://github.com/frak-id/wallet",
@@ -56,6 +56,16 @@
56
56
  "import": "./dist/openInApp.js",
57
57
  "types": "./dist/openInApp.d.ts"
58
58
  },
59
+ "./postPurchase": {
60
+ "development": "./src/components/PostPurchase/index.ts",
61
+ "import": "./dist/postPurchase.js",
62
+ "types": "./dist/postPurchase.d.ts"
63
+ },
64
+ "./banner": {
65
+ "development": "./src/components/Banner/index.ts",
66
+ "import": "./dist/banner.js",
67
+ "types": "./dist/banner.d.ts"
68
+ },
59
69
  "./cdn": {
60
70
  "import": "./cdn/components.js"
61
71
  },
@@ -76,13 +86,13 @@
76
86
  "publish": "echo 'Publishing components...'"
77
87
  },
78
88
  "dependencies": {
79
- "@frak-labs/core-sdk": "0.2.1-beta.d2556d47",
80
- "@frak-labs/frame-connector": "0.2.0-beta.d2556d47",
89
+ "@frak-labs/core-sdk": "0.2.1-beta.eb3cff34",
90
+ "@frak-labs/frame-connector": "0.2.0-beta.eb3cff34",
81
91
  "preact": "^10.29.0",
82
- "preact-custom-element": "^4.6.0"
92
+ "preact-custom-element": "^4.6.0",
93
+ "@frak-labs/design-system": "0.0.0"
83
94
  },
84
95
  "devDependencies": {
85
- "@frak-labs/dev-tooling": "0.0.0",
86
96
  "@frak-labs/test-foundation": "0.1.0",
87
97
  "@preact/preset-vite": "^2.10.4",
88
98
  "@rolldown/plugin-node-polyfills": "^1.0.3",
@@ -90,13 +100,17 @@
90
100
  "@testing-library/preact": "^3.2.4",
91
101
  "@testing-library/user-event": "^14.6.1",
92
102
  "@types/jsdom": "^28.0.0",
93
- "@types/node": "^24.10.13",
103
+ "@types/node": "^25.6.0",
94
104
  "@types/preact-custom-element": "^4.0.4",
105
+ "@vanilla-extract/css": "^1.20.1",
106
+ "@vanilla-extract/integration": "^8.0.10",
107
+ "@vanilla-extract/vite-plugin": "^5.2.1",
108
+ "@vanilla-extract/sprinkles": "^1.6.5",
95
109
  "@vitest/coverage-v8": "^4.1.0",
96
110
  "@vitest/ui": "^4.1.0",
97
111
  "jsdom": "^29.0.0",
98
- "tsdown": "^0.20.3",
99
- "typescript": "^5.9.3",
100
- "vitest": "^4.1.0"
112
+ "tsdown": "^0.21.8",
113
+ "typescript": "^6.0.2",
114
+ "vitest": "^4.1.4"
101
115
  }
102
116
  }
@@ -1 +0,0 @@
1
- import{_ as e,c as t,g as n,h as r,l as i,o as a,p as o,s,u as c}from"./loader.js";import{a as l,c as u,d,l as f,n as p,o as m,s as h,t as g,u as _}from"./jsxRuntime.module.feNUq6Nq.js";import{t as v}from"./ButtonWallet.Bgt7hfbh.js";function y(e,t){return!e||e.payoutType!==`fixed`?0:e.amount[t]}function b(e,t){return e.reduce((e,n)=>Math.max(e,y(n.referrer,t)),0)}async function x({targetInteraction:e}){let t=window.FrakSetup?.client;if(!t){console.warn(`Frak client not ready yet`);return}let{rewards:n}=await s(t),r=c(t.config.metadata?.currency),i=b(e?n.filter(t=>t.interactionTypeKey===e):n,r);if(!(i<=0))return o(Math.round(i),t.config.metadata?.currency)}function S(e,t){let[n,r]=h(void 0);return f(()=>{e&&x({targetInteraction:t}).then(e=>{e&&r(e)})},[e,t]),{reward:n}}function C(e={}){let{successDuration:t=2e3}=e,[n,r]=h(!1);return{copy:u(async e=>{try{if(navigator.clipboard&&window.isSecureContext)await navigator.clipboard.writeText(e),r(!0);else{let t=document.createElement(`textarea`);t.value=e,t.style.position=`fixed`,t.style.opacity=`0`,document.body.appendChild(t),t.focus(),t.select();try{document.execCommand(`copy`),r(!0)}catch(e){return console.error(`Failed to copy text:`,e),!1}finally{t.remove()}}return setTimeout(()=>{r(!1)},t),!0}catch(e){return console.error(`Failed to copy text:`,e),!1}},[t]),copied:n}}const w={errorContainer:{marginTop:`16px`,padding:`16px`,backgroundColor:`#FEE2E2`,border:`1px solid #FCA5A5`,borderRadius:`4px`,color:`#991B1B`},header:{display:`flex`,alignItems:`center`,gap:`8px`,marginBottom:`12px`},title:{margin:0,fontSize:`16px`,fontWeight:500},message:{fontSize:`14px`,lineHeight:`1.5`,margin:`0 0 12px 0`},link:{color:`#991B1B`,textDecoration:`underline`,textUnderlineOffset:`2px`},copyButton:{display:`inline-flex`,alignItems:`center`,gap:`8px`,marginBottom:`10px`,padding:`8px 12px`,backgroundColor:`white`,border:`1px solid #D1D5DB`,borderRadius:`4px`,color:`black`,fontSize:`14px`,fontWeight:500}};function T({debugInfo:e}){let[t,n]=h(!1);return g(`div`,{children:[g(`button`,{type:`button`,style:w.copyButton,onClick:()=>n(!t),children:`Ouvrir les informations`}),t&&g(`textarea`,{style:{display:`block`,width:`100%`,height:`200px`,fontSize:`12px`},children:e})]})}function E({debugInfo:e}){let{copied:t,copy:n}=C();return g(`div`,{style:w.errorContainer,children:[g(`div`,{style:w.header,children:g(`h3`,{style:w.title,children:`Oups ! Nous avons rencontré un petit problème`})}),g(`p`,{style:w.message,children:[`Impossible d'ouvrir le menu de partage pour le moment. Si le problème persiste, copiez les informations ci-dessous et collez-les dans votre mail à`,` `,g(`a`,{href:`mailto:help@frak-labs.com?subject=Debug`,style:w.link,children:`help@frak-labs.com`}),` `,g(`br`,{}),`Merci pour votre retour, nous traitons votre demande dans les plus brefs délais.`]}),g(`button`,{type:`button`,onClick:()=>n(e??``),style:w.copyButton,children:t?`Informations copiées !`:`Copier les informations de débogage`}),g(T,{debugInfo:e})]})}function D(a,o){let[s,c]=h(void 0),[l,d]=h(!1);return{handleShare:u(async()=>{if(!window.FrakSetup?.client){console.error(`Frak client not found`),c(i.empty().formatDebugInfo(`Frak client not found`)),d(!0);return}let s=t(window.FrakSetup.client,{});try{await s.sharing({}).display(e=>({...e,targetInteraction:a}),o)}catch(t){if(t instanceof e&&t.code===n.clientAborted){console.debug(`User aborted the modal`);return}let i=window.FrakSetup.client.debugInfo.formatDebugInfo(t);r(window.FrakSetup.client,`share_modal_error`,{error:t instanceof Object&&`message`in t?t.message:`Unknown error`,debugInfo:i}),c(i),d(!0),console.error(`Error while opening the modal`,t)}},[a,o]),isError:l,debugInfo:s}}function O({placement:e,text:t=`Share and earn!`,classname:n=``,useReward:i,noRewardText:o,targetInteraction:s,clickAction:c}){let f=p(e),h=f?.components?.buttonShare;v(`frak-button-share`,e,h?.css);let _=m(()=>f?.targetInteraction===void 0?s:f.targetInteraction,[f?.targetInteraction,s]),y=h?.text??t,b=h?.noRewardText??o,x=m(()=>h?.useReward??i===!0,[h?.useReward,i]),C=m(()=>h?.clickAction??c??`embedded-wallet`,[h?.clickAction,c]),{shouldRender:w,isHidden:T,isClientReady:O}=l(),{reward:k}=S(x&&O,_),{handleShare:A,isError:j,debugInfo:M}=D(_,e),N=m(()=>x?k?y.includes(`{REWARD}`)?y.replace(`{REWARD}`,k):`${y} ${k}`:b??y.replace(`{REWARD}`,``):y,[x,y,b,k]),P=u(async()=>{r(window.FrakSetup.client,`share_button_clicked`),C===`share-modal`?await A():a(_,e)},[C,A,_,e]);if(!w||T)return null;let F=[`button`,`button__fadeIn`,n].filter(Boolean).join(` `);return g(d,{children:[g(`button`,{type:`button`,disabled:!O,class:F,onClick:P,children:N}),j&&g(E,{debugInfo:M})]})}_(O,`frak-button-share`,[`text`,`placement`,`classname`,`clickAction`,`useReward`,`noRewardText`,`targetInteraction`],{shadow:!1});export{O as ButtonShare,S as t};
@@ -1,40 +0,0 @@
1
- import{a as e,h as t,t as n}from"./loader.js";import{a as r,d as i,i as a,l as o,n as s,o as c,r as l,s as u,t as d,u as f}from"./jsxRuntime.module.feNUq6Nq.js";import{t as p}from"./ButtonShare.Chxmap9H.js";function m(e,t,r){o(()=>{n.injectBase(e,a)},[e]),o(()=>{!t||!r||n.injectPlacement(e,t,r)},[e,t,r])}function h(e){return d(`svg`,{fill:`none`,height:`1em`,viewBox:`0 0 28 28`,width:`1em`,xmlns:`http://www.w3.org/2000/svg`,...e,children:[d(`title`,{children:`Gift icon`}),d(`path`,{d:`m23.1427 13.9999v11.4285h-18.2857v-11.4285m9.1429 11.4285v-17.14282m0 0h-5.1429c-.75776 0-1.48448-.30102-2.0203-.83684s-.83684-1.26255-.83684-2.02031.30102-1.48448.83684-2.0203 1.26254-.83684 2.0203-.83684c4 0 5.1429 5.71429 5.1429 5.71429zm0 0h5.1428c.7578 0 1.4845-.30102 2.0203-.83684s.8369-1.26255.8369-2.02031-.3011-1.48448-.8369-2.0203-1.2625-.83684-2.0203-.83684c-4 0-5.1428 5.71429-5.1428 5.71429zm-11.42861 0h22.85711v5.71432h-22.85711z`,stroke:`#fff`,"stroke-linecap":`round`,"stroke-linejoin":`round`})]})}function g({placement:n,classname:a=``,useReward:f,targetInteraction:m}){let g=s(n),_=c(()=>g?.targetInteraction===void 0?m:g.targetInteraction,[g?.targetInteraction,m]),v=c(()=>f===!0,[f]),{shouldRender:y,isHidden:b,isClientReady:x}=r(),{reward:S}=p(v&&x,_),[C,w]=u(`right`);if(o(()=>{let e=g?.components?.buttonWallet?.position,t=window.FrakSetup?.modalWalletConfig?.metadata?.position;w(e??t??`right`)},[g?.components?.buttonWallet?.position]),!y||b)return null;let T=[`button`,`button__fadeIn`,C===`left`?`button__left`:`button__right`,a].filter(Boolean).join(` `);return d(i,{children:[d(`style`,{children:l(`
2
- .button {
3
- all: unset;
4
- position: fixed;
5
- bottom: 20px;
6
- z-index: 2000000;
7
- display: flex;
8
- justify-content: center;
9
- align-items: center;
10
- background-color: #3e557e;
11
- width: 45px;
12
- height: 45px;
13
- border-radius: 50%;
14
- cursor: pointer;
15
- text-align: center;
16
- font-size: 24px;
17
- }
18
-
19
- .button__left {
20
- left: 20px;
21
- }
22
-
23
- .button__right {
24
- right: 20px;
25
- }
26
-
27
- .reward {
28
- position: absolute;
29
- top: -4px;
30
- right: 27px;
31
- padding: 2px 3px;
32
- border-radius: 5px;
33
- background: #ff3f3f;
34
- font-size: 9px;
35
- color: #fff;
36
- font-weight: 600;
37
- white-space: nowrap;
38
- line-height: 9px;
39
- }
40
- `,g?.components?.buttonWallet?.css)}),d(`button`,{type:`button`,"aria-label":`Open wallet`,part:`button`,disabled:!x,class:T,onClick:()=>{t(window.FrakSetup.client,`wallet_button_clicked`),e(_,n)},children:[d(h,{}),S&&d(`span`,{class:`reward`,children:S})]})]})}f(g,`frak-button-wallet`,[`placement`,`classname`,`useReward`,`targetInteraction`],{shadow:!0});export{g as ButtonWallet,m as t};
@@ -1 +0,0 @@
1
- import{d as e,f as t,h as n}from"./loader.js";import{a as r,n as i,o as a,t as o,u as s}from"./jsxRuntime.module.feNUq6Nq.js";import{t as c}from"./ButtonWallet.Bgt7hfbh.js";function l(){return typeof navigator>`u`?!1:!!(/iPhone|iPad|iPod|Android|webOS|BlackBerry|IEMobile|Opera Mini/i.test(navigator.userAgent)||/Macintosh/i.test(navigator.userAgent)&&navigator.maxTouchPoints>1)}function u(){return{isMobile:a(()=>l(),[])}}function d(r=`wallet`){let i=window.FrakSetup?.client;i&&n(i,`open_in_app_clicked`),t(`${e}${r}`,{onFallback:()=>{i&&n(i,`app_not_installed`)}})}function f({placement:e,text:t=`Open in App`,classname:n=``}){let a=i(e),{shouldRender:s,isHidden:l,isClientReady:f}=r(),{isMobile:p}=u();c(`frak-open-in-app`,e,a?.components?.openInApp?.css);let m=a?.components?.openInApp?.text??t;if(!p||!s||l)return null;let h=()=>{d()},g=[`button`,`button__fadeIn`,n].filter(Boolean).join(` `);return o(`button`,{type:`button`,"aria-label":`Open in Frak Wallet app`,disabled:!f,class:g,onClick:h,children:m})}s(f,`frak-open-in-app`,[`text`,`placement`,`classname`],{shadow:!1});export{f as OpenInAppButton};
@@ -1,58 +0,0 @@
1
- import{i as e,m as t,n,r}from"./loader.js";var i,a,o,s,c,l,u,d,f,p,m,h={},g=[],_=/acit|ex(?:s|g|n|p|$)|rph|grid|ows|mnc|ntw|ine[ch]|zoo|^ord|itera/i,v=Array.isArray;function y(e,t){for(var n in t)e[n]=t[n];return e}function b(e){e&&e.parentNode&&e.parentNode.removeChild(e)}function x(e,t,n){var r,a,o,s={};for(o in t)o==`key`?r=t[o]:o==`ref`?a=t[o]:s[o]=t[o];if(arguments.length>2&&(s.children=arguments.length>3?i.call(arguments,2):n),typeof e==`function`&&e.defaultProps!=null)for(o in e.defaultProps)s[o]===void 0&&(s[o]=e.defaultProps[o]);return S(e,s,r,a,null)}function S(e,t,n,r,i){var s={type:e,props:t,key:n,ref:r,__k:null,__:null,__b:0,__e:null,__c:null,constructor:void 0,__v:i??++o,__i:-1,__u:0};return i==null&&a.vnode!=null&&a.vnode(s),s}function C(e){return e.children}function w(e,t){this.props=e,this.context=t}function T(e,t){if(t==null)return e.__?T(e.__,e.__i+1):null;for(var n;t<e.__k.length;t++)if((n=e.__k[t])!=null&&n.__e!=null)return n.__e;return typeof e.type==`function`?T(e):null}function E(e){if(e.__P&&e.__d){var t=e.__v,n=t.__e,r=[],i=[],o=y({},t);o.__v=t.__v+1,a.vnode&&a.vnode(o),P(e.__P,o,t,e.__n,e.__P.namespaceURI,32&t.__u?[n]:null,r,n??T(t),!!(32&t.__u),i),o.__v=t.__v,o.__.__k[o.__i]=o,I(r,o,i),t.__e=t.__=null,o.__e!=n&&D(o)}}function D(e){if((e=e.__)!=null&&e.__c!=null)return e.__e=e.__c.base=null,e.__k.some(function(t){if(t!=null&&t.__e!=null)return e.__e=e.__c.base=t.__e}),D(e)}function O(e){(!e.__d&&(e.__d=!0)&&s.push(e)&&!k.__r++||c!=a.debounceRendering)&&((c=a.debounceRendering)||l)(k)}function k(){try{for(var e,t=1;s.length;)s.length>t&&s.sort(u),e=s.shift(),t=s.length,E(e)}finally{s.length=k.__r=0}}function ee(e,t,n,r,i,a,o,s,c,l,u){var d,f,p,m,_,v,y,b=r&&r.__k||g,x=t.length;for(c=A(n,t,b,c,x),d=0;d<x;d++)(p=n.__k[d])!=null&&(f=p.__i!=-1&&b[p.__i]||h,p.__i=d,v=P(e,p,f,i,a,o,s,c,l,u),m=p.__e,p.ref&&f.ref!=p.ref&&(f.ref&&L(f.ref,null,p),u.push(p.ref,p.__c||m,p)),_==null&&m!=null&&(_=m),(y=!!(4&p.__u))||f.__k===p.__k?c=j(p,c,e,y):typeof p.type==`function`&&v!==void 0?c=v:m&&(c=m.nextSibling),p.__u&=-7);return n.__e=_,c}function A(e,t,n,r,i){var a,o,s,c,l,u=n.length,d=u,f=0;for(e.__k=Array(i),a=0;a<i;a++)(o=t[a])!=null&&typeof o!=`boolean`&&typeof o!=`function`?(typeof o==`string`||typeof o==`number`||typeof o==`bigint`||o.constructor==String?o=e.__k[a]=S(null,o,null,null,null):v(o)?o=e.__k[a]=S(C,{children:o},null,null,null):o.constructor===void 0&&o.__b>0?o=e.__k[a]=S(o.type,o.props,o.key,o.ref?o.ref:null,o.__v):e.__k[a]=o,c=a+f,o.__=e,o.__b=e.__b+1,s=null,(l=o.__i=M(o,n,c,d))!=-1&&(d--,(s=n[l])&&(s.__u|=2)),s==null||s.__v==null?(l==-1&&(i>u?f--:i<u&&f++),typeof o.type!=`function`&&(o.__u|=4)):l!=c&&(l==c-1?f--:l==c+1?f++:(l>c?f--:f++,o.__u|=4))):e.__k[a]=null;if(d)for(a=0;a<u;a++)(s=n[a])!=null&&!(2&s.__u)&&(s.__e==r&&(r=T(s)),ae(s,s));return r}function j(e,t,n,r){var i,a;if(typeof e.type==`function`){for(i=e.__k,a=0;i&&a<i.length;a++)i[a]&&(i[a].__=e,t=j(i[a],t,n,r));return t}e.__e!=t&&(r&&(t&&e.type&&!t.parentNode&&(t=T(e)),n.insertBefore(e.__e,t||null)),t=e.__e);do t&&=t.nextSibling;while(t!=null&&t.nodeType==8);return t}function M(e,t,n,r){var i,a,o,s=e.key,c=e.type,l=t[n],u=l!=null&&(2&l.__u)==0;if(l===null&&s==null||u&&s==l.key&&c==l.type)return n;if(r>(u?1:0)){for(i=n-1,a=n+1;i>=0||a<t.length;)if((l=t[o=i>=0?i--:a++])!=null&&!(2&l.__u)&&s==l.key&&c==l.type)return o}return-1}function te(e,t,n){t[0]==`-`?e.setProperty(t,n??``):e[t]=n==null?``:typeof n!=`number`||_.test(t)?n:n+`px`}function N(e,t,n,r,i){var a,o;n:if(t==`style`)if(typeof n==`string`)e.style.cssText=n;else{if(typeof r==`string`&&(e.style.cssText=r=``),r)for(t in r)n&&t in n||te(e.style,t,``);if(n)for(t in n)r&&n[t]==r[t]||te(e.style,t,n[t])}else if(t[0]==`o`&&t[1]==`n`)a=t!=(t=t.replace(d,`$1`)),o=t.toLowerCase(),t=o in e||t==`onFocusOut`||t==`onFocusIn`?o.slice(2):t.slice(2),e.l||={},e.l[t+a]=n,n?r?n.u=r.u:(n.u=f,e.addEventListener(t,a?m:p,a)):e.removeEventListener(t,a?m:p,a);else{if(i==`http://www.w3.org/2000/svg`)t=t.replace(/xlink(H|:h)/,`h`).replace(/sName$/,`s`);else if(t!=`width`&&t!=`height`&&t!=`href`&&t!=`list`&&t!=`form`&&t!=`tabIndex`&&t!=`download`&&t!=`rowSpan`&&t!=`colSpan`&&t!=`role`&&t!=`popover`&&t in e)try{e[t]=n??``;break n}catch{}typeof n==`function`||(n==null||!1===n&&t[4]!=`-`?e.removeAttribute(t):e.setAttribute(t,t==`popover`&&n==1?``:n))}}function ne(e){return function(t){if(this.l){var n=this.l[t.type+e];if(t.t==null)t.t=f++;else if(t.t<n.u)return;return n(a.event?a.event(t):t)}}}function P(e,t,n,r,i,o,s,c,l,u){var d,f,p,m,h,_,x,S,T,E,D,O,k,A,j,M=t.type;if(t.constructor!==void 0)return null;128&n.__u&&(l=!!(32&n.__u),o=[c=t.__e=n.__e]),(d=a.__b)&&d(t);n:if(typeof M==`function`)try{if(S=t.props,T=M.prototype&&M.prototype.render,E=(d=M.contextType)&&r[d.__c],D=d?E?E.props.value:d.__:r,n.__c?x=(f=t.__c=n.__c).__=f.__E:(T?t.__c=f=new M(S,D):(t.__c=f=new w(S,D),f.constructor=M,f.render=oe),E&&E.sub(f),f.state||={},f.__n=r,p=f.__d=!0,f.__h=[],f._sb=[]),T&&f.__s==null&&(f.__s=f.state),T&&M.getDerivedStateFromProps!=null&&(f.__s==f.state&&(f.__s=y({},f.__s)),y(f.__s,M.getDerivedStateFromProps(S,f.__s))),m=f.props,h=f.state,f.__v=t,p)T&&M.getDerivedStateFromProps==null&&f.componentWillMount!=null&&f.componentWillMount(),T&&f.componentDidMount!=null&&f.__h.push(f.componentDidMount);else{if(T&&M.getDerivedStateFromProps==null&&S!==m&&f.componentWillReceiveProps!=null&&f.componentWillReceiveProps(S,D),t.__v==n.__v||!f.__e&&f.shouldComponentUpdate!=null&&!1===f.shouldComponentUpdate(S,f.__s,D)){t.__v!=n.__v&&(f.props=S,f.state=f.__s,f.__d=!1),t.__e=n.__e,t.__k=n.__k,t.__k.some(function(e){e&&(e.__=t)}),g.push.apply(f.__h,f._sb),f._sb=[],f.__h.length&&s.push(f);break n}f.componentWillUpdate!=null&&f.componentWillUpdate(S,f.__s,D),T&&f.componentDidUpdate!=null&&f.__h.push(function(){f.componentDidUpdate(m,h,_)})}if(f.context=D,f.props=S,f.__P=e,f.__e=!1,O=a.__r,k=0,T)f.state=f.__s,f.__d=!1,O&&O(t),d=f.render(f.props,f.state,f.context),g.push.apply(f.__h,f._sb),f._sb=[];else do f.__d=!1,O&&O(t),d=f.render(f.props,f.state,f.context),f.state=f.__s;while(f.__d&&++k<25);f.state=f.__s,f.getChildContext!=null&&(r=y(y({},r),f.getChildContext())),T&&!p&&f.getSnapshotBeforeUpdate!=null&&(_=f.getSnapshotBeforeUpdate(m,h)),A=d!=null&&d.type===C&&d.key==null?re(d.props.children):d,c=ee(e,v(A)?A:[A],t,n,r,i,o,s,c,l,u),f.base=t.__e,t.__u&=-161,f.__h.length&&s.push(f),x&&(f.__E=f.__=null)}catch(e){if(t.__v=null,l||o!=null)if(e.then){for(t.__u|=l?160:128;c&&c.nodeType==8&&c.nextSibling;)c=c.nextSibling;o[o.indexOf(c)]=null,t.__e=c}else{for(j=o.length;j--;)b(o[j]);F(t)}else t.__e=n.__e,t.__k=n.__k,e.then||F(t);a.__e(e,t,n)}else o==null&&t.__v==n.__v?(t.__k=n.__k,t.__e=n.__e):c=t.__e=ie(n.__e,t,n,r,i,o,s,l,u);return(d=a.diffed)&&d(t),128&t.__u?void 0:c}function F(e){e&&(e.__c&&(e.__c.__e=!0),e.__k&&e.__k.some(F))}function I(e,t,n){for(var r=0;r<n.length;r++)L(n[r],n[++r],n[++r]);a.__c&&a.__c(t,e),e.some(function(t){try{e=t.__h,t.__h=[],e.some(function(e){e.call(t)})}catch(e){a.__e(e,t.__v)}})}function re(e){return typeof e!=`object`||!e||e.__b>0?e:v(e)?e.map(re):y({},e)}function ie(e,t,n,r,o,s,c,l,u){var d,f,p,m,g,_,y,x=n.props||h,S=t.props,C=t.type;if(C==`svg`?o=`http://www.w3.org/2000/svg`:C==`math`?o=`http://www.w3.org/1998/Math/MathML`:o||=`http://www.w3.org/1999/xhtml`,s!=null){for(d=0;d<s.length;d++)if((g=s[d])&&`setAttribute`in g==!!C&&(C?g.localName==C:g.nodeType==3)){e=g,s[d]=null;break}}if(e==null){if(C==null)return document.createTextNode(S);e=document.createElementNS(o,C,S.is&&S),l&&=(a.__m&&a.__m(t,s),!1),s=null}if(C==null)x===S||l&&e.data==S||(e.data=S);else{if(s&&=i.call(e.childNodes),!l&&s!=null)for(x={},d=0;d<e.attributes.length;d++)x[(g=e.attributes[d]).name]=g.value;for(d in x)g=x[d],d==`dangerouslySetInnerHTML`?p=g:d==`children`||d in S||d==`value`&&`defaultValue`in S||d==`checked`&&`defaultChecked`in S||N(e,d,null,g,o);for(d in S)g=S[d],d==`children`?m=g:d==`dangerouslySetInnerHTML`?f=g:d==`value`?_=g:d==`checked`?y=g:l&&typeof g!=`function`||x[d]===g||N(e,d,g,x[d],o);if(f)l||p&&(f.__html==p.__html||f.__html==e.innerHTML)||(e.innerHTML=f.__html),t.__k=[];else if(p&&(e.innerHTML=``),ee(t.type==`template`?e.content:e,v(m)?m:[m],t,n,r,C==`foreignObject`?`http://www.w3.org/1999/xhtml`:o,s,c,s?s[0]:n.__k&&T(n,0),l,u),s!=null)for(d=s.length;d--;)b(s[d]);l||(d=`value`,C==`progress`&&_==null?e.removeAttribute(`value`):_!=null&&(_!==e[d]||C==`progress`&&!_||C==`option`&&_!=x[d])&&N(e,d,_,x[d],o),d=`checked`,y!=null&&y!=e[d]&&N(e,d,y,x[d],o))}return e}function L(e,t,n){try{if(typeof e==`function`){var r=typeof e.__u==`function`;r&&e.__u(),r&&t==null||(e.__u=e(t))}else e.current=t}catch(e){a.__e(e,n)}}function ae(e,t,n){var r,i;if(a.unmount&&a.unmount(e),(r=e.ref)&&(r.current&&r.current!=e.__e||L(r,null,t)),(r=e.__c)!=null){if(r.componentWillUnmount)try{r.componentWillUnmount()}catch(e){a.__e(e,t)}r.base=r.__P=null}if(r=e.__k)for(i=0;i<r.length;i++)r[i]&&ae(r[i],t,n||typeof e.type!=`function`);n||b(e.__e),e.__c=e.__=e.__e=void 0}function oe(e,t,n){return this.constructor(e,n)}function R(e,t,n){var r,o,s,c;t==document&&(t=document.documentElement),a.__&&a.__(e,t),o=(r=typeof n==`function`)?null:n&&n.__k||t.__k,s=[],c=[],P(t,e=(!r&&n||t).__k=x(C,null,[e]),o||h,h,t.namespaceURI,!r&&n?[n]:o?null:t.firstChild?i.call(t.childNodes):null,s,!r&&n?n:o?o.__e:t.firstChild,r,c),I(s,e,c)}function se(e,t){R(e,t,se)}function ce(e,t,n){var r,a,o,s,c=y({},e.props);for(o in e.type&&e.type.defaultProps&&(s=e.type.defaultProps),t)o==`key`?r=t[o]:o==`ref`?a=t[o]:c[o]=t[o]===void 0&&s!=null?s[o]:t[o];return arguments.length>2&&(c.children=arguments.length>3?i.call(arguments,2):n),S(e.type,c,r||e.key,a||e.ref,null)}i=g.slice,a={__e:function(e,t,n,r){for(var i,a,o;t=t.__;)if((i=t.__c)&&!i.__)try{if((a=i.constructor)&&a.getDerivedStateFromError!=null&&(i.setState(a.getDerivedStateFromError(e)),o=i.__d),i.componentDidCatch!=null&&(i.componentDidCatch(e,r||{}),o=i.__d),o)return i.__E=i}catch(t){e=t}throw e}},o=0,w.prototype.setState=function(e,t){var n=this.__s!=null&&this.__s!=this.state?this.__s:this.__s=y({},this.state);typeof e==`function`&&(e=e(y({},n),this.props)),e&&y(n,e),e!=null&&this.__v&&(t&&this._sb.push(t),O(this))},w.prototype.forceUpdate=function(e){this.__v&&(this.__e=!0,e&&this.__h.push(e),O(this))},w.prototype.render=C,s=[],l=typeof Promise==`function`?Promise.prototype.then.bind(Promise.resolve()):setTimeout,u=function(e,t){return e.__v.__b-t.__v.__b},k.__r=0,d=/(PointerCapture)$|Capture$/i,f=0,p=ne(!1),m=ne(!0);function z(){return z=Object.assign?Object.assign.bind():function(e){for(var t=1;t<arguments.length;t++){var n=arguments[t];for(var r in n)Object.prototype.hasOwnProperty.call(n,r)&&(e[r]=n[r])}return e},z.apply(this,arguments)}function le(e,t){if(e==null)return{};var n,r,i={},a=Object.keys(e);for(r=0;r<a.length;r++)t.indexOf(n=a[r])>=0||(i[n]=e[n]);return i}var ue=[`context`,`children`],de=[`useFragment`];function fe(e,t,n,r){function i(){var t,n=Reflect.construct(HTMLElement,[],i);return n._vdomComponent=e,r&&r.shadow?(n._root=n.attachShadow({mode:r.mode||`open`,serializable:(t=r.serializable)!=null&&t}),r.adoptedStyleSheets&&(n._root.adoptedStyleSheets=r.adoptedStyleSheets)):n._root=n,n}return(i.prototype=Object.create(HTMLElement.prototype)).constructor=i,i.prototype.connectedCallback=function(){me.call(this,r)},i.prototype.attributeChangedCallback=he,i.prototype.disconnectedCallback=ge,n=n||e.observedAttributes||Object.keys(e.propTypes||{}),i.observedAttributes=n,e.formAssociated&&(i.formAssociated=!0),n.forEach(function(e){Object.defineProperty(i.prototype,e,{get:function(){return this._vdom?this._vdom.props[e]:this._props[e]},set:function(t){this._vdom?this.attributeChangedCallback(e,null,t):(this._props||={},this._props[e]=t);var n=typeof t;t!=null&&n!==`string`&&n!==`boolean`&&n!==`number`||this.setAttribute(e,t)}})}),customElements.define(t||e.tagName||e.displayName||e.name,i),i}function pe(e){this.getChildContext=function(){return e.context};var t=e.children;return ce(t,le(e,ue))}function me(e){var t=new CustomEvent(`_preact`,{detail:{},bubbles:!0,cancelable:!0});this.dispatchEvent(t),this._vdom=x(pe,z({},this._props,{context:t.detail.context}),_e(this,this._vdomComponent,e)),(this.hasAttribute(`hydrate`)?se:R)(this._vdom,this._root)}function B(e){return e.replace(/-(\w)/g,function(e,t){return t?t.toUpperCase():``})}function he(e,t,n){if(this._vdom){var r={};r[e]=n??=void 0,r[B(e)]=n,this._vdom=ce(this._vdom,r),R(this._vdom,this._root)}}function ge(){R(this._vdom=null,this._root)}function V(e,t){var n=this,r=e.useFragment,i=le(e,de);return x(r?C:`slot`,z({},i,{ref:function(e){e?(n.ref=e,n._listener||(n._listener=function(e){e.stopPropagation(),e.detail.context=t},e.addEventListener(`_preact`,n._listener))):n.ref.removeEventListener(`_preact`,n._listener)}}))}function _e(e,t,n){if(e.nodeType===3)return e.data;if(e.nodeType!==1)return null;var r=[],i={},a=0,o=e.attributes,s=e.childNodes;for(a=o.length;a--;)o[a].name!==`slot`&&(i[o[a].name]=o[a].value,i[B(o[a].name)]=o[a].value);for(a=s.length;a--;){var c=_e(s[a],null,n),l=s[a].slot;l?i[l]=x(V,{name:l},c):r[a]=c}var u=!(!n||!n.shadow),d=t?x(V,{useFragment:!u},r):r;return!u&&t&&(e.innerHTML=``),x(t||e.nodeName.toLowerCase(),i,d)}function ve(e,t,i=[],a={shadow:!0}){typeof window<`u`&&(n(r),customElements.get(t)||fe(e,t,i,a))}var H,U,W,ye,G=0,be=[],K=a,xe=K.__b,Se=K.__r,Ce=K.diffed,we=K.__c,Te=K.unmount,Ee=K.__;function q(e,t){K.__h&&K.__h(U,e,G||t),G=0;var n=U.__H||={__:[],__h:[]};return e>=n.__.length&&n.__.push({}),n.__[e]}function J(e){return G=1,De(Ne,e)}function De(e,t,n){var r=q(H++,2);if(r.t=e,!r.__c&&(r.__=[n?n(t):Ne(void 0,t),function(e){var t=r.__N?r.__N[0]:r.__[0],n=r.t(t,e);t!==n&&(r.__N=[n,r.__[1]],r.__c.setState({}))}],r.__c=U,!U.__f)){var i=function(e,t,n){if(!r.__c.__H)return!0;var i=r.__c.__H.__.filter(function(e){return e.__c});if(i.every(function(e){return!e.__N}))return!a||a.call(this,e,t,n);var o=r.__c.props!==e;return i.some(function(e){if(e.__N){var t=e.__[0];e.__=e.__N,e.__N=void 0,t!==e.__[0]&&(o=!0)}}),a&&a.call(this,e,t,n)||o};U.__f=!0;var a=U.shouldComponentUpdate,o=U.componentWillUpdate;U.componentWillUpdate=function(e,t,n){if(this.__e){var r=a;a=void 0,i(e,t,n),a=r}o&&o.call(this,e,t,n)},U.shouldComponentUpdate=i}return r.__N||r.__}function Y(e,t){var n=q(H++,3);!K.__s&&Me(n.__H,t)&&(n.__=e,n.u=t,U.__H.__h.push(n))}function X(e,t){var n=q(H++,7);return Me(n.__H,t)&&(n.__=e(),n.__H=t,n.__h=e),n.__}function Oe(e,t){return G=8,X(function(){return e},t)}function ke(){for(var e;e=be.shift();){var t=e.__H;if(e.__P&&t)try{t.__h.some(Z),t.__h.some(Q),t.__h=[]}catch(n){t.__h=[],K.__e(n,e.__v)}}}K.__b=function(e){U=null,xe&&xe(e)},K.__=function(e,t){e&&t.__k&&t.__k.__m&&(e.__m=t.__k.__m),Ee&&Ee(e,t)},K.__r=function(e){Se&&Se(e),H=0;var t=(U=e.__c).__H;t&&(W===U?(t.__h=[],U.__h=[],t.__.some(function(e){e.__N&&(e.__=e.__N),e.u=e.__N=void 0})):(t.__h.some(Z),t.__h.some(Q),t.__h=[],H=0)),W=U},K.diffed=function(e){Ce&&Ce(e);var t=e.__c;t&&t.__H&&(t.__H.__h.length&&(be.push(t)!==1&&ye===K.requestAnimationFrame||((ye=K.requestAnimationFrame)||je)(ke)),t.__H.__.some(function(e){e.u&&(e.__H=e.u),e.u=void 0})),W=U=null},K.__c=function(e,t){t.some(function(e){try{e.__h.some(Z),e.__h=e.__h.filter(function(e){return!e.__||Q(e)})}catch(n){t.some(function(e){e.__h&&=[]}),t=[],K.__e(n,e.__v)}}),we&&we(e,t)},K.unmount=function(e){Te&&Te(e);var t,n=e.__c;n&&n.__H&&(n.__H.__.some(function(e){try{Z(e)}catch(e){t=e}}),n.__H=void 0,t&&K.__e(t,n.__v))};var Ae=typeof requestAnimationFrame==`function`;function je(e){var t,n=function(){clearTimeout(r),Ae&&cancelAnimationFrame(t),setTimeout(e)},r=setTimeout(n,35);Ae&&(t=requestAnimationFrame(n))}function Z(e){var t=U,n=e.__c;typeof n==`function`&&(e.__c=void 0,n()),U=t}function Q(e){var t=U;e.__c=e.__(),U=t}function Me(e,t){return!e||e.length!==t.length||t.some(function(t,n){return t!==e[n]})}function Ne(e,t){return typeof t==`function`?t(e):t}function Pe(){let[n,r]=J(()=>window.FrakSetup?.config?.waitForBackendConfig===!1?!0:t.isResolved),[i,a]=J(()=>t.getConfig().hidden??!1),[o,s]=J(()=>!!window.FrakSetup?.client);return Y(()=>{let n=t.getConfig();n.isResolved&&(r(!0),a(n.hidden??!1)),window.FrakSetup?.client&&s(!0);let i=e=>{let t=e.detail;t.isResolved&&r(!0),a(t.hidden??!1)};window.addEventListener(`frak:config`,i);let o=()=>s(!0);return e(`add`,o),()=>{window.removeEventListener(`frak:config`,i),e(`remove`,o)}},[]),{shouldRender:n,isHidden:i,isClientReady:o}}const $=`
2
- :host {
3
- display: contents;
4
- }
5
-
6
- :host([hidden]) {
7
- display: none;
8
- }
9
-
10
- .button:disabled {
11
- opacity: 0.7;
12
- cursor: default;
13
- }
14
-
15
- .button__fadeIn {
16
- animation: frak-fadeIn 300ms ease-in;
17
- }
18
-
19
- @keyframes frak-fadeIn {
20
- from {
21
- opacity: 0;
22
- }
23
-
24
- to {
25
- opacity: 1;
26
- }
27
- }
28
- `;function Fe(e,t){return t?`${$}\n${e}\n${t}`:`${$}\n${e}`}const Ie=`
29
- :where(frak-button-share, frak-open-in-app) {
30
- display: contents;
31
- }
32
-
33
- :where(frak-button-share .button, frak-open-in-app .button) {
34
- display: flex;
35
- align-items: center;
36
- justify-content: center;
37
- gap: 10px;
38
- }
39
-
40
- :where(frak-button-share .button:disabled, frak-open-in-app .button:disabled) {
41
- opacity: 0.7;
42
- cursor: default;
43
- }
44
-
45
- :where(frak-button-share .button__fadeIn, frak-open-in-app .button__fadeIn) {
46
- animation: frak-fadeIn 300ms ease-in;
47
- }
48
-
49
- @keyframes frak-fadeIn {
50
- from {
51
- opacity: 0;
52
- }
53
-
54
- to {
55
- opacity: 1;
56
- }
57
- }
58
- `;function Le(e){return t.getConfig().placements?.[e]}function Re(e){let[t,n]=J(0);return Y(()=>{let e=e=>{n(e=>e+1)};return window.addEventListener(`frak:config`,e),n(e=>e+1),()=>window.removeEventListener(`frak:config`,e)},[]),X(()=>e?Le(e):void 0,[e,t])}var ze=0;Array.isArray;function Be(e,t,n,r,i,o){t||={};var s,c,l=t;if(`ref`in l)for(c in l={},t)c==`ref`?s=t[c]:l[c]=t[c];var u={type:e,props:l,key:n,ref:s,__k:null,__:null,__b:0,__e:null,__c:null,constructor:void 0,__v:--ze,__i:-1,__u:0,__source:i,__self:o};if(typeof e==`function`&&(s=e.defaultProps))for(c in s)l[c]===void 0&&(l[c]=s[c]);return a.vnode&&a.vnode(u),u}export{Pe as a,Oe as c,C as d,Ie as i,Y as l,Re as n,X as o,Fe as r,J as s,Be as t,ve as u};
@@ -1,48 +0,0 @@
1
- import { formatAmount, getCurrencyAmountKey } from "@frak-labs/core-sdk";
2
- import { getMerchantInformation } from "@frak-labs/core-sdk/actions";
3
- import { useEffect, useState } from "preact/hooks";
4
-
5
- //#region src/utils/getCurrentReward.ts
6
- function getFixedFiatAmount(estimated, key) {
7
- if (!estimated || estimated.payoutType !== "fixed") return 0;
8
- return estimated.amount[key];
9
- }
10
- function getMaxFixedReferrerReward(rewards, key) {
11
- return rewards.reduce((max, reward) => Math.max(max, getFixedFiatAmount(reward.referrer, key)), 0);
12
- }
13
- async function getCurrentReward({ targetInteraction }) {
14
- const client = window.FrakSetup?.client;
15
- if (!client) {
16
- console.warn("Frak client not ready yet");
17
- return;
18
- }
19
- const { rewards } = await getMerchantInformation(client);
20
- const currencyAmountKey = getCurrencyAmountKey(client.config.metadata?.currency);
21
- const maxReward = getMaxFixedReferrerReward(targetInteraction ? rewards.filter((r) => r.interactionTypeKey === targetInteraction) : rewards, currencyAmountKey);
22
- if (maxReward <= 0) return;
23
- return formatAmount(Math.round(maxReward), client.config.metadata?.currency);
24
- }
25
-
26
- //#endregion
27
- //#region src/hooks/useReward.ts
28
- /**
29
- * Hook to fetch and format the current reward value for a given interaction
30
- * @param shouldUseReward - Flag to determine if reward should be fetched
31
- * @param targetInteraction - Optional interaction type to get specific reward for
32
- * @param currency - The currency to use for the reward (default is "eur")
33
- * @returns Object containing the formatted reward value in euros
34
- */
35
- function useReward(shouldUseReward, targetInteraction) {
36
- const [reward, setReward] = useState(void 0);
37
- useEffect(() => {
38
- if (!shouldUseReward) return;
39
- getCurrentReward({ targetInteraction }).then((reward) => {
40
- if (!reward) return;
41
- setReward(reward);
42
- });
43
- }, [shouldUseReward, targetInteraction]);
44
- return { reward };
45
- }
46
-
47
- //#endregion
48
- export { useReward as t };