@cleartrip/ct-platform-supercoins-chip 1.0.1-beta.0
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.
- package/dist/SupercoinsChip.d.ts +5 -0
- package/dist/SupercoinsChip.d.ts.map +1 -0
- package/dist/SupercoinsChip.types.d.ts +24 -0
- package/dist/SupercoinsChip.types.d.ts.map +1 -0
- package/dist/constants.d.ts +12 -0
- package/dist/constants.d.ts.map +1 -0
- package/dist/ct-platform-supercoins-chip.cjs.js +2 -0
- package/dist/ct-platform-supercoins-chip.cjs.js.map +1 -0
- package/dist/ct-platform-supercoins-chip.esm.js +2 -0
- package/dist/ct-platform-supercoins-chip.esm.js.map +1 -0
- package/dist/index.d.ts +3 -0
- package/dist/index.d.ts.map +1 -0
- package/dist/utils/onIslandAnimaionStart.d.ts +3 -0
- package/dist/utils/onIslandAnimaionStart.d.ts.map +1 -0
- package/dist/utils/shouldRenderIsland.d.ts +3 -0
- package/dist/utils/shouldRenderIsland.d.ts.map +1 -0
- package/package.json +30 -0
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"SupercoinsChip.d.ts","sourceRoot":"","sources":["../packages/components/SupercoinsChip/src/SupercoinsChip.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAiD,MAAM,OAAO,CAAC;AAatE,OAAO,EAAE,mBAAmB,EAAE,MAAM,wBAAwB,CAAC;AAa7D,QAAA,MAAM,cAAc,EAAE,KAAK,CAAC,EAAE,CAAC,mBAAmB,CAwLjD,CAAC;AAEF,eAAe,cAAc,CAAC"}
|
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
export interface SupercoinsChipProps {
|
|
2
|
+
page?: string;
|
|
3
|
+
supercoinsLoading: boolean;
|
|
4
|
+
supercoinBurnBalance: number;
|
|
5
|
+
supercoinsFetchError?: boolean;
|
|
6
|
+
hideSupercoinsViaConfig?: boolean;
|
|
7
|
+
renderIsland: boolean;
|
|
8
|
+
ravenPayload?: {
|
|
9
|
+
[key: string]: string | number;
|
|
10
|
+
};
|
|
11
|
+
onSupercoinsClick?: () => void;
|
|
12
|
+
}
|
|
13
|
+
export interface RenderSuperCoinIsland {
|
|
14
|
+
renderIsland: boolean;
|
|
15
|
+
supercoins: number;
|
|
16
|
+
}
|
|
17
|
+
export interface onIslandAnimationStartArgs {
|
|
18
|
+
supercoins: number;
|
|
19
|
+
ravenPayload?: {
|
|
20
|
+
[key: string]: string | number;
|
|
21
|
+
};
|
|
22
|
+
utmSource: string;
|
|
23
|
+
}
|
|
24
|
+
//# sourceMappingURL=SupercoinsChip.types.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"SupercoinsChip.types.d.ts","sourceRoot":"","sources":["../packages/components/SupercoinsChip/src/SupercoinsChip.types.ts"],"names":[],"mappings":"AAAA,MAAM,WAAW,mBAAmB;IAChC,IAAI,CAAC,EAAE,MAAM,CAAC;IACd,iBAAiB,EAAE,OAAO,CAAC;IAC3B,oBAAoB,EAAE,MAAM,CAAC;IAC7B,oBAAoB,CAAC,EAAE,OAAO,CAAC;IAC/B,uBAAuB,CAAC,EAAE,OAAO,CAAC;IAClC,YAAY,EAAE,OAAO,CAAC;IACtB,YAAY,CAAC,EAAE;QAAE,CAAC,GAAG,EAAE,MAAM,GAAG,MAAM,GAAG,MAAM,CAAA;KAAE,CAAC;IAClD,iBAAiB,CAAC,EAAE,MAAM,IAAI,CAAC;CAClC;AAED,MAAM,WAAW,qBAAqB;IAClC,YAAY,EAAE,OAAO,CAAC;IACtB,UAAU,EAAE,MAAM,CAAC;CACtB;AAED,MAAM,WAAW,0BAA0B;IACvC,UAAU,EAAE,MAAM,CAAC;IACnB,YAAY,CAAC,EAAE;QAAE,CAAC,GAAG,EAAE,MAAM,GAAG,MAAM,GAAG,MAAM,CAAA;KAAE,CAAC;IAClD,SAAS,EAAE,MAAM,CAAC;CACrB"}
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
export declare const SUPERCOINS_CHIP_ICON = "https://rukmini-ct.flixcart.com/f_auto,q_auto,dpr_2/offermgmt-prod/offermgmt/images/banner/supercoins-chip-icon.png";
|
|
2
|
+
export declare const SUPERCOIN_ISLAND_RENDERED_FREQUENCY = "island_rendered_frquency";
|
|
3
|
+
export declare const SUPERCOIN_ISLAND_ANIMATION_PLAYED = "islandAnimationPlayed";
|
|
4
|
+
export declare const SUPERCOIN_ISLAND_EXPIRATION_FREQUENCY = "island_expiration_frquency";
|
|
5
|
+
export declare const SUPERCOIN_FLOATING_ISLAND_CONFIG: {
|
|
6
|
+
requiredSupercoins: number;
|
|
7
|
+
frequency: number;
|
|
8
|
+
frequencyGapInDays: number;
|
|
9
|
+
cutoffTimeInMs: number;
|
|
10
|
+
isVisibleOnScroll: boolean;
|
|
11
|
+
};
|
|
12
|
+
//# sourceMappingURL=constants.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"constants.d.ts","sourceRoot":"","sources":["../packages/components/SupercoinsChip/src/constants.ts"],"names":[],"mappings":"AAAA,eAAO,MAAM,oBAAoB,wHACwF,CAAC;AAE1H,eAAO,MAAM,mCAAmC,6BAA6B,CAAC;AAE9E,eAAO,MAAM,iCAAiC,0BAA0B,CAAC;AAEzE,eAAO,MAAM,qCAAqC,+BAClB,CAAC;AAEjC,eAAO,MAAM,gCAAgC;;;;;;CAM5C,CAAC"}
|
|
@@ -0,0 +1,2 @@
|
|
|
1
|
+
"use strict";var e=require("tslib"),n=require("react/jsx-runtime"),r=require("react"),o=require("@cleartrip/ct-design-typography"),i=require("@cleartrip/ct-platform-shimmer"),t=require("@cleartrip/ct-platform-utils");function a(e){return e&&e.__esModule?e:{default:e}}var s=a(r);var c="index-module_supercoinsBalance__w9srh",u="index-module_supercoinContainer__JiReA",l="index-module_superCoinsFloatingIslandContainer__5FNNa",d="index-module_supercoinsBalanceBackgroundColorShift__r6YWa",_="index-module_supercoinsBalanceTextColorShift__y7vva",m="index-module_supercoinsBalanceBackgroundColorShift_exit__sinUJ",f="index-module_supercoinsBalanceTextColorShift_exit__JKt90";!function(e,n){void 0===n&&(n={});var r=n.insertAt;if("undefined"!=typeof document){var o=document.head||document.getElementsByTagName("head")[0],i=document.createElement("style");i.type="text/css","top"===r&&o.firstChild?o.insertBefore(i,o.firstChild):o.appendChild(i),i.styleSheet?i.styleSheet.cssText=e:i.appendChild(document.createTextNode(e))}}('.index-module_supercoinsBalance__w9srh{background-color:#fff;border:1px solid #e6e6e6;border-radius:16px;display:inline-block;padding:6px 8px}.index-module_supercoinContainer__JiReA{position:relative}.index-module_superCoinsFloatingIslandContainer__5FNNa{margin-left:100%;margin-top:18px;position:relative;width:1px}.index-module_supercoinsBalanceBackgroundColorShift__r6YWa{animation:index-module_supercoins_balance_background_color_shift__1NHEU .6s forwards;overflow:hidden;position:relative}.index-module_supercoinsBalanceTextColorShift__y7vva{animation:index-module_supercoins_balance_text_color_shift__V8yxU .6s forwards}.index-module_supercoinsBalanceBackgroundColorShift_exit__sinUJ{animation:index-module_supercoins_balance_background_color_shift_exit__qAHuv .6s forwards;overflow:hidden;position:relative}.index-module_supercoinsBalanceTextColorShift_exit__JKt90{animation:index-module_supercoins_balance_text_color_shift_exit__rluZH .6s forwards}.index-module_supercoinsBalanceBackgroundColorShift__r6YWa:before{animation:index-module_shimmer__SAN3n .4s ease-in .5s;background:hsla(0,0%,100%,.8);content:"";height:64px;left:-30%;position:absolute;top:-10px;transform:rotate(25deg);width:8px}@keyframes index-module_shimmer__SAN3n{0%{left:-30%}to{left:120%}}@keyframes index-module_supercoins_balance_background_color_shift__1NHEU{0%{background-color:rgba(0,62,162,.1)}to{background-color:#003ea2}}@keyframes index-module_supercoins_balance_background_color_shift_exit__qAHuv{0%{background-color:#003ea2}to{background-color:rgba(0,62,162,0)}}@keyframes index-module_supercoins_balance_text_color_shift__V8yxU{0%{color:#000}to{color:#fff}}@keyframes index-module_supercoins_balance_text_color_shift_exit__rluZH{0%{color:#fff}to{color:#000}}@keyframes index-module_supercoins_balance_background_shimmer__2lOFp{0%{background-color:rgba(0,62,162,.1)}to{background-color:#003ea2}}');var p="island_rendered_frquency",g="islandAnimationPlayed",x="island_expiration_frquency",h={requiredSupercoins:50,frequency:3,frequencyGapInDays:30,cutoffTimeInMs:5e3,isVisibleOnScroll:!1};function v(e){var n,r=e.renderIsland,o=e.supercoins;if(!r)return!1;if(o<h.requiredSupercoins)return!1;if(!("true"===t.getQueryParam("isMobileApp")))return!1;if(function(){var e=localStorage.getItem(p);return e&&"number"==typeof parseInt(e)?parseInt(e):0}()>=h.frequency){var i=(n=localStorage.getItem(x))&&"number"==typeof parseInt(n)?parseInt(n):null;return!i||!(i>Math.floor(Date.now()/1e3))&&(localStorage.removeItem(p),localStorage.removeItem(x),!0)}return!sessionStorage.getItem(g)}function y(){var e=localStorage.getItem(p);if(e){var n=parseInt(e)+1;if(localStorage.setItem(p,n.toString()),n>=h.frequency){var r=Math.floor(Date.now()/1e3)+86400*h.frequencyGapInDays;localStorage.setItem(x,r.toString())}}else localStorage.setItem(p,"1")}var S=s.default.lazy((function(){return import("@cleartrip/ct-platform-supercoins-floating-island").then((function(e){return{default:e.SupercoinsFloatingIsland}}))}));exports.SupercoinsChip=function(a){var s=a.supercoinsLoading,p=a.supercoinBurnBalance,x=a.ravenPayload,b=void 0===x?{}:x,k=a.onSupercoinsClick,I=a.renderIsland,C=void 0===I||I,w=r.useMemo((function(){var e;return null!==(e=t.getQueryParam("utm_source"))&&void 0!==e?e:"organic"}),[]),B=r.useMemo((function(){return"number"==typeof p&&p>=0}),[p]),q=r.useState(!1),T=q[0],j=q[1],N=r.useState(null),A=N[0],E=N[1],F=r.useState(!1),M=F[0],H=F[1],P="entry"===A?d:"exit"===A?m:"",D="entry"===A?_:"exit"===A?f:"";return r.useEffect((function(){var e=function(){window.scrollY>0&&(sessionStorage.getItem(g)||(H(!0),E(null)))};return window.addEventListener("scroll",e),function(){window.removeEventListener("scroll",e)}}),[]),r.useEffect((function(){var e;return v({renderIsland:C,supercoins:p})&&!M&&(E("entry"),e=setTimeout((function(){j(!0)}),1500)),function(){clearTimeout(e)}}),[]),r.useEffect((function(){var e=setTimeout((function(){sessionStorage.getItem(g)||j(!1)}),h.cutoffTimeInMs);return function(){clearTimeout(e)}}),[]),n.jsx(n.Fragment,{children:s?n.jsx("div",e.__assign({className:c},{children:n.jsxs("div",e.__assign({style:{display:"flex",alignItems:"center",gap:"4px"}},{children:[n.jsx(i.Shimmer,{width:18,height:18,type:"rounded"}),n.jsx(i.Shimmer,{width:44,height:18,type:"rounded"})]}))})):B?n.jsxs("div",e.__assign({className:u},{children:[n.jsx("div",e.__assign({className:"".concat(c," ").concat(P),onClick:function(){k&&"function"==typeof k&&k(),t.ravenSDKTrigger("u_ui_action",e.__assign({action_name:"supercoin_icon_click",page_name:"unified_homepage",supercoin_balance:p,u_utm_source:w},b))}},{children:n.jsxs("div",e.__assign({style:{display:"flex",alignItems:"center",gap:"4px"}},{children:[n.jsx("img",{src:"https://rukmini-ct.flixcart.com/f_auto,q_auto,dpr_2/offermgmt-prod/offermgmt/images/banner/supercoins-chip-icon.png",alt:"supercoin_icon",width:18,height:18}),n.jsx(o.Typography,e.__assign({variant:"B2",style:{lineHeight:"18px"},className:D},{children:p}))]}))})),T&&!M&&n.jsx("div",e.__assign({className:l},{children:n.jsx(r.Suspense,e.__assign({fallback:n.jsx(n.Fragment,{})},{children:n.jsx(S,{superCoins:p,onAnimationStart:function(){return function(n){var r=n.supercoins,o=n.ravenPayload,i=n.utmSource,a=void 0===i?"":i;t.ravenSDKTrigger("u_ui_action",e.__assign({action_name:"supercoin_banner_impression",page_name:"unified_homepage",supercoin_balance:r,u_utm_source:a},o)),sessionStorage.setItem("islandAnimationPlayed","true"),y()}({supercoins:p,ravenPayload:b,utmSource:w})},onAnimationEnd:function(){E("exit")}})}))}))]})):null})};
|
|
2
|
+
//# sourceMappingURL=ct-platform-supercoins-chip.cjs.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"ct-platform-supercoins-chip.cjs.js","sources":["../../../../node_modules/.pnpm/style-inject@0.3.0/node_modules/style-inject/dist/style-inject.es.js","../packages/components/SupercoinsChip/src/constants.ts","../packages/components/SupercoinsChip/src/utils/shouldRenderIsland.ts","../packages/components/SupercoinsChip/src/utils/onIslandAnimaionStart.ts","../packages/components/SupercoinsChip/src/SupercoinsChip.tsx"],"sourcesContent":["function styleInject(css, ref) {\n if ( ref === void 0 ) ref = {};\n var insertAt = ref.insertAt;\n\n if (!css || typeof document === 'undefined') { return; }\n\n var head = document.head || document.getElementsByTagName('head')[0];\n var style = document.createElement('style');\n style.type = 'text/css';\n\n if (insertAt === 'top') {\n if (head.firstChild) {\n head.insertBefore(style, head.firstChild);\n } else {\n head.appendChild(style);\n }\n } else {\n head.appendChild(style);\n }\n\n if (style.styleSheet) {\n style.styleSheet.cssText = css;\n } else {\n style.appendChild(document.createTextNode(css));\n }\n}\n\nexport default styleInject;\n",null,null,null,null],"names":["css","ref","insertAt","document","head","getElementsByTagName","style","createElement","type","firstChild","insertBefore","appendChild","styleSheet","cssText","createTextNode","SUPERCOIN_ISLAND_RENDERED_FREQUENCY","SUPERCOIN_ISLAND_ANIMATION_PLAYED","SUPERCOIN_ISLAND_EXPIRATION_FREQUENCY","SUPERCOIN_FLOATING_ISLAND_CONFIG","requiredSupercoins","frequency","frequencyGapInDays","cutoffTimeInMs","isVisibleOnScroll","shouldRenderIsland","_a","expiry","renderIsland","supercoins","getQueryParam","localStorage","getItem","parseInt","getIslandShownFrequency","expiryEpoch","Math","floor","Date","now","removeItem","sessionStorage","incrementAnimationPlayedFrequency","currentFrequency","setItem","toString","LazySuperCoinsFloatingIsland","React","lazy","import","then","module","default","SupercoinsFloatingIsland","supercoinsLoading","supercoinBurnBalance","_b","ravenPayload","onSupercoinsClick","_c","utmSource","useMemo","shouldRenderSupercoins","_d","useState","renderSuperCoinIsland","setRenderSuperCoinIsland","_e","chipAnimationType","setChipAnimationType","_f","hasScrolledBeforeAnimation","setHasScrolledBeforeAnimation","chipBackgroundAnimationClassname","styles","chipTextAnimationClassname","useEffect","handleScroll","window","scrollY","addEventListener","removeEventListener","timeout","setTimeout","clearTimeout","_jsx","_Fragment","children","jsx","__assign","className","_jsxs","jsxs","display","alignItems","gap","Shimmer","width","height","concat","onClick","ravenSDKTrigger","action_name","page_name","supercoin_balance","u_utm_source","src","alt","Typography","variant","lineHeight","Suspense","fallback","Fragment","superCoins","onAnimationStart","onIslandAnimationStart","onAnimationEnd"],"mappings":"iqBAAA,SAAqBA,EAAKC,QACX,IAARA,IAAiBA,EAAM,CAAA,GAC5B,IAAIC,EAAWD,EAAIC,SAEnB,GAAgC,oBAAbC,SAAnB,CAEA,IAAIC,EAAOD,SAASC,MAAQD,SAASE,qBAAqB,QAAQ,GAC9DC,EAAQH,SAASI,cAAc,SACnCD,EAAME,KAAO,WAEI,QAAbN,GACEE,EAAKK,WACPL,EAAKM,aAAaJ,EAAOF,EAAKK,YAKhCL,EAAKO,YAAYL,GAGfA,EAAMM,WACRN,EAAMM,WAAWC,QAAUb,EAE3BM,EAAMK,YAAYR,SAASW,eAAed,GAnBW,CAqBzD,k2DCzBO,IAGMe,EAAsC,2BAEtCC,EAAoC,wBAEpCC,EACT,6BAESC,EAAmC,CAC5CC,mBAAoB,GACpBC,UAAW,EACXC,mBAAoB,GACpBC,eAAgB,IAChBC,mBAAmB,GCMC,SAAAC,EAAmBC,OALjCC,EAMNC,EAAYF,EAAAE,aACZC,EAAUH,EAAAG,WAGV,IAAKD,EAAc,OAAO,EAG1B,GAAIC,EAAaV,EAAiCC,mBAC9C,OAAO,EAKX,KADqD,SAAjCU,EAAAA,cAAc,gBAChB,OAAO,EAIzB,GA9BJ,WACI,IAAMT,EAAYU,aAAaC,QAAQhB,GACvC,OAAKK,GAA4C,iBAAxBY,SAASZ,GAC3BY,SAASZ,GADkD,CAEtE,CAyBsBa,IACDf,EAAiCE,UAAW,CAEzD,IAAMc,GAzBJR,EAASI,aAAaC,QAAQd,KACO,iBAArBe,SAASN,GACxBM,SAASN,GAD4C,KAyBxD,OAAKQ,KAEDA,EADiBC,KAAKC,MAAMC,KAAKC,MAAQ,QAK7CR,aAAaS,WAAWxB,GACxBe,aAAaS,WAAWtB,IACjB,EACV,CAID,OADiBuB,eAAeT,QAAQf,EAO5C,CC5CA,SAASyB,IACL,IAAMrB,EAAYU,aAAaC,QAAQhB,GACvC,GAAIK,EAAJ,CAEI,IAAMsB,EAAmBV,SAASZ,GAAa,EAO/C,GANAU,aAAaa,QACT5B,EACA2B,EAAiBE,YAIjBF,GAAoBxB,EAAiCE,UAAW,CAChE,IAAMM,EApBOS,KAAKC,MAAMC,KAAKC,MAAQ,KACvB,MAGlBpB,EAAiCG,mBAiB7BS,aAAaa,QACT1B,EACAS,EAAOkB,WAEd,CAEJ,MACDd,aAAaa,QAAQ5B,EAAqC,IAC9D,CCpBA,IAAM8B,EAA+BC,EAAAA,QAAMC,MAAK,WAC5C,OAAAC,OAAO,qDAAqDC,MACxD,SAACC,GAAW,MAAC,CACTC,QAASD,EAAOE,yBAClB,GAHN,2BAOkD,SAAC3B,OACnD4B,EAAiB5B,EAAA4B,kBACjBC,EAAoB7B,EAAA6B,qBACpBC,EAAiB9B,EAAA+B,aAAjBA,OAAe,IAAAD,EAAA,KACfE,sBACAC,EAAAjC,EAAAE,aAAAA,OAAY,IAAA+B,GAAOA,EAEbC,EAAYC,EAAAA,SACd,WAAM,IAAAnC,EAAA,iBAAAI,EAAaA,cAAC,6BAAiB,SAAS,GAC9C,IAGEgC,EAAyBD,EAAAA,SAAQ,WAEnC,MACoC,iBAAzBN,GACPA,GAAwB,CAEhC,GAAG,CAACA,IAEEQ,EAAoDC,EAAAA,UAAS,GAA5DC,EAAqBF,EAAA,GAAEG,EAAwBH,EAAA,GAChDI,EAA4CH,EAAAA,SAEhD,MAFKI,EAAiBD,EAAA,GAAEE,EAAoBF,EAAA,GAGxCG,EACFN,EAAAA,UAAS,GADNO,EAA0BD,EAAA,GAAEE,EAA6BF,EAAA,GAG1DG,EACoB,UAAtBL,EACMM,EACsB,SAAtBN,EACEM,EACA,GAENC,EACoB,UAAtBP,EACMM,EACsB,SAAtBN,EACEM,EACA,GA+EZ,OAzDAE,EAAAA,WAAU,WACN,IAAMC,EAAe,WACbC,OAAOC,QAAU,IAEQtC,eAAeT,QACpCf,KAGAuD,GAA8B,GAC9BH,EAAqB,OAGjC,EAMA,OAHAS,OAAOE,iBAAiB,SAAUH,GAG3B,WACHC,OAAOG,oBAAoB,SAAUJ,EACzC,CACH,GAAE,IAGHD,EAAAA,WAAU,WACN,IAIIM,EAOJ,OAXqBzD,EAAmB,CACpCG,aAAYA,EACZC,WAAY0B,MAGKgB,IACjBF,EAAqB,SACrBa,EAAUC,YAAW,WACjBjB,GAAyB,EAC5B,GAAE,OAEA,WACHkB,aAAaF,EACjB,CACH,GAAE,IAGHN,EAAAA,WAAU,WACN,IAAMM,EAAUC,YAAW,WACN1C,eAAeT,QAC5Bf,IAGAiD,GAAyB,EAEjC,GAAG/C,EAAiCI,gBAEpC,OAAO,WACH6D,aAAaF,EACjB,CACH,GAAE,IAGCG,EAAAA,IACKC,EAAAA,SAAA,CAAAC,SAAAjC,EACG+B,EAAAG,IAAA,MAAAC,WAAA,CAAKC,UAAWhB,GACZ,CAAAa,SAAAI,EAAAC,KAAA,MAAAH,EAAAA,SAAA,CACIlF,MAAO,CACHsF,QAAS,OACTC,WAAY,SACZC,IAAK,QACR,CAAAR,SAAA,CAEDF,EAACG,IAAAQ,EAAOA,QAAC,CAAAC,MAAO,GAAIC,OAAQ,GAAIzF,KAAM,YACtC4E,EAAAG,IAACQ,UAAO,CAACC,MAAO,GAAIC,OAAQ,GAAIzF,KAAM,mBAG9CqD,EACA6B,EAAAA,KAAA,MAAAF,EAAAA,SAAA,CAAKC,UAAWhB,GACZ,CAAAa,SAAA,CAAAF,EAAAG,IAAA,MAAAC,EAAAA,SAAA,CACIC,UAAW,GAAGS,OAAAzB,cAA4BD,GAC1C2B,QA5FpB,WACQ1C,GAAiD,mBAArBA,GAC5BA,IAIJ2C,EAAAA,gBAAgB,cACZZ,EAAAA,SAAA,CAAAa,YAAa,uBACbC,UAAW,mBACXC,kBAAmBjD,EACnBkD,aAAc7C,GACXH,GAEV,GAiFmB,CAAA8B,SAAAI,EAAAC,KAAA,MAAAH,EAAAA,SAAA,CACIlF,MAAO,CACHsF,QAAS,OACTC,WAAY,SACZC,IAAK,QACR,CAAAR,SAAA,CAEDF,EAAAA,IACI,MAAA,CAAAqB,IH5K5B,sHG6K4BC,IAAK,iBACLV,MAAO,GACPC,OAAQ,KAEZb,MAACuB,EAAAA,WACGnB,EAAAA,SAAA,CAAAoB,QAAS,KACTtG,MAAO,CAAEuG,WAAY,QACrBpB,UAAWf,GAA0B,CAAAY,SAEpChC,YAIZU,IAA0BM,GACvBc,EACIG,IAAA,MAAAC,EAAAA,SAAA,CAAAC,UAAWhB,GAAwC,CAAAa,SAEnDF,EAAAA,IAAC0B,EAAAA,SAAStB,EAAAA,SAAA,CAAAuB,SAAU3B,EAAKG,IAAAF,EAAA2B,SAAA,CAAA,IAAA,CAAA1B,SACrBF,EAAAA,IAACvC,GACGoE,WAAY3D,EACZ4D,iBAAkB,WACd,OD3JlC,SAAiCzF,OACnCG,EAAUH,EAAAG,WACV4B,EAAY/B,EAAA+B,aACZD,cAAAI,OAAY,IAAAJ,EAAA,GAAEA,EAGd6C,EAAAA,gBAAgB,cACZZ,EAAAA,SAAA,CAAAa,YAAa,8BACbC,UAAW,mBACXC,kBAAmB3E,EACnB4E,aAAc7C,GACXH,IAIPhB,eAAeG,QAAQ,wBAAyB,QAGhDF,GACJ,CCwIwC0E,CAAuB,CACnBvF,WAAY0B,EACZE,aAAYA,EACZG,UAASA,GACX,EAENyD,eAtIhC,WACIhD,EAAqB,OACxB,cA0IW,MAGhB","x_google_ignoreList":[0]}
|
|
@@ -0,0 +1,2 @@
|
|
|
1
|
+
import{__assign as e}from"tslib";import{jsx as n,Fragment as o,jsxs as r}from"react/jsx-runtime";import i,{useMemo as t,useState as a,useEffect as c,Suspense as l}from"react";import{Typography as s}from"@cleartrip/ct-design-typography";import{Shimmer as u}from"@cleartrip/ct-platform-shimmer";import{getQueryParam as d,ravenSDKTrigger as _}from"@cleartrip/ct-platform-utils";var m="index-module_supercoinsBalance__w9srh",f="index-module_supercoinContainer__JiReA",p="index-module_superCoinsFloatingIslandContainer__5FNNa",g="index-module_supercoinsBalanceBackgroundColorShift__r6YWa",x="index-module_supercoinsBalanceTextColorShift__y7vva",h="index-module_supercoinsBalanceBackgroundColorShift_exit__sinUJ",v="index-module_supercoinsBalanceTextColorShift_exit__JKt90";!function(e,n){void 0===n&&(n={});var o=n.insertAt;if("undefined"!=typeof document){var r=document.head||document.getElementsByTagName("head")[0],i=document.createElement("style");i.type="text/css","top"===o&&r.firstChild?r.insertBefore(i,r.firstChild):r.appendChild(i),i.styleSheet?i.styleSheet.cssText=e:i.appendChild(document.createTextNode(e))}}('.index-module_supercoinsBalance__w9srh{background-color:#fff;border:1px solid #e6e6e6;border-radius:16px;display:inline-block;padding:6px 8px}.index-module_supercoinContainer__JiReA{position:relative}.index-module_superCoinsFloatingIslandContainer__5FNNa{margin-left:100%;margin-top:18px;position:relative;width:1px}.index-module_supercoinsBalanceBackgroundColorShift__r6YWa{animation:index-module_supercoins_balance_background_color_shift__1NHEU .6s forwards;overflow:hidden;position:relative}.index-module_supercoinsBalanceTextColorShift__y7vva{animation:index-module_supercoins_balance_text_color_shift__V8yxU .6s forwards}.index-module_supercoinsBalanceBackgroundColorShift_exit__sinUJ{animation:index-module_supercoins_balance_background_color_shift_exit__qAHuv .6s forwards;overflow:hidden;position:relative}.index-module_supercoinsBalanceTextColorShift_exit__JKt90{animation:index-module_supercoins_balance_text_color_shift_exit__rluZH .6s forwards}.index-module_supercoinsBalanceBackgroundColorShift__r6YWa:before{animation:index-module_shimmer__SAN3n .4s ease-in .5s;background:hsla(0,0%,100%,.8);content:"";height:64px;left:-30%;position:absolute;top:-10px;transform:rotate(25deg);width:8px}@keyframes index-module_shimmer__SAN3n{0%{left:-30%}to{left:120%}}@keyframes index-module_supercoins_balance_background_color_shift__1NHEU{0%{background-color:rgba(0,62,162,.1)}to{background-color:#003ea2}}@keyframes index-module_supercoins_balance_background_color_shift_exit__qAHuv{0%{background-color:#003ea2}to{background-color:rgba(0,62,162,0)}}@keyframes index-module_supercoins_balance_text_color_shift__V8yxU{0%{color:#000}to{color:#fff}}@keyframes index-module_supercoins_balance_text_color_shift_exit__rluZH{0%{color:#fff}to{color:#000}}@keyframes index-module_supercoins_balance_background_shimmer__2lOFp{0%{background-color:rgba(0,62,162,.1)}to{background-color:#003ea2}}');var y="island_rendered_frquency",b="islandAnimationPlayed",S="island_expiration_frquency",k={requiredSupercoins:50,frequency:3,frequencyGapInDays:30,cutoffTimeInMs:5e3,isVisibleOnScroll:!1};function I(e){var n,o=e.renderIsland,r=e.supercoins;if(!o)return!1;if(r<k.requiredSupercoins)return!1;if(!("true"===d("isMobileApp")))return!1;if(function(){var e=localStorage.getItem(y);return e&&"number"==typeof parseInt(e)?parseInt(e):0}()>=k.frequency){var i=(n=localStorage.getItem(S))&&"number"==typeof parseInt(n)?parseInt(n):null;return!i||!(i>Math.floor(Date.now()/1e3))&&(localStorage.removeItem(y),localStorage.removeItem(S),!0)}return!sessionStorage.getItem(b)}function C(){var e=localStorage.getItem(y);if(e){var n=parseInt(e)+1;if(localStorage.setItem(y,n.toString()),n>=k.frequency){var o=Math.floor(Date.now()/1e3)+86400*k.frequencyGapInDays;localStorage.setItem(S,o.toString())}}else localStorage.setItem(y,"1")}var w=i.lazy((function(){return import("@cleartrip/ct-platform-supercoins-floating-island").then((function(e){return{default:e.SupercoinsFloatingIsland}}))})),B=function(i){var y=i.supercoinsLoading,S=i.supercoinBurnBalance,B=i.ravenPayload,N=void 0===B?{}:B,T=i.onSupercoinsClick,q=i.renderIsland,A=void 0===q||q,E=t((function(){var e;return null!==(e=d("utm_source"))&&void 0!==e?e:"organic"}),[]),H=t((function(){return"number"==typeof S&&S>=0}),[S]),F=a(!1),J=F[0],U=F[1],M=a(null),P=M[0],D=M[1],Y=a(!1),L=Y[0],V=Y[1],W="entry"===P?g:"exit"===P?h:"",G="entry"===P?x:"exit"===P?v:"";return c((function(){var e=function(){window.scrollY>0&&(sessionStorage.getItem(b)||(V(!0),D(null)))};return window.addEventListener("scroll",e),function(){window.removeEventListener("scroll",e)}}),[]),c((function(){var e;return I({renderIsland:A,supercoins:S})&&!L&&(D("entry"),e=setTimeout((function(){U(!0)}),1500)),function(){clearTimeout(e)}}),[]),c((function(){var e=setTimeout((function(){sessionStorage.getItem(b)||U(!1)}),k.cutoffTimeInMs);return function(){clearTimeout(e)}}),[]),n(o,{children:y?n("div",e({className:m},{children:r("div",e({style:{display:"flex",alignItems:"center",gap:"4px"}},{children:[n(u,{width:18,height:18,type:"rounded"}),n(u,{width:44,height:18,type:"rounded"})]}))})):H?r("div",e({className:f},{children:[n("div",e({className:"".concat(m," ").concat(W),onClick:function(){T&&"function"==typeof T&&T(),_("u_ui_action",e({action_name:"supercoin_icon_click",page_name:"unified_homepage",supercoin_balance:S,u_utm_source:E},N))}},{children:r("div",e({style:{display:"flex",alignItems:"center",gap:"4px"}},{children:[n("img",{src:"https://rukmini-ct.flixcart.com/f_auto,q_auto,dpr_2/offermgmt-prod/offermgmt/images/banner/supercoins-chip-icon.png",alt:"supercoin_icon",width:18,height:18}),n(s,e({variant:"B2",style:{lineHeight:"18px"},className:G},{children:S}))]}))})),J&&!L&&n("div",e({className:p},{children:n(l,e({fallback:n(o,{})},{children:n(w,{superCoins:S,onAnimationStart:function(){return function(n){var o=n.supercoins,r=n.ravenPayload,i=n.utmSource;_("u_ui_action",e({action_name:"supercoin_banner_impression",page_name:"unified_homepage",supercoin_balance:o,u_utm_source:void 0===i?"":i},r)),sessionStorage.setItem("islandAnimationPlayed","true"),C()}({supercoins:S,ravenPayload:N,utmSource:E})},onAnimationEnd:function(){D("exit")}})}))}))]})):null})};export{B as SupercoinsChip};
|
|
2
|
+
//# sourceMappingURL=ct-platform-supercoins-chip.esm.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"ct-platform-supercoins-chip.esm.js","sources":["../../../../node_modules/.pnpm/style-inject@0.3.0/node_modules/style-inject/dist/style-inject.es.js","../packages/components/SupercoinsChip/src/constants.ts","../packages/components/SupercoinsChip/src/utils/shouldRenderIsland.ts","../packages/components/SupercoinsChip/src/utils/onIslandAnimaionStart.ts","../packages/components/SupercoinsChip/src/SupercoinsChip.tsx"],"sourcesContent":["function styleInject(css, ref) {\n if ( ref === void 0 ) ref = {};\n var insertAt = ref.insertAt;\n\n if (!css || typeof document === 'undefined') { return; }\n\n var head = document.head || document.getElementsByTagName('head')[0];\n var style = document.createElement('style');\n style.type = 'text/css';\n\n if (insertAt === 'top') {\n if (head.firstChild) {\n head.insertBefore(style, head.firstChild);\n } else {\n head.appendChild(style);\n }\n } else {\n head.appendChild(style);\n }\n\n if (style.styleSheet) {\n style.styleSheet.cssText = css;\n } else {\n style.appendChild(document.createTextNode(css));\n }\n}\n\nexport default styleInject;\n",null,null,null,null],"names":["css","ref","insertAt","document","head","getElementsByTagName","style","createElement","type","firstChild","insertBefore","appendChild","styleSheet","cssText","createTextNode","SUPERCOIN_ISLAND_RENDERED_FREQUENCY","SUPERCOIN_ISLAND_ANIMATION_PLAYED","SUPERCOIN_ISLAND_EXPIRATION_FREQUENCY","SUPERCOIN_FLOATING_ISLAND_CONFIG","requiredSupercoins","frequency","frequencyGapInDays","cutoffTimeInMs","isVisibleOnScroll","shouldRenderIsland","_a","expiry","renderIsland","supercoins","getQueryParam","localStorage","getItem","parseInt","getIslandShownFrequency","expiryEpoch","Math","floor","Date","now","removeItem","sessionStorage","incrementAnimationPlayedFrequency","currentFrequency","setItem","toString","LazySuperCoinsFloatingIsland","React","lazy","import","then","module","default","SupercoinsFloatingIsland","SupercoinsChip","supercoinsLoading","supercoinBurnBalance","_b","ravenPayload","onSupercoinsClick","_c","utmSource","useMemo","shouldRenderSupercoins","_d","useState","renderSuperCoinIsland","setRenderSuperCoinIsland","_e","chipAnimationType","setChipAnimationType","_f","hasScrolledBeforeAnimation","setHasScrolledBeforeAnimation","chipBackgroundAnimationClassname","styles","chipTextAnimationClassname","useEffect","handleScroll","window","scrollY","addEventListener","removeEventListener","timeout","setTimeout","clearTimeout","_jsx","_Fragment","children","__assign","className","_jsxs","display","alignItems","gap","Shimmer","width","height","concat","onClick","ravenSDKTrigger","action_name","page_name","supercoin_balance","u_utm_source","src","alt","Typography","variant","lineHeight","Suspense","fallback","superCoins","onAnimationStart","onIslandAnimationStart","onAnimationEnd"],"mappings":"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","x_google_ignoreList":[0]}
|
package/dist/index.d.ts
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../packages/components/SupercoinsChip/src/index.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,OAAO,IAAI,cAAc,EAAE,MAAM,kBAAkB,CAAC;AAC7D,cAAc,wBAAwB,CAAC"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"onIslandAnimaionStart.d.ts","sourceRoot":"","sources":["../../packages/components/SupercoinsChip/src/utils/onIslandAnimaionStart.ts"],"names":[],"mappings":"AAMA,OAAO,EAAE,0BAA0B,EAAE,MAAM,yBAAyB,CAAC;AAkCrE,wBAAgB,sBAAsB,CAAC,EACnC,UAAU,EACV,YAAY,EACZ,SAAc,GACjB,EAAE,0BAA0B,QAe5B"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"shouldRenderIsland.d.ts","sourceRoot":"","sources":["../../packages/components/SupercoinsChip/src/utils/shouldRenderIsland.ts"],"names":[],"mappings":"AAOA,OAAO,EAAE,qBAAqB,EAAE,MAAM,yBAAyB,CAAC;AAchE,MAAM,CAAC,OAAO,UAAU,kBAAkB,CAAC,EACvC,YAAY,EACZ,UAAU,GACb,EAAE,qBAAqB,WAqCvB"}
|
package/package.json
ADDED
|
@@ -0,0 +1,30 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@cleartrip/ct-platform-supercoins-chip",
|
|
3
|
+
"version": "1.0.1-beta.0",
|
|
4
|
+
"description": "SuperCoins Chip Component",
|
|
5
|
+
"types": "dist/index.d.ts",
|
|
6
|
+
"main": "dist/ct-platform-supercoins-chip.cjs.js",
|
|
7
|
+
"module": "dist/ct-platform-supercoins-chip.esm.js",
|
|
8
|
+
"sideEffects": false,
|
|
9
|
+
"files": [
|
|
10
|
+
"dist"
|
|
11
|
+
],
|
|
12
|
+
"dependencies": {
|
|
13
|
+
"@cleartrip/ct-design-typography": "2.6.0",
|
|
14
|
+
"@cleartrip/ct-platform-shimmer": "3.0.3-beta.23",
|
|
15
|
+
"@cleartrip/ct-platform-utils": "3.18.1-beta.12",
|
|
16
|
+
"@cleartrip/ct-platform-supercoins-floating-island": "1.0.1-beta.0"
|
|
17
|
+
},
|
|
18
|
+
"peerDependencies": {
|
|
19
|
+
"react": ">=16.8.0",
|
|
20
|
+
"react-dom": ">=16.8.0",
|
|
21
|
+
"styled-components": "^6.1.8"
|
|
22
|
+
},
|
|
23
|
+
"author": "Cleartrip",
|
|
24
|
+
"license": "ISC",
|
|
25
|
+
"scripts": {
|
|
26
|
+
"watch-package": "rollup -c -w",
|
|
27
|
+
"build-package": "rollup -c",
|
|
28
|
+
"build-package:clean": "rm -rf dist && rollup -c"
|
|
29
|
+
}
|
|
30
|
+
}
|