@driveflux/pdf 4.0.79 → 4.0.80
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/components/FluxLogo.js +62 -3
- package/dist/components/StandardPage.js +108 -10
- package/dist/index.js +0 -1
- package/dist/templates/QuotationPdf/CustomerSubscriptionSection.js +145 -27
- package/dist/templates/QuotationPdf/GFV.js +49 -12
- package/dist/templates/QuotationPdf/Header.js +63 -5
- package/dist/templates/QuotationPdf/Pricing.js +573 -191
- package/dist/templates/QuotationPdf/QuotationPdfPage.js +23 -3
- package/dist/templates/QuotationPdf/SectionBoxNew.js +34 -4
- package/dist/templates/QuotationPdf/TermsSection.js +42 -5
- package/dist/templates/QuotationPdf/VehiclePhotos.js +54 -24
- package/dist/templates/QuotationPdf/index.js +197 -10
- package/dist/templates/QuotationPdf/translations.js +34 -22
- package/dist/templates/QuotationPdf/utils.js +92 -49
- package/dist/templates/SubscriptionAgreement/Confirmation.js +65 -10
- package/dist/templates/SubscriptionAgreement/CoverPage.js +93 -10
- package/dist/templates/SubscriptionAgreement/CoverPageSection.js +16 -5
- package/dist/templates/SubscriptionAgreement/Details.js +139 -59
- package/dist/templates/SubscriptionAgreement/Footer.js +48 -6
- package/dist/templates/SubscriptionAgreement/Header.js +35 -5
- package/dist/templates/SubscriptionAgreement/LabelValue.js +25 -3
- package/dist/templates/SubscriptionAgreement/SubscriptionAgreementPage.js +26 -3
- package/dist/templates/SubscriptionAgreement/TermsOfUse.js +94 -8
- package/dist/templates/SubscriptionAgreement/TermsOfUseSubSection.js +97 -11
- package/dist/templates/SubscriptionAgreement/index.js +253 -15
- package/dist/templates/SubscriptionAgreement/translations.js +195 -194
- package/dist/templates/SubscriptionAgreement/types.js +1 -2
- package/dist/templates/SubscriptionAgreement/utils.js +16 -11
- package/dist/templates/index.js +0 -1
- package/dist/theme/colors.js +44 -63
- package/dist/theme/index.js +0 -1
- package/dist/types.js +1 -2
- package/dist/utils.js +167 -16
- package/dist/watch.js +3 -4
- package/package.json +2 -2
|
@@ -1,108 +1,187 @@
|
|
|
1
|
+
function _define_property(obj, key, value) {
|
|
2
|
+
if (key in obj) {
|
|
3
|
+
Object.defineProperty(obj, key, {
|
|
4
|
+
value: value,
|
|
5
|
+
enumerable: true,
|
|
6
|
+
configurable: true,
|
|
7
|
+
writable: true
|
|
8
|
+
});
|
|
9
|
+
} else {
|
|
10
|
+
obj[key] = value;
|
|
11
|
+
}
|
|
12
|
+
return obj;
|
|
13
|
+
}
|
|
14
|
+
function _object_spread(target) {
|
|
15
|
+
for(var i = 1; i < arguments.length; i++){
|
|
16
|
+
var source = arguments[i] != null ? arguments[i] : {};
|
|
17
|
+
var ownKeys = Object.keys(source);
|
|
18
|
+
if (typeof Object.getOwnPropertySymbols === "function") {
|
|
19
|
+
ownKeys = ownKeys.concat(Object.getOwnPropertySymbols(source).filter(function(sym) {
|
|
20
|
+
return Object.getOwnPropertyDescriptor(source, sym).enumerable;
|
|
21
|
+
}));
|
|
22
|
+
}
|
|
23
|
+
ownKeys.forEach(function(key) {
|
|
24
|
+
_define_property(target, key, source[key]);
|
|
25
|
+
});
|
|
26
|
+
}
|
|
27
|
+
return target;
|
|
28
|
+
}
|
|
29
|
+
function ownKeys(object, enumerableOnly) {
|
|
30
|
+
var keys = Object.keys(object);
|
|
31
|
+
if (Object.getOwnPropertySymbols) {
|
|
32
|
+
var symbols = Object.getOwnPropertySymbols(object);
|
|
33
|
+
if (enumerableOnly) {
|
|
34
|
+
symbols = symbols.filter(function(sym) {
|
|
35
|
+
return Object.getOwnPropertyDescriptor(object, sym).enumerable;
|
|
36
|
+
});
|
|
37
|
+
}
|
|
38
|
+
keys.push.apply(keys, symbols);
|
|
39
|
+
}
|
|
40
|
+
return keys;
|
|
41
|
+
}
|
|
42
|
+
function _object_spread_props(target, source) {
|
|
43
|
+
source = source != null ? source : {};
|
|
44
|
+
if (Object.getOwnPropertyDescriptors) {
|
|
45
|
+
Object.defineProperties(target, Object.getOwnPropertyDescriptors(source));
|
|
46
|
+
} else {
|
|
47
|
+
ownKeys(Object(source)).forEach(function(key) {
|
|
48
|
+
Object.defineProperty(target, key, Object.getOwnPropertyDescriptor(source, key));
|
|
49
|
+
});
|
|
50
|
+
}
|
|
51
|
+
return target;
|
|
52
|
+
}
|
|
1
53
|
import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime";
|
|
2
54
|
import { userName } from '@driveflux/db/models/user';
|
|
3
55
|
import { format } from '@driveflux/time';
|
|
4
56
|
import { Text, View } from '@react-pdf/renderer';
|
|
5
57
|
import { colors } from '../../theme/index.js';
|
|
6
58
|
import LabelValue from './LabelValue.js';
|
|
7
|
-
|
|
8
|
-
|
|
59
|
+
var Details = function Details(param) {
|
|
60
|
+
var tDetails = param.tDetails, subscription = param.subscription;
|
|
61
|
+
var _subscription_vehicle, _subscription_vehicle1, _subscription_vehicle2, _subscription_vehicle3, _subscription_vehicle4;
|
|
62
|
+
var details = {};
|
|
9
63
|
if (subscription.payerType === 'business') {
|
|
64
|
+
var _subscription_business;
|
|
10
65
|
details.business = [
|
|
11
66
|
{
|
|
12
67
|
key: tDetails.business.name,
|
|
13
|
-
value: subscription
|
|
68
|
+
value: subscription === null || subscription === void 0 ? void 0 : subscription.businessName
|
|
14
69
|
},
|
|
15
70
|
{
|
|
16
71
|
key: tDetails.business.companyNo,
|
|
17
|
-
value: subscription
|
|
18
|
-
}
|
|
72
|
+
value: subscription === null || subscription === void 0 ? void 0 : (_subscription_business = subscription.business) === null || _subscription_business === void 0 ? void 0 : _subscription_business.registrationNumber
|
|
73
|
+
}
|
|
19
74
|
];
|
|
20
|
-
}
|
|
21
|
-
|
|
75
|
+
} else {
|
|
76
|
+
var _subscription_user_identification;
|
|
22
77
|
details.member = [
|
|
23
78
|
{
|
|
24
79
|
key: tDetails.member.name,
|
|
25
|
-
value: userName(subscription.user)
|
|
80
|
+
value: userName(subscription.user)
|
|
26
81
|
},
|
|
27
82
|
{
|
|
28
83
|
key: tDetails.member.idOrPassportNo,
|
|
29
|
-
value: subscription.user.identification
|
|
30
|
-
}
|
|
84
|
+
value: (_subscription_user_identification = subscription.user.identification) === null || _subscription_user_identification === void 0 ? void 0 : _subscription_user_identification.number
|
|
85
|
+
}
|
|
31
86
|
];
|
|
32
87
|
}
|
|
33
|
-
details = {
|
|
34
|
-
...details,
|
|
88
|
+
details = _object_spread_props(_object_spread({}, details), {
|
|
35
89
|
vehicle: [
|
|
36
90
|
{
|
|
37
91
|
key: tDetails.vehicle.make,
|
|
38
|
-
value: subscription.vehicle
|
|
92
|
+
value: (_subscription_vehicle = subscription.vehicle) === null || _subscription_vehicle === void 0 ? void 0 : _subscription_vehicle.make
|
|
39
93
|
},
|
|
40
94
|
{
|
|
41
95
|
key: tDetails.vehicle.model,
|
|
42
|
-
value:
|
|
96
|
+
value: "".concat((_subscription_vehicle1 = subscription.vehicle) === null || _subscription_vehicle1 === void 0 ? void 0 : _subscription_vehicle1.vehicleModel, " ").concat((_subscription_vehicle2 = subscription.vehicle) === null || _subscription_vehicle2 === void 0 ? void 0 : _subscription_vehicle2.variant)
|
|
43
97
|
},
|
|
44
98
|
{
|
|
45
99
|
key: tDetails.vehicle.year,
|
|
46
|
-
value: subscription.vehicle
|
|
100
|
+
value: (_subscription_vehicle3 = subscription.vehicle) === null || _subscription_vehicle3 === void 0 ? void 0 : _subscription_vehicle3.year
|
|
47
101
|
},
|
|
48
102
|
{
|
|
49
103
|
key: tDetails.vehicle.plateNo,
|
|
50
|
-
value: subscription.vehicle
|
|
51
|
-
}
|
|
104
|
+
value: (_subscription_vehicle4 = subscription.vehicle) === null || _subscription_vehicle4 === void 0 ? void 0 : _subscription_vehicle4.registrationNumber
|
|
105
|
+
}
|
|
52
106
|
],
|
|
53
107
|
subscription: [
|
|
54
108
|
{
|
|
55
109
|
key: tDetails.subscription.subscriptionPlan,
|
|
56
|
-
value: getPlanTranslation(subscription.plan)
|
|
110
|
+
value: getPlanTranslation(subscription.plan)
|
|
57
111
|
},
|
|
58
112
|
{
|
|
59
113
|
key: tDetails.subscription.mileagePackage,
|
|
60
|
-
value: getFullMileagePackageTranslation(subscription.mileagePackage)
|
|
114
|
+
value: getFullMileagePackageTranslation(subscription.mileagePackage)
|
|
61
115
|
},
|
|
62
116
|
{
|
|
63
117
|
key: tDetails.subscription.startDate,
|
|
64
|
-
value: subscription.startedAt
|
|
65
|
-
? format(subscription.startedAt, 'dd-MM-yyyy')
|
|
66
|
-
: undefined,
|
|
118
|
+
value: subscription.startedAt ? format(subscription.startedAt, 'dd-MM-yyyy') : undefined
|
|
67
119
|
},
|
|
68
120
|
{
|
|
69
121
|
key: tDetails.subscription.endDate,
|
|
70
|
-
value: subscription.endedAt
|
|
71
|
-
|
|
72
|
-
|
|
73
|
-
|
|
74
|
-
|
|
75
|
-
|
|
76
|
-
|
|
77
|
-
|
|
78
|
-
|
|
79
|
-
|
|
122
|
+
value: subscription.endedAt ? format(subscription.endedAt, 'dd-MM-yyyy') : subscription.scheduledEndAt ? format(subscription.scheduledEndAt, 'dd-MM-yyyy') : undefined
|
|
123
|
+
}
|
|
124
|
+
]
|
|
125
|
+
});
|
|
126
|
+
var border = "1px solid ".concat(colors.primary2);
|
|
127
|
+
return /*#__PURE__*/ _jsxs(View, {
|
|
128
|
+
style: {
|
|
129
|
+
borderLeft: border,
|
|
130
|
+
borderRight: border
|
|
131
|
+
},
|
|
132
|
+
children: [
|
|
133
|
+
/*#__PURE__*/ _jsx(View, {
|
|
134
|
+
style: {
|
|
80
135
|
backgroundColor: colors.primary1,
|
|
81
136
|
borderTop: border,
|
|
82
|
-
padding: 8
|
|
83
|
-
},
|
|
137
|
+
padding: 8
|
|
138
|
+
},
|
|
139
|
+
children: /*#__PURE__*/ _jsx(Text, {
|
|
140
|
+
style: {
|
|
84
141
|
fontWeight: 'bold',
|
|
85
142
|
textTransform: 'uppercase',
|
|
86
|
-
letterSpacing: 1
|
|
87
|
-
},
|
|
88
|
-
|
|
89
|
-
|
|
90
|
-
|
|
91
|
-
|
|
92
|
-
|
|
93
|
-
|
|
94
|
-
|
|
95
|
-
|
|
96
|
-
|
|
97
|
-
|
|
143
|
+
letterSpacing: 1
|
|
144
|
+
},
|
|
145
|
+
children: tDetails.agreement
|
|
146
|
+
})
|
|
147
|
+
}),
|
|
148
|
+
Object.keys(details).map(function(key, _i) {
|
|
149
|
+
return /*#__PURE__*/ _jsxs(View, {
|
|
150
|
+
style: {
|
|
151
|
+
padding: 8,
|
|
152
|
+
paddingBottom: 16,
|
|
153
|
+
rowGap: 8,
|
|
154
|
+
borderTop: border
|
|
155
|
+
},
|
|
156
|
+
children: [
|
|
157
|
+
/*#__PURE__*/ _jsx(Text, {
|
|
158
|
+
style: {
|
|
159
|
+
textTransform: 'uppercase',
|
|
160
|
+
color: colors.primary2,
|
|
161
|
+
fontSize: 8,
|
|
162
|
+
letterSpacing: 1
|
|
163
|
+
},
|
|
164
|
+
children: "".concat(key, " details")
|
|
165
|
+
}),
|
|
166
|
+
details[key].map(function(line) {
|
|
167
|
+
return /*#__PURE__*/ _jsx(LabelValue, {
|
|
168
|
+
label: line.key,
|
|
169
|
+
value: line.value
|
|
170
|
+
}, line.key);
|
|
171
|
+
})
|
|
172
|
+
]
|
|
173
|
+
}, key);
|
|
174
|
+
})
|
|
175
|
+
]
|
|
176
|
+
});
|
|
98
177
|
};
|
|
99
178
|
export default Details;
|
|
100
179
|
// TODO: replace this with dump's once the package is ready
|
|
101
|
-
|
|
180
|
+
var getPlanTranslation = function getPlanTranslation(plan, vehicleType) {
|
|
102
181
|
if (!plan) {
|
|
103
182
|
return 'Unknown Plan';
|
|
104
183
|
}
|
|
105
|
-
switch
|
|
184
|
+
switch(plan){
|
|
106
185
|
case 'plan60':
|
|
107
186
|
return vehicleType === 'motorcycle' ? '60 Months' : '60 Months (Basic)';
|
|
108
187
|
case 'plan36':
|
|
@@ -115,17 +194,18 @@ const getPlanTranslation = (plan, vehicleType) => {
|
|
|
115
194
|
return 'Monthly (Ultra)';
|
|
116
195
|
case 'planWeekly':
|
|
117
196
|
return 'Weekly';
|
|
118
|
-
default:
|
|
119
|
-
|
|
120
|
-
|
|
121
|
-
|
|
197
|
+
default:
|
|
198
|
+
{
|
|
199
|
+
var _exhaustiveCheck = plan;
|
|
200
|
+
return 'Unknown Plan';
|
|
201
|
+
}
|
|
122
202
|
}
|
|
123
203
|
};
|
|
124
|
-
|
|
204
|
+
var getFullMileagePackageTranslation = function getFullMileagePackageTranslation(plan) {
|
|
125
205
|
if (!plan) {
|
|
126
206
|
return 'Unknown Mileage Package';
|
|
127
207
|
}
|
|
128
|
-
switch
|
|
208
|
+
switch(plan){
|
|
129
209
|
case 'lite':
|
|
130
210
|
return 'Lite - 1,250KM';
|
|
131
211
|
case 'standard':
|
|
@@ -134,10 +214,10 @@ const getFullMileagePackageTranslation = (plan) => {
|
|
|
134
214
|
return 'Plus - 2,750KM';
|
|
135
215
|
case 'unlimited':
|
|
136
216
|
return 'Unlimited';
|
|
137
|
-
default:
|
|
138
|
-
|
|
139
|
-
|
|
140
|
-
|
|
217
|
+
default:
|
|
218
|
+
{
|
|
219
|
+
var _exhaustiveCheck = plan;
|
|
220
|
+
return 'Unknown Mileage Package';
|
|
221
|
+
}
|
|
141
222
|
}
|
|
142
223
|
};
|
|
143
|
-
//# sourceMappingURL=Details.js.map
|
|
@@ -1,16 +1,58 @@
|
|
|
1
1
|
import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime";
|
|
2
2
|
import { Text, View } from '@react-pdf/renderer';
|
|
3
3
|
import { colors } from '../../theme/colors.js';
|
|
4
|
-
|
|
5
|
-
|
|
4
|
+
var Footer = function Footer(param) {
|
|
5
|
+
var tComputerGenerated = param.tComputerGenerated, tPage = param.tPage, tOf = param.tOf;
|
|
6
|
+
return /*#__PURE__*/ _jsxs(View, {
|
|
7
|
+
fixed: true,
|
|
8
|
+
style: {
|
|
6
9
|
justifyContent: 'space-between',
|
|
7
10
|
flexDirection: 'row',
|
|
8
11
|
paddingTop: 16,
|
|
9
12
|
marginTop: 16,
|
|
10
|
-
borderTop:
|
|
13
|
+
borderTop: "1px solid ".concat(colors.links),
|
|
11
14
|
color: colors.primary2,
|
|
12
|
-
fontSize: 8
|
|
13
|
-
},
|
|
15
|
+
fontSize: 8
|
|
16
|
+
},
|
|
17
|
+
children: [
|
|
18
|
+
/*#__PURE__*/ _jsx(Text, {
|
|
19
|
+
children: tComputerGenerated
|
|
20
|
+
}),
|
|
21
|
+
/*#__PURE__*/ _jsxs(View, {
|
|
22
|
+
style: {
|
|
23
|
+
flexDirection: 'row',
|
|
24
|
+
columnGap: 4
|
|
25
|
+
},
|
|
26
|
+
children: [
|
|
27
|
+
/*#__PURE__*/ _jsx(Text, {
|
|
28
|
+
children: tPage
|
|
29
|
+
}),
|
|
30
|
+
/*#__PURE__*/ _jsx(Text, {
|
|
31
|
+
style: {
|
|
32
|
+
fontWeight: 'bold',
|
|
33
|
+
color: colors.black
|
|
34
|
+
},
|
|
35
|
+
render: function render(param) {
|
|
36
|
+
var pageNumber = param.pageNumber;
|
|
37
|
+
return "".concat(pageNumber);
|
|
38
|
+
}
|
|
39
|
+
}),
|
|
40
|
+
/*#__PURE__*/ _jsx(Text, {
|
|
41
|
+
children: tOf
|
|
42
|
+
}),
|
|
43
|
+
/*#__PURE__*/ _jsx(Text, {
|
|
44
|
+
style: {
|
|
45
|
+
fontWeight: 'bold',
|
|
46
|
+
color: colors.black
|
|
47
|
+
},
|
|
48
|
+
render: function render(param) {
|
|
49
|
+
var totalPages = param.totalPages;
|
|
50
|
+
return "".concat(totalPages);
|
|
51
|
+
}
|
|
52
|
+
})
|
|
53
|
+
]
|
|
54
|
+
})
|
|
55
|
+
]
|
|
56
|
+
});
|
|
14
57
|
};
|
|
15
58
|
export default Footer;
|
|
16
|
-
//# sourceMappingURL=Footer.js.map
|
|
@@ -2,15 +2,45 @@ import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime";
|
|
|
2
2
|
import { Link, Text, View } from '@react-pdf/renderer';
|
|
3
3
|
import FluxLogo from '../../components/FluxLogo.js';
|
|
4
4
|
import { colors } from '../../theme/colors.js';
|
|
5
|
-
|
|
6
|
-
|
|
5
|
+
var Header = function Header(param) {
|
|
6
|
+
var tTitle = param.tTitle, userId = param.userId, subscriptionId = param.subscriptionId;
|
|
7
|
+
return /*#__PURE__*/ _jsxs(View, {
|
|
8
|
+
fixed: true,
|
|
9
|
+
style: {
|
|
7
10
|
flexDirection: 'row',
|
|
8
11
|
justifyContent: 'space-between',
|
|
9
12
|
alignItems: 'center',
|
|
10
13
|
paddingBottom: 40,
|
|
11
14
|
// to not get pushed by the content
|
|
12
|
-
minHeight: 69
|
|
13
|
-
},
|
|
15
|
+
minHeight: 69
|
|
16
|
+
},
|
|
17
|
+
children: [
|
|
18
|
+
/*#__PURE__*/ _jsx(Link, {
|
|
19
|
+
src: "https://driveflux.com",
|
|
20
|
+
children: /*#__PURE__*/ _jsx(FluxLogo, {})
|
|
21
|
+
}),
|
|
22
|
+
/*#__PURE__*/ _jsxs(View, {
|
|
23
|
+
style: {
|
|
24
|
+
rowGap: 4,
|
|
25
|
+
fontSize: 8,
|
|
26
|
+
alignItems: 'flex-end'
|
|
27
|
+
},
|
|
28
|
+
children: [
|
|
29
|
+
/*#__PURE__*/ _jsx(Text, {
|
|
30
|
+
style: {
|
|
31
|
+
fontWeight: 'bold'
|
|
32
|
+
},
|
|
33
|
+
children: tTitle
|
|
34
|
+
}),
|
|
35
|
+
/*#__PURE__*/ _jsx(Text, {
|
|
36
|
+
style: {
|
|
37
|
+
color: colors.primary2
|
|
38
|
+
},
|
|
39
|
+
children: "FLUX-".concat(userId, "-").concat(subscriptionId)
|
|
40
|
+
})
|
|
41
|
+
]
|
|
42
|
+
})
|
|
43
|
+
]
|
|
44
|
+
});
|
|
14
45
|
};
|
|
15
46
|
export default Header;
|
|
16
|
-
//# sourceMappingURL=Header.js.map
|
|
@@ -1,7 +1,29 @@
|
|
|
1
1
|
import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime";
|
|
2
2
|
import { Text, View } from '@react-pdf/renderer';
|
|
3
|
-
|
|
4
|
-
|
|
3
|
+
var LabelValue = function LabelValue(param) {
|
|
4
|
+
var label = param.label, value = param.value;
|
|
5
|
+
return /*#__PURE__*/ _jsxs(View, {
|
|
6
|
+
style: {
|
|
7
|
+
flexDirection: 'row'
|
|
8
|
+
},
|
|
9
|
+
children: [
|
|
10
|
+
/*#__PURE__*/ _jsx(Text, {
|
|
11
|
+
style: {
|
|
12
|
+
minWidth: 120,
|
|
13
|
+
textTransform: 'capitalize'
|
|
14
|
+
},
|
|
15
|
+
children: label
|
|
16
|
+
}),
|
|
17
|
+
/*#__PURE__*/ _jsx(Text, {
|
|
18
|
+
children: ':'
|
|
19
|
+
}),
|
|
20
|
+
/*#__PURE__*/ _jsx(Text, {
|
|
21
|
+
style: {
|
|
22
|
+
paddingLeft: 16
|
|
23
|
+
},
|
|
24
|
+
children: value ? "".concat(value) : '-'
|
|
25
|
+
})
|
|
26
|
+
]
|
|
27
|
+
});
|
|
5
28
|
};
|
|
6
29
|
export default LabelValue;
|
|
7
|
-
//# sourceMappingURL=LabelValue.js.map
|
|
@@ -3,8 +3,31 @@ import { View } from '@react-pdf/renderer';
|
|
|
3
3
|
import StandardPage from '../../components/StandardPage.js';
|
|
4
4
|
import Footer from './Footer.js';
|
|
5
5
|
import Header from './Header.js';
|
|
6
|
-
|
|
7
|
-
|
|
6
|
+
var SubscriptionAgreementPage = function SubscriptionAgreementPage(param) {
|
|
7
|
+
var t = param.t, userId = param.userId, subscriptionId = param.subscriptionId, children = param.children;
|
|
8
|
+
return /*#__PURE__*/ _jsxs(StandardPage, {
|
|
9
|
+
style: {
|
|
10
|
+
padding: 40,
|
|
11
|
+
fontSize: 10
|
|
12
|
+
},
|
|
13
|
+
children: [
|
|
14
|
+
/*#__PURE__*/ _jsx(Header, {
|
|
15
|
+
tTitle: t.title,
|
|
16
|
+
userId: userId,
|
|
17
|
+
subscriptionId: subscriptionId
|
|
18
|
+
}),
|
|
19
|
+
/*#__PURE__*/ _jsx(View, {
|
|
20
|
+
style: {
|
|
21
|
+
flex: 1
|
|
22
|
+
},
|
|
23
|
+
children: children
|
|
24
|
+
}),
|
|
25
|
+
/*#__PURE__*/ _jsx(Footer, {
|
|
26
|
+
tComputerGenerated: t.computerGenerated,
|
|
27
|
+
tPage: t.page,
|
|
28
|
+
tOf: t.of
|
|
29
|
+
})
|
|
30
|
+
]
|
|
31
|
+
});
|
|
8
32
|
};
|
|
9
33
|
export default SubscriptionAgreementPage;
|
|
10
|
-
//# sourceMappingURL=SubscriptionAgreementPage.js.map
|
|
@@ -1,15 +1,101 @@
|
|
|
1
|
+
function _array_like_to_array(arr, len) {
|
|
2
|
+
if (len == null || len > arr.length) len = arr.length;
|
|
3
|
+
for(var i = 0, arr2 = new Array(len); i < len; i++)arr2[i] = arr[i];
|
|
4
|
+
return arr2;
|
|
5
|
+
}
|
|
6
|
+
function _array_without_holes(arr) {
|
|
7
|
+
if (Array.isArray(arr)) return _array_like_to_array(arr);
|
|
8
|
+
}
|
|
9
|
+
function _iterable_to_array(iter) {
|
|
10
|
+
if (typeof Symbol !== "undefined" && iter[Symbol.iterator] != null || iter["@@iterator"] != null) return Array.from(iter);
|
|
11
|
+
}
|
|
12
|
+
function _non_iterable_spread() {
|
|
13
|
+
throw new TypeError("Invalid attempt to spread non-iterable instance.\\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.");
|
|
14
|
+
}
|
|
15
|
+
function _to_consumable_array(arr) {
|
|
16
|
+
return _array_without_holes(arr) || _iterable_to_array(arr) || _unsupported_iterable_to_array(arr) || _non_iterable_spread();
|
|
17
|
+
}
|
|
18
|
+
function _unsupported_iterable_to_array(o, minLen) {
|
|
19
|
+
if (!o) return;
|
|
20
|
+
if (typeof o === "string") return _array_like_to_array(o, minLen);
|
|
21
|
+
var n = Object.prototype.toString.call(o).slice(8, -1);
|
|
22
|
+
if (n === "Object" && o.constructor) n = o.constructor.name;
|
|
23
|
+
if (n === "Map" || n === "Set") return Array.from(n);
|
|
24
|
+
if (n === "Arguments" || /^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n)) return _array_like_to_array(o, minLen);
|
|
25
|
+
}
|
|
1
26
|
import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime";
|
|
2
27
|
import { Text, View } from '@react-pdf/renderer';
|
|
3
28
|
import { renderMarkdown } from './utils.js';
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
29
|
+
var TermsOfUse = function TermsOfUse(param) {
|
|
30
|
+
var termsOfUse = param.termsOfUse;
|
|
31
|
+
var getTerms = function getTerms1(items) {
|
|
32
|
+
var indices = arguments.length > 1 && arguments[1] !== void 0 ? arguments[1] : [];
|
|
33
|
+
return items.map(function(item, i) {
|
|
34
|
+
var _item_items;
|
|
35
|
+
var currentIndices = _to_consumable_array(indices).concat([
|
|
36
|
+
i + 1
|
|
37
|
+
]);
|
|
38
|
+
var indicesString = currentIndices.join('.');
|
|
39
|
+
return /*#__PURE__*/ _jsxs(View, {
|
|
40
|
+
style: {
|
|
41
|
+
rowGap: 16
|
|
42
|
+
},
|
|
43
|
+
children: [
|
|
44
|
+
item.content && /*#__PURE__*/ _jsxs(View, {
|
|
45
|
+
style: {
|
|
46
|
+
flexDirection: 'row',
|
|
47
|
+
columnGap: 16
|
|
48
|
+
},
|
|
49
|
+
children: [
|
|
50
|
+
/*#__PURE__*/ _jsx(Text, {
|
|
51
|
+
style: {
|
|
52
|
+
fontWeight: 'bold'
|
|
53
|
+
},
|
|
54
|
+
children: indicesString
|
|
55
|
+
}),
|
|
56
|
+
/*#__PURE__*/ _jsxs(Text, {
|
|
57
|
+
style: {
|
|
58
|
+
textAlign: 'justify',
|
|
59
|
+
flex: 1
|
|
60
|
+
},
|
|
61
|
+
children: [
|
|
62
|
+
renderMarkdown(item.content),
|
|
63
|
+
' '
|
|
64
|
+
]
|
|
65
|
+
})
|
|
66
|
+
]
|
|
67
|
+
}),
|
|
68
|
+
((_item_items = item.items) === null || _item_items === void 0 ? void 0 : _item_items.length) > 0 && /*#__PURE__*/ _jsx(View, {
|
|
69
|
+
style: {
|
|
70
|
+
paddingLeft: 16,
|
|
71
|
+
rowGap: 16
|
|
72
|
+
},
|
|
73
|
+
children: getTerms(item.items, currentIndices)
|
|
74
|
+
})
|
|
75
|
+
]
|
|
76
|
+
}, indicesString);
|
|
10
77
|
});
|
|
11
78
|
};
|
|
12
|
-
return
|
|
79
|
+
return /*#__PURE__*/ _jsxs(View, {
|
|
80
|
+
style: {
|
|
81
|
+
rowGap: 16
|
|
82
|
+
},
|
|
83
|
+
children: [
|
|
84
|
+
/*#__PURE__*/ _jsx(Text, {
|
|
85
|
+
style: {
|
|
86
|
+
fontWeight: 'bold',
|
|
87
|
+
textTransform: 'uppercase'
|
|
88
|
+
},
|
|
89
|
+
children: 'Terms of Use'
|
|
90
|
+
}),
|
|
91
|
+
/*#__PURE__*/ _jsx(View, {
|
|
92
|
+
style: {
|
|
93
|
+
rowGap: 16,
|
|
94
|
+
lineHeight: 1.4
|
|
95
|
+
},
|
|
96
|
+
children: getTerms(termsOfUse.items)
|
|
97
|
+
})
|
|
98
|
+
]
|
|
99
|
+
});
|
|
13
100
|
};
|
|
14
101
|
export default TermsOfUse;
|
|
15
|
-
//# sourceMappingURL=TermsOfUse.js.map
|