kupos-ui-components-lib 9.6.5 → 9.6.7

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.
@@ -0,0 +1,547 @@
1
+ import React from "react";
2
+ import LottiePlayer from "../../assets/LottiePlayer";
3
+ import commonService from "../../utils/CommonService";
4
+
5
+ const HARDCODED_OPERATORS = [
6
+ {
7
+ logo: "https://upload.wikimedia.org/wikipedia/commons/thumb/4/4e/Turbus_logo.svg/320px-Turbus_logo.svg.png",
8
+ name: "Turbus",
9
+ time: "7:00 am",
10
+ seatsAvailable: "3 disponibles",
11
+ },
12
+ {
13
+ logo: "https://upload.wikimedia.org/wikipedia/commons/thumb/6/6e/Pullman_Bus_logo.svg/320px-Pullman_Bus_logo.svg.png",
14
+ name: "Pullmanbus",
15
+ time: "8:00 am",
16
+ seatsAvailable: "5 disponibles",
17
+ },
18
+ {
19
+ logo: "https://upload.wikimedia.org/wikipedia/commons/thumb/4/4e/Turbus_logo.svg/320px-Turbus_logo.svg.png",
20
+ name: "Expreso Santa C...",
21
+ time: "9:00 am",
22
+ seatsAvailable: "3 disponibles",
23
+ },
24
+ ];
25
+
26
+ const HARDCODED_COUNTDOWN = "09:55";
27
+
28
+ const HOW_IT_WORKS_STEPS = [
29
+ {
30
+ icon: "flexible",
31
+ name: "1. Salida flexible",
32
+ text: "Viajas en un horario entre las 07:00 y las 10:00 AM del día elegido.",
33
+ },
34
+ {
35
+ icon: "bus",
36
+ name: "2. Empresa asignada",
37
+ text: "Una de las empresas disponibles confirma tu viaje una vez pagado.",
38
+ },
39
+ {
40
+ icon: "price",
41
+ name: "3. Precio garantizado",
42
+ text: "Al seleccionar este servicio aseguras el precio reducido.",
43
+ },
44
+ {
45
+ icon: "ticket",
46
+ name: "4. ¡Listo!",
47
+ text: "Recibe todos los detalles de tu viaje al instante tras la compra.",
48
+ },
49
+ ];
50
+
51
+ const FeatureStepIcon = ({ icon }) => {
52
+ const iconClassName = "h-[30px] w-[30px] text-[#171717]";
53
+
54
+ switch (icon) {
55
+ case "flexible":
56
+ return (
57
+ <svg
58
+ className={iconClassName}
59
+ viewBox="0 0 40 40"
60
+ fill="none"
61
+ aria-hidden="true"
62
+ >
63
+ <path
64
+ d="M31.5 13.4A13 13 0 0 0 8 12.3"
65
+ stroke="currentColor"
66
+ strokeWidth="2.2"
67
+ strokeLinecap="round"
68
+ />
69
+ <path
70
+ d="m7.4 7.7.2 5.2 5.1-1.2M8.5 26.6A13 13 0 0 0 32 27.7"
71
+ stroke="currentColor"
72
+ strokeWidth="2.2"
73
+ strokeLinecap="round"
74
+ strokeLinejoin="round"
75
+ />
76
+ <path
77
+ d="m32.6 32.3-.2-5.2-5.1 1.2"
78
+ stroke="currentColor"
79
+ strokeWidth="2.2"
80
+ strokeLinecap="round"
81
+ strokeLinejoin="round"
82
+ />
83
+ </svg>
84
+ );
85
+ case "bus":
86
+ return (
87
+ <svg
88
+ className={iconClassName}
89
+ viewBox="0 0 40 40"
90
+ fill="none"
91
+ aria-hidden="true"
92
+ >
93
+ <rect
94
+ x="8"
95
+ y="4.5"
96
+ width="24"
97
+ height="27"
98
+ rx="2.5"
99
+ stroke="currentColor"
100
+ strokeWidth="2.2"
101
+ />
102
+ <path
103
+ d="M8 18.5h24M12 9h16M12 26h4m8 0h4M11 31.5v3h5v-3m8 0v3h5v-3M5.5 10v7m29-7v7"
104
+ stroke="currentColor"
105
+ strokeWidth="2.2"
106
+ strokeLinecap="round"
107
+ />
108
+ </svg>
109
+ );
110
+ case "price":
111
+ return (
112
+ <svg
113
+ className={iconClassName}
114
+ viewBox="0 0 40 40"
115
+ fill="none"
116
+ aria-hidden="true"
117
+ >
118
+ <circle
119
+ cx="20"
120
+ cy="20"
121
+ r="14"
122
+ stroke="currentColor"
123
+ strokeWidth="2.2"
124
+ />
125
+ <path
126
+ d="M23.7 15.4c-1-.7-2.2-1-3.6-1-2.2 0-3.8 1.1-3.8 2.8 0 4.2 7.4 1.8 7.4 5.8 0 1.8-1.6 2.8-4 2.8-1.5 0-2.9-.4-4-1.2M20 11.7v2.5m0 11.8v2.4"
127
+ stroke="currentColor"
128
+ strokeWidth="2.2"
129
+ strokeLinecap="round"
130
+ />
131
+ </svg>
132
+ );
133
+ default:
134
+ return (
135
+ <svg
136
+ className={iconClassName}
137
+ viewBox="0 0 40 40"
138
+ fill="none"
139
+ aria-hidden="true"
140
+ >
141
+ <path
142
+ d="M7 11h26v6a3.5 3.5 0 0 0 0 7v6H7v-6a3.5 3.5 0 0 0 0-7v-6Z"
143
+ stroke="currentColor"
144
+ strokeWidth="2.2"
145
+ strokeLinejoin="round"
146
+ />
147
+ <path
148
+ d="M22 12.5v3m0 3v3m0 3v4"
149
+ stroke="currentColor"
150
+ strokeWidth="2.2"
151
+ strokeLinecap="round"
152
+ />
153
+ </svg>
154
+ );
155
+ }
156
+ };
157
+
158
+ const AssuranceIcon = ({ type }) => {
159
+ const iconClassName = "h-[18px] w-[18px] shrink-0 text-white";
160
+
161
+ if (type === "pending") {
162
+ return (
163
+ <svg
164
+ className={iconClassName}
165
+ viewBox="0 0 20 20"
166
+ fill="none"
167
+ aria-hidden="true"
168
+ >
169
+ <path
170
+ d="M4.2 8.2a6.2 6.2 0 1 1 .5 5.1"
171
+ stroke="currentColor"
172
+ strokeWidth="1.8"
173
+ strokeLinecap="round"
174
+ />
175
+ <path
176
+ d="M4.2 4.8v3.4h3.4"
177
+ stroke="currentColor"
178
+ strokeWidth="1.8"
179
+ strokeLinecap="round"
180
+ strokeLinejoin="round"
181
+ />
182
+ </svg>
183
+ );
184
+ }
185
+
186
+ return (
187
+ <svg
188
+ className={iconClassName}
189
+ viewBox="0 0 20 20"
190
+ fill="none"
191
+ aria-hidden="true"
192
+ >
193
+ <path
194
+ d="M10 2.2 16.3 4v5c0 4-2.4 6.8-6.3 8.7C6.1 15.8 3.7 13 3.7 9V4L10 2.2Z"
195
+ stroke="currentColor"
196
+ strokeWidth="1.6"
197
+ strokeLinejoin="round"
198
+ />
199
+ <path
200
+ d="m6.9 9.7 2.1 2.1 4.3-4.4"
201
+ stroke="currentColor"
202
+ strokeWidth="1.7"
203
+ strokeLinecap="round"
204
+ strokeLinejoin="round"
205
+ />
206
+ </svg>
207
+ );
208
+ };
209
+
210
+ const FeatureServiceUi = ({
211
+ serviceItem,
212
+ showTopLabel,
213
+ colors,
214
+ isSoldOut,
215
+ getAnimationIcon,
216
+ cityOrigin,
217
+ cityDestination,
218
+ renderIcon,
219
+ viewersConfig,
220
+ }) => {
221
+ const operators =
222
+ serviceItem?.operators?.length > 0
223
+ ? serviceItem.operators
224
+ : HARDCODED_OPERATORS;
225
+
226
+ return (
227
+ <div
228
+ className={`relative ${
229
+ serviceItem.offer_text ? "mb-[55px]" : "mb-[10px]"
230
+ } ${
231
+ serviceItem?.is_direct_trip ||
232
+ serviceItem?.train_type_label === "Tren Express (Nuevo)" ||
233
+ showTopLabel
234
+ ? "mt-[24px]"
235
+ : "mt-[20px]"
236
+ }`}
237
+ >
238
+ <div
239
+ className=""
240
+ style={{
241
+ border: "1px solid #c0c0c0",
242
+ padding: "14px",
243
+ borderRadius: "14px",
244
+ }}
245
+ >
246
+ <div className="flex justify-between items-center px-[14px] pb-[10px] text-[13.33px]">
247
+ <div className="flex items-center gap-[10px]">
248
+ <span>Salida flexible</span>
249
+ <div
250
+ className="bold-text font-[9px]"
251
+ style={{
252
+ backgroundColor: "#FF5C60",
253
+ padding: "1px 8px",
254
+ borderRadius: "4px",
255
+ color: "#fff",
256
+ }}
257
+ >
258
+ <span>AHORRAS 60%</span>
259
+ </div>
260
+ </div>
261
+ <div>
262
+ <span>
263
+ {renderIcon("fireIcon", "14px")}{" "}
264
+ <span className="bold-text">Remate</span> términa en{" "}
265
+ <span
266
+ className="bold-text text-end"
267
+ ref={(node) => commonService.startCountdown(node, 599)}
268
+ style={{
269
+ fontVariantNumeric: "tabular-nums",
270
+ display: "inline-block",
271
+ color: "#FF5C60",
272
+ }}
273
+ />
274
+ </span>
275
+ </div>
276
+ </div>
277
+ <div
278
+ id={`service-card-${serviceItem.id}`}
279
+ className="bg-[#0C1421] text-white mx-auto relative rounded-[14px] p-[14px] text-[13.33px]"
280
+ >
281
+ <div className="grid grid-cols-[1.3fr_2fr_1.2fr] gap-[16px] items-stretch">
282
+ {/* LEFT: origin, destination, flexible, time, confirmed seat */}
283
+ <div className="flex flex-col justify-between gap-[20px] py-[2px] ">
284
+ <div className="flex flex-col gap-[8px]">
285
+ <div className="flex items-center gap-[8px]">
286
+ <img
287
+ src={serviceItem.icons?.whiteOrigin}
288
+ alt="origin"
289
+ className={`w-[14px] h-[14px] shrink-0 ${
290
+ isSoldOut ? "grayscale" : ""
291
+ }`}
292
+ />
293
+ <span className="text-[13px] bold-text">
294
+ {cityOrigin?.label.split(",")[0]}
295
+ </span>
296
+ </div>
297
+ <div className="flex items-center gap-[8px]">
298
+ <img
299
+ src={serviceItem.icons?.whiteDestination}
300
+ alt="destination"
301
+ className={`w-[16px] h-[16px] shrink-0 ${
302
+ isSoldOut ? "grayscale" : ""
303
+ }`}
304
+ style={{ opacity: isSoldOut ? 0.5 : 1 }}
305
+ />
306
+ <span className="text-[13px] bold-text">
307
+ {cityDestination?.label.split(",")[0]}
308
+ </span>
309
+ </div>
310
+ </div>
311
+
312
+ <div className="flex flex-col gap-[8px]">
313
+ {/* Salida flexible badge — uses flexibleIcon */}
314
+ {/* <div
315
+ className="flex items-center gap-[6px] rounded-[8px] px-[8px] py-[4px] w-fit mb-[6px]"
316
+ style={{
317
+ border: "1px solid #363c48",
318
+ backgroundColor: "#1a202e",
319
+ }}
320
+ >
321
+ <img
322
+ src={serviceItem.icons?.busIcon}
323
+ alt="bus"
324
+ style={{ width: "20px", height: "20px" }}
325
+ />
326
+ <span className="text-[12px] whitespace-nowrap">
327
+ Salida flexible
328
+ </span>
329
+ </div> */}
330
+ <div className="text-[12px] bold-text whitespace-nowrap">
331
+ Entre 07:00 AM y 10:00 AM
332
+ </div>
333
+ <div className="text-[11px] bold-text">Viernes 23 de mayo</div>
334
+ </div>
335
+
336
+ <div className="flex flex-col items-start gap-[10px] text-[12px] ">
337
+ <div className="flex items-center gap-[8px]">
338
+ <AssuranceIcon type="pending" />
339
+
340
+ <span
341
+ className="text-[10px]"
342
+ style={{
343
+ lineHeight: 1.3,
344
+ }}
345
+ >
346
+ Empresa y hora a confirmar luego del pago.
347
+ </span>
348
+ </div>
349
+ <div className="flex items-center gap-[8px]">
350
+ <AssuranceIcon type="secured" />
351
+
352
+ <span
353
+ className="text-[10px]"
354
+ style={{
355
+ lineHeight: 1.3,
356
+ }}
357
+ >
358
+ Tu compra está 100% asegurada.
359
+ </span>
360
+ </div>
361
+ </div>
362
+ </div>
363
+
364
+ {/* MIDDLE: competing operators + viewers */}
365
+ <div className="px-[16px] flex flex-col items-center justify-between gap-[12px] py-[2px] border-r border-[#363c48] border-l border-[#363c48]">
366
+ <div className="text-center">
367
+ <div className="bold-text text-[14px]">
368
+ 3 operadores compitiendo por tu compra
369
+ </div>
370
+ {/* <div className="text-[12px] mt-[8px]">
371
+ Empresa a confirmar después de tu pago
372
+ </div> */}
373
+ </div>
374
+
375
+ <div className="flex items-stretch justify-center gap-[8px] w-full mb-[16px]">
376
+ {operators.map((op, idx) => (
377
+ <div
378
+ key={idx}
379
+ className="flex flex-col items-center justify-center gap-[8px] rounded-[8px]"
380
+ style={{
381
+ width: "140px",
382
+ // height: "80px",
383
+ border: "1px solid #363c48",
384
+ backgroundColor: "#1a202e",
385
+ padding: "14px",
386
+ }}
387
+ >
388
+ <img
389
+ src={serviceItem.operator_details[0]}
390
+ alt={op.name}
391
+ className={`h-[24px] w-auto object-contain ${
392
+ isSoldOut ? "grayscale" : ""
393
+ }`}
394
+ />
395
+ <span className="text-[11px] truncate max-w-full text-center">
396
+ {serviceItem.operator_details[2]}
397
+ </span>
398
+ <div className="bg-[#FF8F45] text-white text-[12px] font-bold px-[16px] py-[4px] rounded-[4px] bold-text">
399
+ <span>{op?.time}</span>
400
+ </div>
401
+ <span className="text-[10px] mt-[6px]">
402
+ {op?.seatsAvailable}
403
+ </span>
404
+ </div>
405
+ ))}
406
+ </div>
407
+
408
+ <div
409
+ className="flex items-center justify-center gap-[6px] text-[12px]"
410
+ style={{
411
+ border: "1px solid #363c48",
412
+ backgroundColor: "#1a202e",
413
+ padding: "8px 14px",
414
+ borderRadius: "24px",
415
+ width: "430px",
416
+ }}
417
+ >
418
+ <img
419
+ src={serviceItem.icons?.userIcon}
420
+ alt="eye"
421
+ style={{ width: "16px", height: "16px" }}
422
+ />
423
+ <span>
424
+ <span className="bold-text text-white">
425
+ {" "}
426
+ <span
427
+ className="bold-text"
428
+ ref={(node) =>
429
+ commonService.startViewerCount(node, viewersConfig)
430
+ }
431
+ style={{
432
+ fontVariantNumeric: "tabular-nums",
433
+ color: "#FF5C60",
434
+ }}
435
+ />{" "}
436
+ <span
437
+ style={{
438
+ color: "#FF5C60",
439
+ }}
440
+ >
441
+ personas
442
+ </span>
443
+ </span>{" "}
444
+ viendo este viaje |{" "}
445
+ <span
446
+ className="bold-text"
447
+ ref={(node) =>
448
+ commonService.startComprandoCount(node, 4, 16)
449
+ }
450
+ style={{ fontVariantNumeric: "tabular-nums" }}
451
+ />{" "}
452
+ han comprado
453
+ </span>
454
+ </div>
455
+ </div>
456
+
457
+ {/* RIGHT: price + button */}
458
+ <div className="flex flex-col justify-center gap-[12px] py-[2px] relative mb-[16px]">
459
+ <div
460
+ className="flex flex-col gap-[6px] "
461
+ style={{
462
+ alignItems: "center",
463
+ }}
464
+ >
465
+ <span className="text-[#FF8F45] bold-text text-[26px] leading-tight">
466
+ 60% OFF
467
+ </span>
468
+ <span className="text-[#666] text-[14px] line-through">
469
+ $10.000
470
+ </span>
471
+ <span className="text-white bold-text text-[28px] leading-none">
472
+ $4.000
473
+ </span>
474
+ </div>
475
+
476
+ <button
477
+ className="flex items-center gap-[6px] px-[20px] py-[10px] rounded-[12px] text-white bold-text text-[13px] mt-[4px] justify-center border-none cursor-pointer"
478
+ style={{
479
+ backgroundColor: "#FF5C60",
480
+ }}
481
+ >
482
+ <LottiePlayer
483
+ // animationData={serviceItem.icons.flexibleAnim}
484
+ animationData={getAnimationIcon("thunderAnimation")}
485
+ width="18px"
486
+ height="18px"
487
+ />
488
+ <span className="whitespace-nowrap">¡Lo quiero!</span>
489
+ </button>
490
+ </div>
491
+
492
+ <div className="absolute bottom-[11px] right-[18px]">
493
+ <img
494
+ src={serviceItem.icons?.downArrow}
495
+ alt="down arrow"
496
+ style={{
497
+ width: "14px",
498
+ height: "8px",
499
+ filter: "brightness(0) invert(1)",
500
+ }}
501
+ />
502
+ </div>
503
+ </div>
504
+ </div>
505
+ <div className="px-[16px] pt-[14px] pb-[6px] text-[13.33px]">
506
+ <span className="bold-text">¿Cómo funciona?</span>
507
+
508
+ <div className="mt-[14px] grid grid-cols-4 gap-[20px] px-[16px] ">
509
+ {HOW_IT_WORKS_STEPS.map((step) => (
510
+ <div
511
+ key={step.name}
512
+ className="flex flex-col items-center text-center text-[#272727]"
513
+ >
514
+ <FeatureStepIcon icon={step.icon} />
515
+ <span className="bold-text mt-[10px] text-[12px] leading-[14px]">
516
+ {step.name}
517
+ </span>
518
+ <span className="mt-[2px] max-w-[220px] text-[12px] leading-[14px] text-[#4a4a4a]">
519
+ {step.text}
520
+ </span>
521
+ </div>
522
+ ))}
523
+ </div>
524
+ </div>
525
+ </div>
526
+
527
+ {/* TOP BADGE — "Remate | Termina en 09:55 min" hardcoded, no countdown hook */}
528
+ {/* {showTopLabel && (
529
+ <div className="absolute -top-[11px] left-0 w-full flex items-center justify-end gap-[12px] pr-[15px] z-10 ">
530
+ <div className="flex items-center gap-[6px] py-[5px] px-[14px] rounded-[38px] text-[12.5px] bg-[#FF8F45] text-white whitespace-nowrap">
531
+ <LottiePlayer
532
+ animationData={getAnimationIcon("bombAnimation")}
533
+ width="14px"
534
+ height="14px"
535
+ />
536
+ <span>
537
+ <strong>Remate</strong> | Termina en{" "}
538
+ <strong>{HARDCODED_COUNTDOWN}</strong> min
539
+ </span>
540
+ </div>
541
+ </div>
542
+ )} */}
543
+ </div>
544
+ );
545
+ };
546
+
547
+ export default FeatureServiceUi;
@@ -33,11 +33,7 @@ const StageTooltip = ({
33
33
  terminals?.[arr[i].split("||")[0].split("|")[0]] || "";
34
34
  let time = arr[i].split("||")[0].split("|")[1];
35
35
 
36
- if (direction !== 1 && i > 0) {
37
- // skip logic (same as yours)
38
- } else {
39
- formattedStages.push(`${locationName} ${time}`);
40
- }
36
+ formattedStages.push(`${locationName || terminal} ${time}`);
41
37
  }
42
38
 
43
39
  const extractTiming = (location: string) => {
@@ -65,8 +65,10 @@ const TimeRow: React.FC<TimeRowProps> = ({
65
65
  date,
66
66
  timeContent,
67
67
  isSoldOut,
68
- }) => (
69
- <div
68
+ }) => {
69
+ const formattedDate = DateService.getServiceItemDate(date);
70
+ const dotPositionClass = formattedDate.includes("dom") ? "max-[399px]:left-[53%]" : "";
71
+ return <div
70
72
  className={`flex items-center min-[420]:text-[13px] text-[12px] justify-between ${
71
73
  isSoldOut ? "text-[#c0c0c0]" : ""
72
74
  }`}
@@ -93,14 +95,14 @@ const TimeRow: React.FC<TimeRowProps> = ({
93
95
  style={{ flex: 1 }}
94
96
  >
95
97
  <span className="cursor-pointer black-text">
96
- {DateService.getServiceItemDate(date)}
98
+ {formattedDate}
97
99
  </span>
98
- <div className="absolute left-[50%]">•</div>
100
+ <div className={`absolute left-[50%] ${dotPositionClass}`}>•</div>
99
101
  <div className="font-[900] relative black-text">{timeContent}</div>
100
102
  </div>
101
103
  </div>
102
- </div>
103
- );
104
+ </div>;
105
+ };
104
106
 
105
107
  function DateTimeSectionMobile({
106
108
  onBookButtonPress,