related-ui-components 1.6.2 → 1.6.3
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/lib/commonjs/app.js +114 -253
- package/lib/commonjs/app.js.map +1 -1
- package/lib/commonjs/components/ScratchCard/ScratchCard.js +134 -95
- package/lib/commonjs/components/ScratchCard/ScratchCard.js.map +1 -1
- package/lib/module/app.js +120 -257
- package/lib/module/app.js.map +1 -1
- package/lib/module/components/ScratchCard/ScratchCard.js +146 -100
- package/lib/module/components/ScratchCard/ScratchCard.js.map +1 -1
- package/lib/typescript/commonjs/app.d.ts.map +1 -1
- package/lib/typescript/commonjs/components/ScratchCard/ScratchCard.d.ts.map +1 -1
- package/lib/typescript/module/app.d.ts.map +1 -1
- package/lib/typescript/module/components/ScratchCard/ScratchCard.d.ts.map +1 -1
- package/package.json +1 -1
- package/src/app.tsx +99 -198
- package/src/components/ScratchCard/ScratchCard.tsx +179 -114
package/lib/commonjs/app.js
CHANGED
|
@@ -6,7 +6,6 @@ Object.defineProperty(exports, "__esModule", {
|
|
|
6
6
|
exports.default = App;
|
|
7
7
|
var _react = _interopRequireWildcard(require("react"));
|
|
8
8
|
var _reactNative = require("react-native");
|
|
9
|
-
var _vectorIcons = require("@expo/vector-icons");
|
|
10
9
|
var _index = require("./theme/index.js");
|
|
11
10
|
var _index2 = require("./components/index.js");
|
|
12
11
|
var _reactNativeSafeAreaContext = require("react-native-safe-area-context");
|
|
@@ -14,279 +13,141 @@ var _reactNativeGestureHandler = require("react-native-gesture-handler");
|
|
|
14
13
|
var _jsxRuntime = require("react/jsx-runtime");
|
|
15
14
|
function _getRequireWildcardCache(e) { if ("function" != typeof WeakMap) return null; var r = new WeakMap(), t = new WeakMap(); return (_getRequireWildcardCache = function (e) { return e ? t : r; })(e); }
|
|
16
15
|
function _interopRequireWildcard(e, r) { if (!r && e && e.__esModule) return e; if (null === e || "object" != typeof e && "function" != typeof e) return { default: e }; var t = _getRequireWildcardCache(r); if (t && t.has(e)) return t.get(e); var n = { __proto__: null }, a = Object.defineProperty && Object.getOwnPropertyDescriptor; for (var u in e) if ("default" !== u && {}.hasOwnProperty.call(e, u)) { var i = a ? Object.getOwnPropertyDescriptor(e, u) : null; i && (i.get || i.set) ? Object.defineProperty(n, u, i) : n[u] = e[u]; } return n.default = e, t && t.set(e, n), n; }
|
|
17
|
-
//
|
|
16
|
+
// ... other imports
|
|
17
|
+
// Ensure import
|
|
18
18
|
function App() {
|
|
19
19
|
const {
|
|
20
20
|
theme
|
|
21
21
|
} = (0, _index.useTheme)();
|
|
22
|
-
|
|
23
|
-
const [mode, setMode] = (0, _react.useState)("flight");
|
|
22
|
+
// ... other state and constants
|
|
24
23
|
|
|
25
|
-
//
|
|
26
|
-
const
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
|
|
64
|
-
|
|
65
|
-
|
|
66
|
-
|
|
67
|
-
|
|
68
|
-
|
|
69
|
-
|
|
70
|
-
|
|
71
|
-
|
|
72
|
-
|
|
73
|
-
|
|
74
|
-
|
|
75
|
-
|
|
76
|
-
|
|
77
|
-
|
|
78
|
-
|
|
79
|
-
|
|
80
|
-
|
|
81
|
-
|
|
82
|
-
|
|
83
|
-
|
|
84
|
-
|
|
85
|
-
|
|
86
|
-
|
|
87
|
-
|
|
88
|
-
|
|
89
|
-
|
|
90
|
-
|
|
91
|
-
|
|
92
|
-
|
|
93
|
-
|
|
94
|
-
|
|
95
|
-
|
|
96
|
-
|
|
97
|
-
|
|
98
|
-
|
|
99
|
-
|
|
100
|
-
|
|
101
|
-
|
|
102
|
-
|
|
103
|
-
|
|
104
|
-
|
|
105
|
-
|
|
106
|
-
const redemptionOptions = redemptionOption.map(item => ({
|
|
107
|
-
...item,
|
|
108
|
-
text: "Online shopping"
|
|
109
|
-
}));
|
|
110
|
-
const debounceTimerRef = (0, _react.useRef)(null);
|
|
111
|
-
const rewardsData = [{
|
|
112
|
-
icon: /*#__PURE__*/(0, _jsxRuntime.jsx)(_vectorIcons.Ionicons, {
|
|
113
|
-
name: "water-outline",
|
|
114
|
-
size: 24,
|
|
115
|
-
color: theme.helper
|
|
116
|
-
}),
|
|
117
|
-
activeIcon: /*#__PURE__*/(0, _jsxRuntime.jsx)(_vectorIcons.Ionicons, {
|
|
118
|
-
name: "water",
|
|
119
|
-
size: 24,
|
|
120
|
-
color: theme.primary
|
|
121
|
-
}),
|
|
122
|
-
title: "Aqua Guardian",
|
|
123
|
-
description: "Maintain water usage below the community average for a month.",
|
|
124
|
-
isActive: false,
|
|
125
|
-
status: "0/1",
|
|
126
|
-
statusBackgroundColor: theme.disabled,
|
|
127
|
-
statusTextColor: theme.text
|
|
128
|
-
}, {
|
|
129
|
-
icon: /*#__PURE__*/(0, _jsxRuntime.jsx)(_vectorIcons.Ionicons, {
|
|
130
|
-
name: "build-outline",
|
|
131
|
-
size: 24,
|
|
132
|
-
color: theme.helper
|
|
133
|
-
}),
|
|
134
|
-
activeIcon: /*#__PURE__*/(0, _jsxRuntime.jsx)(_vectorIcons.Ionicons, {
|
|
135
|
-
name: "build",
|
|
136
|
-
size: 24,
|
|
137
|
-
color: theme.secondary
|
|
138
|
-
}),
|
|
139
|
-
title: "Leak Detective",
|
|
140
|
-
description: "Successfully report and fix a water leak on your property.",
|
|
141
|
-
isActive: true,
|
|
142
|
-
status: "1/1",
|
|
143
|
-
statusBackgroundColor: theme.primary,
|
|
144
|
-
statusTextColor: theme.secondary
|
|
145
|
-
}, {
|
|
146
|
-
icon: /*#__PURE__*/(0, _jsxRuntime.jsx)(_vectorIcons.Ionicons, {
|
|
147
|
-
name: "leaf-outline",
|
|
148
|
-
size: 24,
|
|
149
|
-
color: theme.helper
|
|
150
|
-
}),
|
|
151
|
-
activeIcon: /*#__PURE__*/(0, _jsxRuntime.jsx)(_vectorIcons.Ionicons, {
|
|
152
|
-
name: "leaf",
|
|
153
|
-
size: 24,
|
|
154
|
-
color: theme.primary
|
|
155
|
-
}),
|
|
156
|
-
title: "Eco-Warrior",
|
|
157
|
-
description: "Implement a rainwater harvesting system or greywater recycling.",
|
|
158
|
-
isActive: false,
|
|
159
|
-
status: "0/1",
|
|
160
|
-
statusBackgroundColor: theme.disabled,
|
|
161
|
-
statusTextColor: theme.text
|
|
162
|
-
}, {
|
|
163
|
-
icon: /*#__PURE__*/(0, _jsxRuntime.jsx)(_vectorIcons.Ionicons, {
|
|
164
|
-
name: "leaf-outline",
|
|
165
|
-
size: 24,
|
|
166
|
-
color: theme.helper
|
|
167
|
-
}),
|
|
168
|
-
activeIcon: /*#__PURE__*/(0, _jsxRuntime.jsx)(_vectorIcons.Ionicons, {
|
|
169
|
-
name: "leaf",
|
|
170
|
-
size: 24,
|
|
171
|
-
color: theme.primary
|
|
172
|
-
}),
|
|
173
|
-
title: "Eco-Warrior",
|
|
174
|
-
description: "Implement a rainwater harvesting system or greywater recycling.",
|
|
175
|
-
isActive: false,
|
|
176
|
-
status: "0/1",
|
|
177
|
-
statusBackgroundColor: theme.disabled,
|
|
178
|
-
statusTextColor: theme.text
|
|
179
|
-
}, {
|
|
180
|
-
icon: /*#__PURE__*/(0, _jsxRuntime.jsx)(_vectorIcons.Ionicons, {
|
|
181
|
-
name: "leaf-outline",
|
|
182
|
-
size: 24,
|
|
183
|
-
color: theme.helper
|
|
184
|
-
}),
|
|
185
|
-
activeIcon: /*#__PURE__*/(0, _jsxRuntime.jsx)(_vectorIcons.Ionicons, {
|
|
186
|
-
name: "leaf",
|
|
187
|
-
size: 24,
|
|
188
|
-
color: theme.primary
|
|
189
|
-
}),
|
|
190
|
-
title: "Eco-Warrior",
|
|
191
|
-
description: "Implement a rainwater harvesting system or greywater recycling.",
|
|
192
|
-
isActive: false,
|
|
193
|
-
status: "0/1",
|
|
194
|
-
statusBackgroundColor: theme.disabled,
|
|
195
|
-
statusTextColor: theme.text
|
|
196
|
-
}, {
|
|
197
|
-
icon: /*#__PURE__*/(0, _jsxRuntime.jsx)(_vectorIcons.Ionicons, {
|
|
198
|
-
name: "leaf-outline",
|
|
199
|
-
size: 24,
|
|
200
|
-
color: theme.helper
|
|
201
|
-
}),
|
|
202
|
-
activeIcon: /*#__PURE__*/(0, _jsxRuntime.jsx)(_vectorIcons.Ionicons, {
|
|
203
|
-
name: "leaf",
|
|
204
|
-
size: 24,
|
|
205
|
-
color: theme.primary
|
|
206
|
-
}),
|
|
207
|
-
title: "Eco-Warrior",
|
|
208
|
-
description: "Implement a rainwater harvesting system or greywater recycling.",
|
|
209
|
-
isActive: false,
|
|
210
|
-
status: "0/1",
|
|
211
|
-
statusBackgroundColor: theme.disabled,
|
|
212
|
-
statusTextColor: theme.text
|
|
213
|
-
}, {
|
|
214
|
-
icon: /*#__PURE__*/(0, _jsxRuntime.jsx)(_vectorIcons.Ionicons, {
|
|
215
|
-
name: "leaf-outline",
|
|
216
|
-
size: 24,
|
|
217
|
-
color: theme.helper
|
|
218
|
-
}),
|
|
219
|
-
activeIcon: /*#__PURE__*/(0, _jsxRuntime.jsx)(_vectorIcons.Ionicons, {
|
|
220
|
-
name: "leaf",
|
|
221
|
-
size: 24,
|
|
222
|
-
color: theme.primary
|
|
223
|
-
}),
|
|
224
|
-
title: "Eco-Warrior",
|
|
225
|
-
description: "Implement a rainwater harvesting system or greywater recycling.",
|
|
226
|
-
isActive: false,
|
|
227
|
-
status: "0/1",
|
|
228
|
-
statusBackgroundColor: theme.disabled,
|
|
229
|
-
statusTextColor: theme.text
|
|
230
|
-
}];
|
|
231
|
-
return /*#__PURE__*/(0, _jsxRuntime.jsx)(_reactNativeGestureHandler.GestureHandlerRootView, {
|
|
232
|
-
children: /*#__PURE__*/(0, _jsxRuntime.jsx)(_index.RelatedProvider, {
|
|
233
|
-
children: /*#__PURE__*/(0, _jsxRuntime.jsx)(_reactNativeSafeAreaContext.SafeAreaView, {
|
|
234
|
-
style: {
|
|
235
|
-
padding: 10,
|
|
236
|
-
flex: 1,
|
|
237
|
-
backgroundColor: theme.background
|
|
238
|
-
},
|
|
239
|
-
children: /*#__PURE__*/(0, _jsxRuntime.jsx)(_index2.ScratchCard, {
|
|
240
|
-
backgroundColor: "#8A2BE2",
|
|
241
|
-
text: "Scratch to reveal your prize!",
|
|
242
|
-
textFontColor: "#FFFFFF",
|
|
243
|
-
textFontSize: 18,
|
|
244
|
-
width: 300,
|
|
245
|
-
height: 150
|
|
246
|
-
// onScratched={() => alert("Congratulations! You won a prize!")}
|
|
247
|
-
,
|
|
248
|
-
children: /*#__PURE__*/(0, _jsxRuntime.jsxs)(_index2.ScratchCardContent, {
|
|
249
|
-
style: {
|
|
250
|
-
backgroundColor: "#FFD700"
|
|
251
|
-
},
|
|
252
|
-
children: [/*#__PURE__*/(0, _jsxRuntime.jsx)(_reactNative.Text, {
|
|
253
|
-
style: {
|
|
254
|
-
fontSize: 24,
|
|
255
|
-
fontWeight: "bold",
|
|
256
|
-
color: "#000"
|
|
257
|
-
},
|
|
258
|
-
children: "50% OFF COUPON"
|
|
259
|
-
}), /*#__PURE__*/(0, _jsxRuntime.jsx)(_reactNative.Text, {
|
|
260
|
-
style: {
|
|
261
|
-
marginTop: 8,
|
|
262
|
-
color: "#333"
|
|
263
|
-
},
|
|
264
|
-
children: "Use code: SCRATCH50"
|
|
265
|
-
})]
|
|
266
|
-
})
|
|
24
|
+
// State to control modal visibility
|
|
25
|
+
const [isScratchModalVisible, setScratchModalVisible] = (0, _react.useState)(false); // Example state
|
|
26
|
+
|
|
27
|
+
return (
|
|
28
|
+
/*#__PURE__*/
|
|
29
|
+
// Root view for the main app
|
|
30
|
+
(0, _jsxRuntime.jsx)(_reactNativeGestureHandler.GestureHandlerRootView, {
|
|
31
|
+
style: {
|
|
32
|
+
flex: 1
|
|
33
|
+
},
|
|
34
|
+
children: /*#__PURE__*/(0, _jsxRuntime.jsx)(_index.RelatedProvider, {
|
|
35
|
+
children: /*#__PURE__*/(0, _jsxRuntime.jsxs)(_reactNativeSafeAreaContext.SafeAreaView, {
|
|
36
|
+
style: {
|
|
37
|
+
flex: 1,
|
|
38
|
+
padding: 10,
|
|
39
|
+
backgroundColor: theme.background
|
|
40
|
+
},
|
|
41
|
+
children: [/*#__PURE__*/(0, _jsxRuntime.jsx)(_reactNative.TouchableOpacity, {
|
|
42
|
+
onPress: () => setScratchModalVisible(true),
|
|
43
|
+
style: styles.testButton,
|
|
44
|
+
children: /*#__PURE__*/(0, _jsxRuntime.jsx)(_reactNative.Text, {
|
|
45
|
+
style: styles.buttonText,
|
|
46
|
+
children: "Show Scratch Card Modal"
|
|
47
|
+
})
|
|
48
|
+
}), /*#__PURE__*/(0, _jsxRuntime.jsx)(_reactNative.Modal, {
|
|
49
|
+
visible: isScratchModalVisible,
|
|
50
|
+
onRequestClose: () => setScratchModalVisible(false) // Allow closing
|
|
51
|
+
,
|
|
52
|
+
transparent: true // Example: make it transparent
|
|
53
|
+
,
|
|
54
|
+
animationType: "slide" // Example animation
|
|
55
|
+
,
|
|
56
|
+
children: /*#__PURE__*/(0, _jsxRuntime.jsx)(_reactNativeGestureHandler.GestureHandlerRootView, {
|
|
57
|
+
style: styles.modalRootView,
|
|
58
|
+
children: /*#__PURE__*/(0, _jsxRuntime.jsx)(_reactNative.View, {
|
|
59
|
+
style: styles.modalOverlay,
|
|
60
|
+
children: /*#__PURE__*/(0, _jsxRuntime.jsxs)(_reactNative.View, {
|
|
61
|
+
style: styles.modalContentContainer,
|
|
62
|
+
children: [/*#__PURE__*/(0, _jsxRuntime.jsx)(_index2.ScratchCard, {
|
|
63
|
+
backgroundColor: "#8A2BE2",
|
|
64
|
+
text: "Scratch to reveal your prize!",
|
|
65
|
+
textFontColor: "#FFFFFF",
|
|
66
|
+
textFontSize: 18,
|
|
67
|
+
width: 300,
|
|
68
|
+
height: 150,
|
|
69
|
+
onScratched: () => {
|
|
70
|
+
_reactNative.Alert.alert("Congratulations!", "You won a prize!");
|
|
71
|
+
// Optionally close modal after scratching
|
|
72
|
+
// setTimeout(() => setScratchModalVisible(false), 500);
|
|
73
|
+
},
|
|
74
|
+
children: /*#__PURE__*/(0, _jsxRuntime.jsxs)(_index2.ScratchCardContent, {
|
|
75
|
+
style: {
|
|
76
|
+
backgroundColor: "#FFD700"
|
|
77
|
+
},
|
|
78
|
+
children: [/*#__PURE__*/(0, _jsxRuntime.jsx)(_reactNative.Text, {
|
|
79
|
+
style: {
|
|
80
|
+
fontSize: 24,
|
|
81
|
+
fontWeight: "bold",
|
|
82
|
+
color: "#000"
|
|
83
|
+
},
|
|
84
|
+
children: "50% OFF COUPON"
|
|
85
|
+
}), /*#__PURE__*/(0, _jsxRuntime.jsx)(_reactNative.Text, {
|
|
86
|
+
style: {
|
|
87
|
+
marginTop: 8,
|
|
88
|
+
color: "#333"
|
|
89
|
+
},
|
|
90
|
+
children: "Use code: SCRATCH50"
|
|
91
|
+
})]
|
|
92
|
+
})
|
|
93
|
+
}), /*#__PURE__*/(0, _jsxRuntime.jsx)(_reactNative.TouchableOpacity, {
|
|
94
|
+
onPress: () => setScratchModalVisible(false),
|
|
95
|
+
style: styles.closeButton,
|
|
96
|
+
children: /*#__PURE__*/(0, _jsxRuntime.jsx)(_reactNative.Text, {
|
|
97
|
+
style: styles.buttonText,
|
|
98
|
+
children: "Close"
|
|
99
|
+
})
|
|
100
|
+
})]
|
|
101
|
+
})
|
|
102
|
+
})
|
|
103
|
+
})
|
|
104
|
+
})]
|
|
267
105
|
})
|
|
268
106
|
})
|
|
269
107
|
})
|
|
270
|
-
|
|
108
|
+
);
|
|
271
109
|
}
|
|
272
110
|
const styles = _reactNative.StyleSheet.create({
|
|
273
|
-
|
|
274
|
-
flex: 1,
|
|
275
|
-
backgroundColor: "black",
|
|
276
|
-
padding: 10
|
|
277
|
-
},
|
|
111
|
+
// ... your existing styles
|
|
278
112
|
testButton: {
|
|
279
113
|
backgroundColor: "#4a90e2",
|
|
280
114
|
paddingVertical: 12,
|
|
281
115
|
paddingHorizontal: 30,
|
|
282
116
|
borderRadius: 8,
|
|
283
|
-
marginBottom: 20
|
|
117
|
+
marginBottom: 20,
|
|
118
|
+
alignSelf: "center"
|
|
284
119
|
},
|
|
285
120
|
buttonText: {
|
|
286
121
|
color: "#FFFFFF",
|
|
287
122
|
fontSize: 16,
|
|
288
123
|
fontWeight: "bold",
|
|
289
124
|
textAlign: "center"
|
|
125
|
+
},
|
|
126
|
+
// Styles for the Modal
|
|
127
|
+
modalRootView: {
|
|
128
|
+
flex: 1 // Important for the root view to take up space
|
|
129
|
+
},
|
|
130
|
+
modalOverlay: {
|
|
131
|
+
flex: 1,
|
|
132
|
+
backgroundColor: "rgba(0, 0, 0, 0.5)",
|
|
133
|
+
// Semi-transparent background
|
|
134
|
+
justifyContent: "center",
|
|
135
|
+
// Center content vertically
|
|
136
|
+
alignItems: "center" // Center content horizontally
|
|
137
|
+
},
|
|
138
|
+
modalContentContainer: {
|
|
139
|
+
// Optional: Add padding or background to the content area if needed
|
|
140
|
+
// backgroundColor: 'white',
|
|
141
|
+
// padding: 20,
|
|
142
|
+
// borderRadius: 10,
|
|
143
|
+
alignItems: "center" // Center items like the close button
|
|
144
|
+
},
|
|
145
|
+
closeButton: {
|
|
146
|
+
marginTop: 20,
|
|
147
|
+
backgroundColor: "#d9534f",
|
|
148
|
+
paddingVertical: 10,
|
|
149
|
+
paddingHorizontal: 25,
|
|
150
|
+
borderRadius: 8
|
|
290
151
|
}
|
|
291
152
|
});
|
|
292
153
|
//# sourceMappingURL=app.js.map
|
package/lib/commonjs/app.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"names":["_react","_interopRequireWildcard","require","_reactNative","
|
|
1
|
+
{"version":3,"names":["_react","_interopRequireWildcard","require","_reactNative","_index","_index2","_reactNativeSafeAreaContext","_reactNativeGestureHandler","_jsxRuntime","_getRequireWildcardCache","e","WeakMap","r","t","__esModule","default","has","get","n","__proto__","a","Object","defineProperty","getOwnPropertyDescriptor","u","hasOwnProperty","call","i","set","App","theme","useTheme","isScratchModalVisible","setScratchModalVisible","useState","jsx","GestureHandlerRootView","style","flex","children","RelatedProvider","jsxs","SafeAreaView","padding","backgroundColor","background","TouchableOpacity","onPress","styles","testButton","Text","buttonText","Modal","visible","onRequestClose","transparent","animationType","modalRootView","View","modalOverlay","modalContentContainer","ScratchCard","text","textFontColor","textFontSize","width","height","onScratched","Alert","alert","ScratchCardContent","fontSize","fontWeight","color","marginTop","closeButton","StyleSheet","create","paddingVertical","paddingHorizontal","borderRadius","marginBottom","alignSelf","textAlign","justifyContent","alignItems"],"sourceRoot":"..\\..\\src","sources":["app.tsx"],"mappings":"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","ignoreList":[]}
|