@lanaco/lnc-react-ui 4.0.97 → 4.0.99
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/NumberInput.cjs +19 -19
- package/dist/NumberInput.js +77 -77
- package/dist/SalesCampaignsSection.cjs +1 -1
- package/dist/SalesCampaignsSection.js +1 -1
- package/package.json +1 -1
package/dist/NumberInput.cjs
CHANGED
|
@@ -1,20 +1,20 @@
|
|
|
1
|
-
"use strict";const c=require("react/jsx-runtime"),
|
|
1
|
+
"use strict";const c=require("react/jsx-runtime"),r=require("./index-BPVoEhTF.cjs"),l=require("react"),K=require("./index-DaiUAQVF.cjs"),p=require("./emotion-styled.browser.esm-BtEseadx.cjs"),o=require("./utils-BOtq2mcF.cjs"),X=require("./emotion-element-f0de968e.browser.esm-B7k6i6lC.cjs"),H=p.styled.div`
|
|
2
2
|
display: flex;
|
|
3
3
|
align-items: center;
|
|
4
4
|
|
|
5
|
-
min-height: ${e=>
|
|
6
|
-
max-height: ${e=>
|
|
7
|
-
background-color: ${e=>
|
|
5
|
+
min-height: ${e=>o.getSizeValueWithUnits(e.theme,e.size)};
|
|
6
|
+
max-height: ${e=>o.getSizeValueWithUnits(e.theme,e.size)};
|
|
7
|
+
background-color: ${e=>o.getColorRgbaValue(e.theme,"Input",e.color,"enabled","background")};
|
|
8
8
|
border: 1px solid
|
|
9
|
-
${e=>
|
|
10
|
-
border-radius: ${e=>
|
|
9
|
+
${e=>o.getColorRgbaValue(e.theme,"Input",e.focused===!0?"primary":e.color,e.disabled===!0?"disabled":"enabled","border")};
|
|
10
|
+
border-radius: ${e=>o.getBorderRadiusValueWithUnits(e.theme,"regular")};
|
|
11
11
|
|
|
12
|
-
${e=>e.focused&&e.readOnly!==!0?
|
|
13
|
-
${e=>e.disabled===!0?
|
|
14
|
-
`,
|
|
12
|
+
${e=>e.focused&&e.readOnly!==!0?o.getOutlineCss(e.theme):""}
|
|
13
|
+
${e=>e.disabled===!0?o.getDisabledStateCss(e.theme):""}
|
|
14
|
+
`,R=p.styled.span`
|
|
15
15
|
padding: 0 12px;
|
|
16
|
-
color: ${e=>
|
|
17
|
-
`,
|
|
16
|
+
color: ${e=>o.getColorRgbaValue(e.theme,"Input",e.focused===!0?"primary":e.color,"enabled","prefix")};
|
|
17
|
+
`,J=p.styled(R)``,L=p.styled.input`
|
|
18
18
|
background: none;
|
|
19
19
|
border: none;
|
|
20
20
|
outline: none;
|
|
@@ -22,16 +22,16 @@
|
|
|
22
22
|
padding-bottom: 0.625rem;
|
|
23
23
|
width: 100%;
|
|
24
24
|
|
|
25
|
-
${e=>
|
|
26
|
-
min-height: ${e=>
|
|
27
|
-
max-height: ${e=>
|
|
28
|
-
color: ${e=>
|
|
29
|
-
caret-color: ${e=>
|
|
25
|
+
${e=>o.getComponentTypographyCss(e.theme,"Input",e.size,"enabled")}
|
|
26
|
+
min-height: ${e=>o.getSizeValueWithUnits(e.theme,e.size)};
|
|
27
|
+
max-height: ${e=>o.getSizeValueWithUnits(e.theme,e.size)};
|
|
28
|
+
color: ${e=>o.getColorRgbaValue(e.theme,"Input",e.focused===!0?"primary":e.color,"enabled","text")};
|
|
29
|
+
caret-color: ${e=>o.getColorRgbaValue(e.theme,"Input",e.color,"enabled","caret")};
|
|
30
30
|
padding-right: ${e=>e.suffix?"0":"0.75rem"};
|
|
31
31
|
padding-left: ${e=>e.prefix?"0":"0.75rem"};
|
|
32
32
|
|
|
33
33
|
&::placeholder {
|
|
34
|
-
color: ${e=>
|
|
34
|
+
color: ${e=>o.getColorRgbaValue(e.theme,"Input",e.color,"enabled","placeholder")};
|
|
35
35
|
}
|
|
36
36
|
|
|
37
37
|
&:read-only {
|
|
@@ -39,7 +39,7 @@
|
|
|
39
39
|
}
|
|
40
40
|
|
|
41
41
|
&:disabled {
|
|
42
|
-
${e=>
|
|
42
|
+
${e=>o.getDisabledStateCss(e.theme)}
|
|
43
43
|
background: none;
|
|
44
44
|
}
|
|
45
|
-
`,
|
|
45
|
+
`,z=l.forwardRef((e,k)=>{const{disabled:T,readOnly:x,debounceTime:N=0,step:O=1,min:E=Number.MIN_SAFE_INTEGER,max:_=Number.MAX_SAFE_INTEGER,prefix:m,suffix:y,placeholder:q,value:n,defaultValue:P,onChange:s,onBlur:g,onFocus:b,onKeyDown:h,className:j="",style:w={},size:$="small",color:u="primary",...F}=e,i=X.useTheme(),d=l.useRef(n||P||""),[W,V]=l.useState(n||P||""),[f,C]=l.useState(!1);l.useEffect(()=>{n!=null&&(d.current=n,V(d.current))},[n]);const U=l.useCallback(K.debounce((t,a)=>D(t,a),N),[s]),D=(t,a)=>{s&&(s==null||s(t,a))},A=t=>{d.current=t.target.value,V(d.current),U(t,t.target.value)},B=t=>{C(!0),b==null||b(t)},G=t=>{C(!1),g==null||g(t)},M=t=>{var a,S,I;((S=(a=t==null?void 0:t.target)==null?void 0:a.value)==null?void 0:S.length)>0&&(t.key==="+"||t.key==="-")&&t.preventDefault(),((I=t==null?void 0:t.target)==null?void 0:I.value)===""&&(t.key==="+"||t.key==="-")&&(t.target.value=t.key),h==null||h(t)};return c.jsxs(H,{style:w,className:j,theme:i,color:u,size:$,focused:f,disabled:T,readOnly:x,children:[m&&c.jsx(R,{theme:i,color:u,focused:f,className:"lnc-input-prefix",children:m}),c.jsx(L,{ref:k,type:"number",theme:i,color:u,size:$,placeholder:q,prefix:m,suffix:y,disabled:T,readOnly:x,step:O,min:E,max:_,value:W,onFocus:B,onBlur:G,onChange:A,onKeyDown:M,...F}),y&&c.jsx(J,{theme:i,color:u,focused:f,className:"lnc-input-suffix",children:y})]})});z.propTypes={id:r.PropTypes.any,value:r.PropTypes.any,defaultValue:r.PropTypes.any,disabled:r.PropTypes.bool,readOnly:r.PropTypes.bool,debounceTime:r.PropTypes.number,step:r.PropTypes.number,min:r.PropTypes.number,max:r.PropTypes.number,prefix:r.PropTypes.oneOfType([r.PropTypes.string,r.PropTypes.element]),suffix:r.PropTypes.oneOfType([r.PropTypes.string,r.PropTypes.element]),placeholder:r.PropTypes.string,tabIndex:r.PropTypes.number,onChange:r.PropTypes.func,onBlur:r.PropTypes.func,onFocus:r.PropTypes.func,className:r.PropTypes.string,style:r.PropTypes.object,size:r.PropTypes.oneOf(["small","medium","large"]),color:r.PropTypes.oneOf(["primary","secondary","success","danger","warning","information","neutral","gray"])};module.exports=z;
|
package/dist/NumberInput.js
CHANGED
|
@@ -1,16 +1,16 @@
|
|
|
1
|
-
import { jsxs as
|
|
2
|
-
import { P as
|
|
3
|
-
import { forwardRef as
|
|
4
|
-
import { d as
|
|
1
|
+
import { jsxs as K, jsx as p } from "react/jsx-runtime";
|
|
2
|
+
import { P as t } from "./index-S5Cd7WrG.js";
|
|
3
|
+
import { forwardRef as M, useRef as U, useState as V, useEffect as X, useCallback as q } from "react";
|
|
4
|
+
import { d as H } from "./index-CkWvbrVT.js";
|
|
5
5
|
import { s as c } from "./emotion-styled.browser.esm-BNN1dTl3.js";
|
|
6
|
-
import { d as
|
|
7
|
-
import { u as
|
|
8
|
-
const
|
|
6
|
+
import { d as s, b as l, a as J, e as L, h as O, c as Q } from "./utils-WHYrEnYF.js";
|
|
7
|
+
import { u as Y } from "./emotion-element-f0de968e.browser.esm-CkCiQliQ.js";
|
|
8
|
+
const Z = c.div`
|
|
9
9
|
display: flex;
|
|
10
10
|
align-items: center;
|
|
11
11
|
|
|
12
|
-
min-height: ${(e) =>
|
|
13
|
-
max-height: ${(e) =>
|
|
12
|
+
min-height: ${(e) => s(e.theme, e.size)};
|
|
13
|
+
max-height: ${(e) => s(e.theme, e.size)};
|
|
14
14
|
background-color: ${(e) => l(
|
|
15
15
|
e.theme,
|
|
16
16
|
"Input",
|
|
@@ -26,9 +26,9 @@ const Q = c.div`
|
|
|
26
26
|
e.disabled === !0 ? "disabled" : "enabled",
|
|
27
27
|
"border"
|
|
28
28
|
)};
|
|
29
|
-
border-radius: ${(e) =>
|
|
29
|
+
border-radius: ${(e) => J(e.theme, "regular")};
|
|
30
30
|
|
|
31
|
-
${(e) => e.focused && e.readOnly !== !0 ?
|
|
31
|
+
${(e) => e.focused && e.readOnly !== !0 ? L(e.theme) : ""}
|
|
32
32
|
${(e) => e.disabled === !0 ? O(e.theme) : ""}
|
|
33
33
|
`, z = c.span`
|
|
34
34
|
padding: 0 12px;
|
|
@@ -39,7 +39,7 @@ const Q = c.div`
|
|
|
39
39
|
"enabled",
|
|
40
40
|
"prefix"
|
|
41
41
|
)};
|
|
42
|
-
`,
|
|
42
|
+
`, v = c(z)``, ee = c.input`
|
|
43
43
|
background: none;
|
|
44
44
|
border: none;
|
|
45
45
|
outline: none;
|
|
@@ -47,9 +47,9 @@ const Q = c.div`
|
|
|
47
47
|
padding-bottom: 0.625rem;
|
|
48
48
|
width: 100%;
|
|
49
49
|
|
|
50
|
-
${(e) =>
|
|
51
|
-
min-height: ${(e) =>
|
|
52
|
-
max-height: ${(e) =>
|
|
50
|
+
${(e) => Q(e.theme, "Input", e.size, "enabled")}
|
|
51
|
+
min-height: ${(e) => s(e.theme, e.size)};
|
|
52
|
+
max-height: ${(e) => s(e.theme, e.size)};
|
|
53
53
|
color: ${(e) => l(
|
|
54
54
|
e.theme,
|
|
55
55
|
"Input",
|
|
@@ -79,18 +79,18 @@ const Q = c.div`
|
|
|
79
79
|
${(e) => O(e.theme)}
|
|
80
80
|
background: none;
|
|
81
81
|
}
|
|
82
|
-
`,
|
|
82
|
+
`, ae = M((e, E) => {
|
|
83
83
|
const {
|
|
84
84
|
disabled: x,
|
|
85
85
|
readOnly: $,
|
|
86
|
-
debounceTime:
|
|
87
|
-
step:
|
|
88
|
-
min:
|
|
89
|
-
max:
|
|
86
|
+
debounceTime: R = 0,
|
|
87
|
+
step: F = 1,
|
|
88
|
+
min: w = Number.MIN_SAFE_INTEGER,
|
|
89
|
+
max: B = Number.MAX_SAFE_INTEGER,
|
|
90
90
|
prefix: m,
|
|
91
91
|
suffix: f,
|
|
92
|
-
placeholder:
|
|
93
|
-
value:
|
|
92
|
+
placeholder: D,
|
|
93
|
+
value: n,
|
|
94
94
|
defaultValue: I,
|
|
95
95
|
//----------------
|
|
96
96
|
onChange: o,
|
|
@@ -98,26 +98,26 @@ const Q = c.div`
|
|
|
98
98
|
onFocus: b,
|
|
99
99
|
onKeyDown: g,
|
|
100
100
|
//----------------
|
|
101
|
-
className:
|
|
102
|
-
style:
|
|
101
|
+
className: _ = "",
|
|
102
|
+
style: j = {},
|
|
103
103
|
size: C = "small",
|
|
104
104
|
color: u = "primary",
|
|
105
|
-
...
|
|
106
|
-
} = e, d =
|
|
107
|
-
|
|
108
|
-
|
|
109
|
-
}, [
|
|
110
|
-
const
|
|
111
|
-
|
|
105
|
+
...A
|
|
106
|
+
} = e, d = Y(), i = U(n || I || ""), [P, k] = V(n || I || ""), [y, N] = V(!1);
|
|
107
|
+
X(() => {
|
|
108
|
+
n != null && (i.current = n, k(i.current));
|
|
109
|
+
}, [n]);
|
|
110
|
+
const W = q(
|
|
111
|
+
H((a, r) => G(a, r), R),
|
|
112
112
|
[o]
|
|
113
|
-
),
|
|
114
|
-
o && (o == null || o(
|
|
113
|
+
), G = (a, r) => {
|
|
114
|
+
o && (o == null || o(a, r));
|
|
115
115
|
};
|
|
116
|
-
return /* @__PURE__ */
|
|
117
|
-
|
|
116
|
+
return /* @__PURE__ */ K(
|
|
117
|
+
Z,
|
|
118
118
|
{
|
|
119
|
-
style:
|
|
120
|
-
className:
|
|
119
|
+
style: j,
|
|
120
|
+
className: _,
|
|
121
121
|
theme: d,
|
|
122
122
|
color: u,
|
|
123
123
|
size: C,
|
|
@@ -136,40 +136,40 @@ const Q = c.div`
|
|
|
136
136
|
}
|
|
137
137
|
),
|
|
138
138
|
/* @__PURE__ */ p(
|
|
139
|
-
|
|
139
|
+
ee,
|
|
140
140
|
{
|
|
141
|
-
ref:
|
|
141
|
+
ref: E,
|
|
142
142
|
type: "number",
|
|
143
143
|
theme: d,
|
|
144
144
|
color: u,
|
|
145
145
|
size: C,
|
|
146
|
-
placeholder:
|
|
146
|
+
placeholder: D,
|
|
147
147
|
prefix: m,
|
|
148
148
|
suffix: f,
|
|
149
149
|
disabled: x,
|
|
150
150
|
readOnly: $,
|
|
151
|
-
step:
|
|
152
|
-
min:
|
|
153
|
-
max:
|
|
154
|
-
value:
|
|
155
|
-
onFocus: (
|
|
156
|
-
|
|
151
|
+
step: F,
|
|
152
|
+
min: w,
|
|
153
|
+
max: B,
|
|
154
|
+
value: P,
|
|
155
|
+
onFocus: (a) => {
|
|
156
|
+
N(!0), b == null || b(a);
|
|
157
157
|
},
|
|
158
|
-
onBlur: (
|
|
159
|
-
|
|
158
|
+
onBlur: (a) => {
|
|
159
|
+
N(!1), h == null || h(a);
|
|
160
160
|
},
|
|
161
|
-
onChange: (
|
|
162
|
-
|
|
161
|
+
onChange: (a) => {
|
|
162
|
+
i.current = a.target.value, k(i.current), W(a, a.target.value);
|
|
163
163
|
},
|
|
164
|
-
onKeyDown: (
|
|
165
|
-
var r, T;
|
|
166
|
-
((
|
|
164
|
+
onKeyDown: (a) => {
|
|
165
|
+
var r, S, T;
|
|
166
|
+
((S = (r = a == null ? void 0 : a.target) == null ? void 0 : r.value) == null ? void 0 : S.length) > 0 && (a.key === "+" || a.key === "-") && a.preventDefault(), ((T = a == null ? void 0 : a.target) == null ? void 0 : T.value) === "" && (a.key === "+" || a.key === "-") && (a.target.value = a.key), g == null || g(a);
|
|
167
167
|
},
|
|
168
|
-
...
|
|
168
|
+
...A
|
|
169
169
|
}
|
|
170
170
|
),
|
|
171
171
|
f && /* @__PURE__ */ p(
|
|
172
|
-
|
|
172
|
+
v,
|
|
173
173
|
{
|
|
174
174
|
theme: d,
|
|
175
175
|
color: u,
|
|
@@ -182,55 +182,55 @@ const Q = c.div`
|
|
|
182
182
|
}
|
|
183
183
|
);
|
|
184
184
|
});
|
|
185
|
-
|
|
186
|
-
id:
|
|
187
|
-
value:
|
|
188
|
-
defaultValue:
|
|
189
|
-
disabled:
|
|
190
|
-
readOnly:
|
|
185
|
+
ae.propTypes = {
|
|
186
|
+
id: t.any,
|
|
187
|
+
value: t.any,
|
|
188
|
+
defaultValue: t.any,
|
|
189
|
+
disabled: t.bool,
|
|
190
|
+
readOnly: t.bool,
|
|
191
191
|
/**
|
|
192
192
|
* Time in miliseconds before onChange event fires after it has been triggered.
|
|
193
193
|
*/
|
|
194
|
-
debounceTime:
|
|
194
|
+
debounceTime: t.number,
|
|
195
195
|
/**
|
|
196
196
|
* The amount that is added to the current value in the input if its incremented using the arrows/spinners.
|
|
197
197
|
*/
|
|
198
|
-
step:
|
|
198
|
+
step: t.number,
|
|
199
199
|
/**
|
|
200
200
|
* Minimum number value user can input.
|
|
201
201
|
*/
|
|
202
|
-
min:
|
|
202
|
+
min: t.number,
|
|
203
203
|
/**
|
|
204
204
|
* Maximum number value user can input.
|
|
205
205
|
*/
|
|
206
|
-
max:
|
|
206
|
+
max: t.number,
|
|
207
207
|
/**
|
|
208
208
|
* Reserved space before input. Intented to be used with plain text or `Icon` component.
|
|
209
209
|
*/
|
|
210
|
-
prefix:
|
|
210
|
+
prefix: t.oneOfType([t.string, t.element]),
|
|
211
211
|
/**
|
|
212
212
|
* Reserved space after input. Intented to be used with plain text or `Icon` component.
|
|
213
213
|
*/
|
|
214
|
-
suffix:
|
|
215
|
-
placeholder:
|
|
216
|
-
tabIndex:
|
|
214
|
+
suffix: t.oneOfType([t.string, t.element]),
|
|
215
|
+
placeholder: t.string,
|
|
216
|
+
tabIndex: t.number,
|
|
217
217
|
/**
|
|
218
218
|
* `(event, value) => void`
|
|
219
219
|
*/
|
|
220
|
-
onChange:
|
|
220
|
+
onChange: t.func,
|
|
221
221
|
/**
|
|
222
222
|
* `(event) => void`
|
|
223
223
|
*/
|
|
224
|
-
onBlur:
|
|
224
|
+
onBlur: t.func,
|
|
225
225
|
/**
|
|
226
226
|
* `(event) => void`
|
|
227
227
|
*/
|
|
228
|
-
onFocus:
|
|
228
|
+
onFocus: t.func,
|
|
229
229
|
//----------------
|
|
230
|
-
className:
|
|
231
|
-
style:
|
|
232
|
-
size:
|
|
233
|
-
color:
|
|
230
|
+
className: t.string,
|
|
231
|
+
style: t.object,
|
|
232
|
+
size: t.oneOf(["small", "medium", "large"]),
|
|
233
|
+
color: t.oneOf([
|
|
234
234
|
"primary",
|
|
235
235
|
"secondary",
|
|
236
236
|
"success",
|
|
@@ -242,5 +242,5 @@ ee.propTypes = {
|
|
|
242
242
|
])
|
|
243
243
|
};
|
|
244
244
|
export {
|
|
245
|
-
|
|
245
|
+
ae as default
|
|
246
246
|
};
|
|
@@ -428,4 +428,4 @@
|
|
|
428
428
|
align-items: center;
|
|
429
429
|
gap: 0.5rem;
|
|
430
430
|
}
|
|
431
|
-
`,ve=i.forwardRef(({},e)=>{const o=z.useTheme();return t.jsxs(ye,{ref:e,theme:o,children:[t.jsx("div",{className:"campaign__left-section",children:t.jsx(X,{theme:o,width:"15rem",height:"15rem",borderRadius:"edged"})}),t.jsxs("div",{className:"campaign__right-section",children:[t.jsxs(be,{theme:o,children:[t.jsx(U,{heightCoeff:.75,theme:o,width:"35%"}),t.jsx(U,{heightCoeff:1.25,theme:o}),t.jsx(U,{heightCoeff:3,theme:o})]}),t.jsxs("div",{className:"campaign__user",children:[t.jsx(X,{theme:o,width:"2.5rem",height:"2.5rem",borderRadius:"curved"}),t.jsx(U,{theme:o,width:"75%"})]})]})]})}),$e=({itemsCount:e=5,keyPrefix:o})=>t.jsx(t.Fragment,{children:Array.from({length:e},(a,l)=>t.jsx(ve,{},`${o}-skeleton-campaign-card-${l}`))}),je=({children:e,fallbackComponent:o=t.jsx(t.Fragment,{}),isLoading:a=!1,itemsCount:l=5,keyPrefix:f})=>t.jsx(i.Suspense,{fallback:o,children:a===!0?t.jsx($e,{itemsCount:l,keyPrefix:f}):e}),De=ie(),Te=i.memo(K),Se=i.forwardRef(({sellerType:e="Shop",items:o=[],title:a,isLoading:l,onSelectCard:f=()=>{},onSelectShop:c=()=>{},getImage:s=()=>{},customScrollSize:g,campaignSingleText:b,salesCampaignTypes:m=[],startsInPrefixTextPlural:$,startsinSuffixTextPlural:d,startsInPrefixTextSingular:j,startsinSuffixTextSingular:x},y)=>{const u=i.useRef(),D=i.useRef(),T=De(),N=Y.useDetectMobile(),[F,S]=i.useState(0),h=i.useMemo(()=>{var P;return(P=o==null?void 0:o.slice(0,6))==null?void 0:P.map((r,_)=>t.jsx(Te,{className:"campaign-item",ref:_===0?D:null,coverPhoto:s(r==null?void 0:r.coverPhoto,(r==null?void 0:r.uuid)||(r==null?void 0:r.campaignUuid)),description:r==null?void 0:r.description,endDate:r==null?void 0:r.endDate,salesPackages:r==null?void 0:r.salesPackages,sellerType:e,shopImage:r==null?void 0:r.profileImage,shopName:r==null?void 0:r.shopName,shopUuid:r==null?void 0:r.shopUuid,startDate:r==null?void 0:r.startDate,title:r==null?void 0:r.name,uuid:r==null?void 0:r.campaignUuid,onSelectCard:()=>f(r==null?void 0:r.campaignUuid,r==null?void 0:r.shopUuid),onSelectShop:()=>c(r==null?void 0:r.shopUuid),campaignSingleText:b,salesCampaignTypes:m,startsInPrefixTextPlural:$,startsinSuffixTextPlural:d,startsInPrefixTextSingular:j,startsinSuffixTextSingular:x,themeData:r==null?void 0:r.themeData},`campaign__item__${_}__${r==null?void 0:r.startDate}___${r==null?void 0:r.endDate}__${T}`))},[T,o]);i.useEffect(()=>{var P;S(g??((P=D==null?void 0:D.current)==null?void 0:P.offsetWidth))},[h,T]);const E=N?(h==null?void 0:h.length)>1:(h==null?void 0:h.length)>2;return t.jsx(t.Fragment,{children:(h==null?void 0:h.length)>0&&t.jsx(we,{ref:y,className:"row-section-scroll",lastItemIdx:(h==null?void 0:h.length)+1,children:t.jsx(Q,{arrowsVisibleOnHover:!1,columnGap:"0",methodsRef:u,mobileHoverScrollButtons:!0,noArrows:!0,padding:"0.25rem 0",rightAlignArrows:!0,elementsCount:o==null?void 0:o.length,scrollBySize:N?F:F*2+24,showTimesBtn:!1,title:a,onShowEnd:()=>{},arrowsZIndex:11,showArrows:E,children:t.jsx(je,{isLoading:l,itemsCount:2,keyPrefix:"sales-camp",children:h})},`scroll-${T}`)})})});module.exports=Se;
|
|
431
|
+
`,ve=i.forwardRef(({},e)=>{const o=z.useTheme();return t.jsxs(ye,{ref:e,theme:o,children:[t.jsx("div",{className:"campaign__left-section",children:t.jsx(X,{theme:o,width:"15rem",height:"15rem",borderRadius:"edged"})}),t.jsxs("div",{className:"campaign__right-section",children:[t.jsxs(be,{theme:o,children:[t.jsx(U,{heightCoeff:.75,theme:o,width:"35%"}),t.jsx(U,{heightCoeff:1.25,theme:o}),t.jsx(U,{heightCoeff:3,theme:o})]}),t.jsxs("div",{className:"campaign__user",children:[t.jsx(X,{theme:o,width:"2.5rem",height:"2.5rem",borderRadius:"curved"}),t.jsx(U,{theme:o,width:"75%"})]})]})]})}),$e=({itemsCount:e=5,keyPrefix:o})=>t.jsx(t.Fragment,{children:Array.from({length:e},(a,l)=>t.jsx(ve,{},`${o}-skeleton-campaign-card-${l}`))}),je=({children:e,fallbackComponent:o=t.jsx(t.Fragment,{}),isLoading:a=!1,itemsCount:l=5,keyPrefix:f})=>t.jsx(i.Suspense,{fallback:o,children:a===!0?t.jsx($e,{itemsCount:l,keyPrefix:f}):e}),De=ie(),Te=i.memo(K),Se=i.forwardRef(({sellerType:e="Shop",items:o=[],title:a,isLoading:l,onSelectCard:f=()=>{},onSelectShop:c=()=>{},getImage:s=()=>{},customScrollSize:g,campaignSingleText:b,salesCampaignTypes:m=[],startsInPrefixTextPlural:$,startsinSuffixTextPlural:d,startsInPrefixTextSingular:j,startsinSuffixTextSingular:x},y)=>{const u=i.useRef(),D=i.useRef(),T=De(),N=Y.useDetectMobile(),[F,S]=i.useState(0),h=i.useMemo(()=>{var P;return(P=o==null?void 0:o.slice(0,6))==null?void 0:P.map((r,_)=>t.jsx(Te,{className:"campaign-item",ref:_===0?D:null,coverPhoto:s(r==null?void 0:r.coverPhoto,(r==null?void 0:r.uuid)||(r==null?void 0:r.campaignUuid)),description:r==null?void 0:r.description,endDate:r==null?void 0:r.endDate,salesPackages:r==null?void 0:r.salesPackages,sellerType:e,shopImage:r==null?void 0:r.profileImage,shopName:r==null?void 0:r.shopName,shopUuid:r==null?void 0:r.shopUuid,startDate:r==null?void 0:r.startDate,title:r==null?void 0:r.name,uuid:r==null?void 0:r.campaignUuid,onSelectCard:()=>f(r==null?void 0:r.campaignUuid,r==null?void 0:r.shopUuid),onSelectShop:()=>c(r==null?void 0:r.shopUuid),campaignSingleText:b,salesCampaignTypes:m,startsInPrefixTextPlural:$,startsinSuffixTextPlural:d,startsInPrefixTextSingular:j,startsinSuffixTextSingular:x,themeData:r==null?void 0:r.themeData},`campaign__item__${_}__${r==null?void 0:r.startDate}___${r==null?void 0:r.endDate}__${T}`))},[T,o]);i.useEffect(()=>{var P;S(g??((P=D==null?void 0:D.current)==null?void 0:P.offsetWidth))},[h,T]);const E=N?(h==null?void 0:h.length)>1:(h==null?void 0:h.length)>2;return t.jsx(t.Fragment,{children:(h==null?void 0:h.length)>0&&t.jsx(we,{ref:y,className:"row-section-scroll",lastItemIdx:(h==null?void 0:h.length)+1,children:t.jsx(Q,{arrowsVisibleOnHover:!1,columnGap:"0",methodsRef:u,mobileHoverScrollButtons:!0,noArrows:!0,padding:"0.25rem 0",rightAlignArrows:!0,elementsCount:o==null?void 0:o.length,scrollBySize:N?F+1:F*2+24,showTimesBtn:!1,title:a,onShowEnd:()=>{},arrowsZIndex:11,showArrows:E,children:t.jsx(je,{isLoading:l,itemsCount:2,keyPrefix:"sales-camp",children:h})},`scroll-${T}`)})})});module.exports=Se;
|
|
@@ -1004,7 +1004,7 @@ const Ee = b.div`
|
|
|
1004
1004
|
padding: "0.25rem 0",
|
|
1005
1005
|
rightAlignArrows: !0,
|
|
1006
1006
|
elementsCount: o == null ? void 0 : o.length,
|
|
1007
|
-
scrollBySize: I ? P : P * 2 + 24,
|
|
1007
|
+
scrollBySize: I ? P + 1 : P * 2 + 24,
|
|
1008
1008
|
showTimesBtn: !1,
|
|
1009
1009
|
title: a,
|
|
1010
1010
|
onShowEnd: () => {
|