@akinon/next 2.0.0-beta.2 → 2.0.0-beta.20
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/.eslintrc.js +12 -0
- package/CHANGELOG.md +377 -7
- package/__tests__/next-config.test.ts +83 -0
- package/__tests__/tsconfig.json +23 -0
- package/api/auth.ts +133 -44
- package/api/barcode-search.ts +59 -0
- package/api/cache.ts +41 -5
- package/api/client.ts +21 -4
- package/api/form.ts +85 -0
- package/api/image-proxy.ts +75 -0
- package/api/product-categories.ts +53 -0
- package/api/similar-product-list.ts +63 -0
- package/api/similar-products.ts +111 -0
- package/api/virtual-try-on.ts +382 -0
- package/assets/styles/index.scss +84 -0
- package/babel.config.js +6 -0
- package/bin/pz-generate-routes.js +115 -0
- package/bin/pz-prebuild.js +1 -0
- package/bin/pz-predev.js +1 -0
- package/bin/pz-run-tests.js +99 -0
- package/bin/run-prebuild-tests.js +46 -0
- package/components/accordion.tsx +20 -5
- package/components/button.tsx +51 -36
- package/components/client-root.tsx +138 -2
- package/components/file-input.tsx +65 -3
- package/components/index.ts +1 -0
- package/components/input.tsx +1 -1
- package/components/link.tsx +46 -16
- package/components/logger-popup.tsx +213 -0
- package/components/modal.tsx +32 -16
- package/components/plugin-module.tsx +62 -3
- package/components/price.tsx +2 -2
- package/components/select.tsx +1 -1
- package/components/selected-payment-option-view.tsx +21 -0
- package/components/theme-editor/blocks/accordion-block.tsx +136 -0
- package/components/theme-editor/blocks/block-renderer-registry.tsx +77 -0
- package/components/theme-editor/blocks/button-block.tsx +593 -0
- package/components/theme-editor/blocks/counter-block.tsx +348 -0
- package/components/theme-editor/blocks/divider-block.tsx +20 -0
- package/components/theme-editor/blocks/embed-block.tsx +208 -0
- package/components/theme-editor/blocks/group-block.tsx +116 -0
- package/components/theme-editor/blocks/hotspot-block.tsx +147 -0
- package/components/theme-editor/blocks/icon-block.tsx +230 -0
- package/components/theme-editor/blocks/image-block.tsx +137 -0
- package/components/theme-editor/blocks/image-gallery-block.tsx +269 -0
- package/components/theme-editor/blocks/input-block.tsx +123 -0
- package/components/theme-editor/blocks/link-block.tsx +216 -0
- package/components/theme-editor/blocks/lottie-block.tsx +325 -0
- package/components/theme-editor/blocks/map-block.tsx +89 -0
- package/components/theme-editor/blocks/slider-block.tsx +595 -0
- package/components/theme-editor/blocks/tab-block.tsx +10 -0
- package/components/theme-editor/blocks/text-block.tsx +52 -0
- package/components/theme-editor/blocks/video-block.tsx +122 -0
- package/components/theme-editor/components/action-toolbar.tsx +305 -0
- package/components/theme-editor/components/designer-overlay.tsx +74 -0
- package/components/theme-editor/components/with-designer-features.tsx +142 -0
- package/components/theme-editor/dynamic-font-loader.tsx +79 -0
- package/components/theme-editor/hooks/use-designer-features.tsx +100 -0
- package/components/theme-editor/hooks/use-external-designer.tsx +95 -0
- package/components/theme-editor/hooks/use-native-widget-data.ts +188 -0
- package/components/theme-editor/hooks/use-visibility-context.ts +27 -0
- package/components/theme-editor/placeholder-registry.ts +31 -0
- package/components/theme-editor/sections/before-after-section.tsx +245 -0
- package/components/theme-editor/sections/contact-form-section.tsx +563 -0
- package/components/theme-editor/sections/countdown-campaign-banner-section.tsx +433 -0
- package/components/theme-editor/sections/coupon-banner-section.tsx +710 -0
- package/components/theme-editor/sections/divider-section.tsx +62 -0
- package/components/theme-editor/sections/featured-product-spotlight-section.tsx +507 -0
- package/components/theme-editor/sections/find-in-store-section.tsx +1995 -0
- package/components/theme-editor/sections/hover-showcase-section.tsx +326 -0
- package/components/theme-editor/sections/image-hotspot-section.tsx +142 -0
- package/components/theme-editor/sections/installment-options-section.tsx +1065 -0
- package/components/theme-editor/sections/notification-banner-section.tsx +173 -0
- package/components/theme-editor/sections/order-tracking-lookup-section.tsx +1379 -0
- package/components/theme-editor/sections/posts-slider-section.tsx +472 -0
- package/components/theme-editor/sections/pre-order-launch-banner-section.tsx +663 -0
- package/components/theme-editor/sections/section-renderer-registry.tsx +89 -0
- package/components/theme-editor/sections/section-wrapper.tsx +135 -0
- package/components/theme-editor/sections/shipping-threshold-progress-section.tsx +586 -0
- package/components/theme-editor/sections/stats-counter-section.tsx +486 -0
- package/components/theme-editor/sections/tabs-section.tsx +578 -0
- package/components/theme-editor/theme-block.tsx +102 -0
- package/components/theme-editor/theme-placeholder-client.tsx +218 -0
- package/components/theme-editor/theme-placeholder-wrapper.tsx +732 -0
- package/components/theme-editor/theme-placeholder.tsx +288 -0
- package/components/theme-editor/theme-section.tsx +1224 -0
- package/components/theme-editor/theme-settings-context.tsx +13 -0
- package/components/theme-editor/utils/index.ts +792 -0
- package/components/theme-editor/utils/iterator-utils.ts +234 -0
- package/components/theme-editor/utils/publish-window.ts +86 -0
- package/components/theme-editor/utils/visibility-rules.ts +188 -0
- package/data/client/account.ts +17 -2
- package/data/client/api.ts +2 -0
- package/data/client/basket.ts +66 -5
- package/data/client/checkout.ts +391 -99
- package/data/client/misc.ts +38 -2
- package/data/client/product.ts +19 -2
- package/data/client/user.ts +16 -8
- package/data/server/category.ts +11 -9
- package/data/server/flatpage.ts +11 -4
- package/data/server/form.ts +15 -4
- package/data/server/landingpage.ts +11 -4
- package/data/server/list.ts +5 -4
- package/data/server/menu.ts +11 -3
- package/data/server/product.ts +111 -55
- package/data/server/seo.ts +14 -4
- package/data/server/special-page.ts +5 -4
- package/data/server/widget.ts +90 -5
- package/data/urls.ts +16 -5
- package/hocs/client/with-segment-defaults.tsx +2 -2
- package/hocs/server/with-segment-defaults.tsx +65 -20
- package/hooks/index.ts +4 -0
- package/hooks/use-localization.ts +24 -10
- package/hooks/use-logger-context.tsx +114 -0
- package/hooks/use-logger.ts +92 -0
- package/hooks/use-loyalty-availability.ts +21 -0
- package/hooks/use-payment-options.ts +2 -1
- package/hooks/use-pz-params.ts +37 -0
- package/hooks/use-router.ts +51 -14
- package/hooks/use-sentry-uncaught-errors.ts +24 -0
- package/instrumentation/index.ts +10 -1
- package/instrumentation/node.ts +2 -20
- package/jest.config.js +25 -0
- package/lib/cache-handler.mjs +534 -16
- package/lib/cache.ts +272 -37
- package/localization/index.ts +2 -1
- package/localization/provider.tsx +2 -5
- package/middlewares/bfcache-headers.ts +18 -0
- package/middlewares/checkout-provider.ts +1 -1
- package/middlewares/complete-gpay.ts +32 -26
- package/middlewares/complete-masterpass.ts +33 -26
- package/middlewares/complete-wallet.ts +182 -0
- package/middlewares/default.ts +360 -215
- package/middlewares/index.ts +10 -2
- package/middlewares/locale.ts +34 -11
- package/middlewares/masterpass-rest-callback.ts +230 -0
- package/middlewares/oauth-login.ts +200 -57
- package/middlewares/pretty-url.ts +21 -8
- package/middlewares/redirection-payment.ts +32 -26
- package/middlewares/saved-card-redirection.ts +33 -26
- package/middlewares/three-d-redirection.ts +32 -26
- package/middlewares/url-redirection.ts +11 -1
- package/middlewares/wallet-complete-redirection.ts +206 -0
- package/package.json +25 -10
- package/plugins.d.ts +19 -4
- package/plugins.js +10 -1
- package/redux/actions.ts +47 -0
- package/redux/middlewares/checkout.ts +63 -138
- package/redux/middlewares/index.ts +14 -10
- package/redux/middlewares/pre-order/address.ts +7 -2
- package/redux/middlewares/pre-order/attribute-based-shipping-option.ts +7 -1
- package/redux/middlewares/pre-order/data-source-shipping-option.ts +7 -1
- package/redux/middlewares/pre-order/delivery-option.ts +7 -1
- package/redux/middlewares/pre-order/index.ts +16 -10
- package/redux/middlewares/pre-order/installment-option.ts +8 -1
- package/redux/middlewares/pre-order/payment-option-reset.ts +37 -0
- package/redux/middlewares/pre-order/payment-option.ts +7 -1
- package/redux/middlewares/pre-order/pre-order-validation.ts +8 -3
- package/redux/middlewares/pre-order/redirection.ts +8 -2
- package/redux/middlewares/pre-order/set-pre-order.ts +6 -2
- package/redux/middlewares/pre-order/shipping-option.ts +7 -1
- package/redux/middlewares/pre-order/shipping-step.ts +5 -1
- package/redux/reducers/checkout.ts +23 -3
- package/redux/reducers/index.ts +11 -3
- package/redux/reducers/root.ts +7 -2
- package/redux/reducers/widget.ts +80 -0
- package/sentry/index.ts +69 -13
- package/tailwind/content.js +16 -0
- package/types/commerce/account.ts +5 -1
- package/types/commerce/checkout.ts +35 -1
- package/types/commerce/widget.ts +33 -0
- package/types/index.ts +101 -6
- package/types/next-auth.d.ts +2 -2
- package/types/widget.ts +80 -0
- package/utils/app-fetch.ts +7 -2
- package/utils/generate-commerce-search-params.ts +3 -2
- package/utils/get-checkout-path.ts +3 -0
- package/utils/get-root-hostname.ts +28 -0
- package/utils/index.ts +64 -10
- package/utils/localization.ts +4 -0
- package/utils/mobile-3d-iframe.ts +8 -2
- package/utils/override-middleware.ts +7 -12
- package/utils/pz-segments.ts +92 -0
- package/utils/redirect-ignore.ts +35 -0
- package/utils/redirect.ts +9 -3
- package/utils/redirection-iframe.ts +8 -2
- package/utils/widget-styles.ts +107 -0
- package/views/error-page.tsx +93 -0
- package/with-pz-config.js +13 -6
|
@@ -0,0 +1,245 @@
|
|
|
1
|
+
'use client';
|
|
2
|
+
|
|
3
|
+
import React, { useState, useRef, useEffect, useCallback } from 'react';
|
|
4
|
+
import { getResponsiveValue, resolveThemeCssVariables } from '../utils';
|
|
5
|
+
import { Section } from '../theme-section';
|
|
6
|
+
import { useThemeSettingsContext } from '../theme-settings-context';
|
|
7
|
+
import { twMerge } from 'tailwind-merge';
|
|
8
|
+
import clsx from 'clsx';
|
|
9
|
+
import ThemeBlock from '../theme-block';
|
|
10
|
+
|
|
11
|
+
interface BeforeAfterSectionProps {
|
|
12
|
+
section: Section;
|
|
13
|
+
currentBreakpoint?: string;
|
|
14
|
+
isDesigner?: boolean;
|
|
15
|
+
placeholderId?: string;
|
|
16
|
+
selectedBlockId?: string | null;
|
|
17
|
+
}
|
|
18
|
+
|
|
19
|
+
export default function BeforeAfterSection({
|
|
20
|
+
section,
|
|
21
|
+
currentBreakpoint = 'desktop',
|
|
22
|
+
isDesigner = false,
|
|
23
|
+
placeholderId = '',
|
|
24
|
+
selectedBlockId = null
|
|
25
|
+
}: BeforeAfterSectionProps) {
|
|
26
|
+
const themeSettings = useThemeSettingsContext();
|
|
27
|
+
const [sliderPosition, setSliderPosition] = useState(50);
|
|
28
|
+
const [isResizing, setIsResizing] = useState(false);
|
|
29
|
+
const containerRef = useRef<HTMLDivElement>(null);
|
|
30
|
+
const [containerWidth, setContainerWidth] = useState(0);
|
|
31
|
+
|
|
32
|
+
const styles = section.styles || {};
|
|
33
|
+
const properties = section.properties || {};
|
|
34
|
+
|
|
35
|
+
const beforeBlock = section.blocks?.find(b => b.label === 'Before Image');
|
|
36
|
+
const afterBlock = section.blocks?.find(b => b.label === 'After Image');
|
|
37
|
+
|
|
38
|
+
const height = getResponsiveValue(styles.height, currentBreakpoint, '500px') as string | number;
|
|
39
|
+
const width = getResponsiveValue(styles.width, currentBreakpoint, '100%') as string;
|
|
40
|
+
const maxWidth = getResponsiveValue(styles['max-width'], currentBreakpoint, 'normal') as string;
|
|
41
|
+
|
|
42
|
+
const sliderColor = resolveThemeCssVariables(
|
|
43
|
+
getResponsiveValue(styles['slider-color'], currentBreakpoint, '#ffffff') as string,
|
|
44
|
+
themeSettings
|
|
45
|
+
);
|
|
46
|
+
|
|
47
|
+
const renderBlock = (block: any) => {
|
|
48
|
+
return (
|
|
49
|
+
<ThemeBlock
|
|
50
|
+
key={block.id}
|
|
51
|
+
block={block}
|
|
52
|
+
placeholderId={placeholderId}
|
|
53
|
+
sectionId={section.id}
|
|
54
|
+
isDesigner={isDesigner}
|
|
55
|
+
isSelected={selectedBlockId === block.id}
|
|
56
|
+
selectedBlockId={selectedBlockId}
|
|
57
|
+
currentBreakpoint={currentBreakpoint}
|
|
58
|
+
onMoveUp={() => {
|
|
59
|
+
if (window.parent) window.parent.postMessage({ type: 'MOVE_BLOCK_UP', data: { placeholderId, sectionId: section.id, blockId: block.id } }, '*');
|
|
60
|
+
}}
|
|
61
|
+
onMoveDown={() => {
|
|
62
|
+
if (window.parent) window.parent.postMessage({ type: 'MOVE_BLOCK_DOWN', data: { placeholderId, sectionId: section.id, blockId: block.id } }, '*');
|
|
63
|
+
}}
|
|
64
|
+
onDuplicate={() => {
|
|
65
|
+
if (window.parent) window.parent.postMessage({ type: 'DUPLICATE_BLOCK', data: { placeholderId, sectionId: section.id, blockId: block.id } }, '*');
|
|
66
|
+
}}
|
|
67
|
+
onToggleVisibility={() => {
|
|
68
|
+
if (window.parent) window.parent.postMessage({ type: 'TOGGLE_BLOCK_VISIBILITY', data: { placeholderId, sectionId: section.id, blockId: block.id } }, '*');
|
|
69
|
+
}}
|
|
70
|
+
onDelete={() => {
|
|
71
|
+
if (window.parent) window.parent.postMessage({ type: 'DELETE_BLOCK', data: { placeholderId, sectionId: section.id, blockId: block.id } }, '*');
|
|
72
|
+
}}
|
|
73
|
+
onRename={(newLabel) => {
|
|
74
|
+
if (window.parent) window.parent.postMessage({ type: 'RENAME_BLOCK', data: { placeholderId, sectionId: section.id, blockId: block.id, label: newLabel } }, '*');
|
|
75
|
+
}}
|
|
76
|
+
/>
|
|
77
|
+
);
|
|
78
|
+
};
|
|
79
|
+
|
|
80
|
+
useEffect(() => {
|
|
81
|
+
if (!containerRef.current) return;
|
|
82
|
+
|
|
83
|
+
setContainerWidth(containerRef.current.offsetWidth);
|
|
84
|
+
|
|
85
|
+
const observer = new ResizeObserver((entries) => {
|
|
86
|
+
for (const entry of entries) {
|
|
87
|
+
setContainerWidth(entry.contentRect.width);
|
|
88
|
+
}
|
|
89
|
+
});
|
|
90
|
+
|
|
91
|
+
observer.observe(containerRef.current);
|
|
92
|
+
|
|
93
|
+
return () => observer.disconnect();
|
|
94
|
+
}, []);
|
|
95
|
+
|
|
96
|
+
const handleStart = (clientX: number) => {
|
|
97
|
+
setIsResizing(true);
|
|
98
|
+
if (containerRef.current) {
|
|
99
|
+
const rect = containerRef.current.getBoundingClientRect();
|
|
100
|
+
const x = Math.max(0, Math.min(clientX - rect.left, rect.width));
|
|
101
|
+
setSliderPosition((x / rect.width) * 100);
|
|
102
|
+
}
|
|
103
|
+
};
|
|
104
|
+
|
|
105
|
+
const handleMouseDown = (e: React.MouseEvent) => handleStart(e.clientX);
|
|
106
|
+
const handleTouchStart = (e: React.TouchEvent) => handleStart(e.touches[0].clientX);
|
|
107
|
+
|
|
108
|
+
const handleMove = useCallback(
|
|
109
|
+
(clientX: number) => {
|
|
110
|
+
if (!isResizing || !containerRef.current) return;
|
|
111
|
+
|
|
112
|
+
const rect = containerRef.current.getBoundingClientRect();
|
|
113
|
+
const x = Math.max(0, Math.min(clientX - rect.left, rect.width));
|
|
114
|
+
const percentage = (x / rect.width) * 100;
|
|
115
|
+
|
|
116
|
+
setSliderPosition(percentage);
|
|
117
|
+
},
|
|
118
|
+
[isResizing]
|
|
119
|
+
);
|
|
120
|
+
|
|
121
|
+
const handleMouseMove = (e: React.MouseEvent) => {
|
|
122
|
+
if (isResizing) handleMove(e.clientX);
|
|
123
|
+
};
|
|
124
|
+
|
|
125
|
+
const handleTouchMove = (e: React.TouchEvent) => {
|
|
126
|
+
if (isResizing) handleMove(e.touches[0].clientX);
|
|
127
|
+
};
|
|
128
|
+
|
|
129
|
+
useEffect(() => {
|
|
130
|
+
const handleGlobalEnd = () => setIsResizing(false);
|
|
131
|
+
const handleGlobalMove = (e: MouseEvent) => {
|
|
132
|
+
if (isResizing) {
|
|
133
|
+
e.preventDefault();
|
|
134
|
+
handleMove(e.clientX);
|
|
135
|
+
}
|
|
136
|
+
};
|
|
137
|
+
|
|
138
|
+
const handleGlobalTouchMove = (e: TouchEvent) => {
|
|
139
|
+
if (isResizing) {
|
|
140
|
+
handleMove(e.touches[0].clientX);
|
|
141
|
+
}
|
|
142
|
+
}
|
|
143
|
+
|
|
144
|
+
if (isResizing) {
|
|
145
|
+
window.addEventListener('mouseup', handleGlobalEnd);
|
|
146
|
+
window.addEventListener('touchend', handleGlobalEnd);
|
|
147
|
+
window.addEventListener('mousemove', handleGlobalMove);
|
|
148
|
+
window.addEventListener('touchmove', handleGlobalTouchMove, { passive: false });
|
|
149
|
+
}
|
|
150
|
+
|
|
151
|
+
return () => {
|
|
152
|
+
window.removeEventListener('mouseup', handleGlobalEnd);
|
|
153
|
+
window.removeEventListener('touchend', handleGlobalEnd);
|
|
154
|
+
window.removeEventListener('mousemove', handleGlobalMove);
|
|
155
|
+
window.removeEventListener('touchmove', handleGlobalTouchMove);
|
|
156
|
+
};
|
|
157
|
+
}, [isResizing, handleMove]);
|
|
158
|
+
|
|
159
|
+
|
|
160
|
+
const maxWidthClass =
|
|
161
|
+
maxWidth === 'narrow'
|
|
162
|
+
? 'max-w-4xl'
|
|
163
|
+
: maxWidth === 'normal'
|
|
164
|
+
? 'max-w-7xl'
|
|
165
|
+
: maxWidth === 'full'
|
|
166
|
+
? 'w-full'
|
|
167
|
+
: '';
|
|
168
|
+
|
|
169
|
+
const hasMaxWidth = maxWidth !== 'none' && maxWidth !== 'full';
|
|
170
|
+
|
|
171
|
+
return (
|
|
172
|
+
<div
|
|
173
|
+
className={twMerge(
|
|
174
|
+
clsx(
|
|
175
|
+
'relative mx-auto select-none overflow-hidden group/before-after',
|
|
176
|
+
hasMaxWidth && 'mx-auto',
|
|
177
|
+
maxWidthClass
|
|
178
|
+
)
|
|
179
|
+
)}
|
|
180
|
+
style={{
|
|
181
|
+
height: typeof height === 'number' ? `${height}px` : height,
|
|
182
|
+
width: width === 'fill' ? '100%' : width,
|
|
183
|
+
maxWidth: maxWidth === 'none' ? 'none' : undefined
|
|
184
|
+
}}
|
|
185
|
+
ref={containerRef}
|
|
186
|
+
onMouseDown={handleMouseDown}
|
|
187
|
+
onTouchStart={handleTouchStart}
|
|
188
|
+
onMouseMove={handleMouseMove}
|
|
189
|
+
onTouchMove={handleTouchMove}
|
|
190
|
+
>
|
|
191
|
+
<div className="absolute inset-0 w-full h-full">
|
|
192
|
+
{afterBlock ? (
|
|
193
|
+
<div className="w-full h-full pointer-events-none">
|
|
194
|
+
{renderBlock(afterBlock)}
|
|
195
|
+
</div>
|
|
196
|
+
) : (
|
|
197
|
+
<div className="w-full h-full bg-gray-200 flex items-center justify-center text-gray-400 select-none pointer-events-none">
|
|
198
|
+
No After Image
|
|
199
|
+
</div>
|
|
200
|
+
)}
|
|
201
|
+
</div>
|
|
202
|
+
|
|
203
|
+
<div
|
|
204
|
+
className="absolute top-0 left-0 h-full overflow-hidden border-r"
|
|
205
|
+
style={{
|
|
206
|
+
width: `${sliderPosition}%`,
|
|
207
|
+
borderColor: sliderColor
|
|
208
|
+
}}
|
|
209
|
+
>
|
|
210
|
+
<div
|
|
211
|
+
className="relative h-full"
|
|
212
|
+
style={{ width: containerWidth ? `${containerWidth}px` : '100%' }}
|
|
213
|
+
>
|
|
214
|
+
{beforeBlock ? (
|
|
215
|
+
<div className="absolute top-0 left-0 w-full h-full pointer-events-none">
|
|
216
|
+
{renderBlock(beforeBlock)}
|
|
217
|
+
</div>
|
|
218
|
+
) : (
|
|
219
|
+
<div className="absolute top-0 left-0 w-full h-full bg-gray-300 flex items-center justify-center text-gray-500 select-none pointer-events-none">
|
|
220
|
+
No Before Image
|
|
221
|
+
</div>
|
|
222
|
+
)}
|
|
223
|
+
</div>
|
|
224
|
+
</div>
|
|
225
|
+
|
|
226
|
+
<div
|
|
227
|
+
className={clsx(
|
|
228
|
+
"absolute top-0 bottom-0 w-1 z-20 cursor-ew-resize"
|
|
229
|
+
)}
|
|
230
|
+
style={{
|
|
231
|
+
left: `${sliderPosition}%`,
|
|
232
|
+
backgroundColor: sliderColor,
|
|
233
|
+
transform: 'translateX(-50%)'
|
|
234
|
+
}}
|
|
235
|
+
>
|
|
236
|
+
<div className="absolute top-1/2 left-1/2 -translate-x-1/2 -translate-y-1/2 w-8 h-8 bg-white rounded-full shadow-lg flex items-center justify-center text-gray-800 pointer-events-none">
|
|
237
|
+
<svg width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" strokeWidth="2" strokeLinecap="round" strokeLinejoin="round">
|
|
238
|
+
<path d="M10 15l-3-3 3-3" />
|
|
239
|
+
<path d="M14 15l3-3-3-3" />
|
|
240
|
+
</svg>
|
|
241
|
+
</div>
|
|
242
|
+
</div>
|
|
243
|
+
</div>
|
|
244
|
+
);
|
|
245
|
+
}
|