vrtx-react-native 0.1.60
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/.oxfmtrc.json +5 -0
- package/.oxlintrc.json +5 -0
- package/AGENTS.md +44 -0
- package/CLAUDE.md +44 -0
- package/LICENSE +201 -0
- package/README.md +91 -0
- package/SECURITY.md +21 -0
- package/android/build.gradle +43 -0
- package/android/src/main/AndroidManifest.xml +2 -0
- package/android/src/main/java/sa/vrtx/reactnative/VrtxAndroidModule.kt +105 -0
- package/build/VrtxAndroidModule.d.ts +38 -0
- package/build/VrtxAndroidModule.d.ts.map +1 -0
- package/build/VrtxAndroidModule.js +19 -0
- package/build/VrtxAndroidModule.js.map +1 -0
- package/build/index.d.ts +34 -0
- package/build/index.d.ts.map +1 -0
- package/build/index.js +29 -0
- package/build/index.js.map +1 -0
- package/expo-module.config.json +9 -0
- package/ios/VrtxAndroid.podspec +34 -0
- package/ios/VrtxAndroidModule.swift +60 -0
- package/package.json +63 -0
- package/scripts/fetch-vrtx-ios.mjs +68 -0
- package/src/VrtxAndroidModule.ts +48 -0
- package/src/index.ts +82 -0
- package/tsconfig.json +9 -0
package/.oxfmtrc.json
ADDED
package/.oxlintrc.json
ADDED
package/AGENTS.md
ADDED
|
@@ -0,0 +1,44 @@
|
|
|
1
|
+
# Local Testing
|
|
2
|
+
|
|
3
|
+
Use the `example` app for local validation through the same package flow used by
|
|
4
|
+
real consumers. Do not use `npm link` for normal testing.
|
|
5
|
+
|
|
6
|
+
## After SDK changes
|
|
7
|
+
|
|
8
|
+
When changing files in `src/`, `android/`, or `ios/`:
|
|
9
|
+
|
|
10
|
+
1. From the repository root, publish a new patch release:
|
|
11
|
+
|
|
12
|
+
```bash
|
|
13
|
+
npm run release
|
|
14
|
+
```
|
|
15
|
+
|
|
16
|
+
This bumps the package version and publishes
|
|
17
|
+
`vrtx-react-native` to the configured registry.
|
|
18
|
+
|
|
19
|
+
2. Update `example/package.json` so
|
|
20
|
+
`vrtx-react-native` points to the newly released version.
|
|
21
|
+
|
|
22
|
+
3. Reinstall the example app dependencies:
|
|
23
|
+
|
|
24
|
+
```bash
|
|
25
|
+
cd example
|
|
26
|
+
npm install
|
|
27
|
+
```
|
|
28
|
+
|
|
29
|
+
4. Test the installed package through normal Expo and React Native autolinking:
|
|
30
|
+
|
|
31
|
+
```bash
|
|
32
|
+
npm run android
|
|
33
|
+
# or
|
|
34
|
+
npm run ios
|
|
35
|
+
```
|
|
36
|
+
|
|
37
|
+
## Testing notes
|
|
38
|
+
|
|
39
|
+
- The example app should test the published package version, not a symlinked
|
|
40
|
+
local checkout.
|
|
41
|
+
- `npm install` in `example/` runs `npx expo prebuild`, so native projects are
|
|
42
|
+
regenerated before testing.
|
|
43
|
+
- Rebuild the example app after native changes; Metro reloads alone is not
|
|
44
|
+
enough for Android or iOS code changes.
|
package/CLAUDE.md
ADDED
|
@@ -0,0 +1,44 @@
|
|
|
1
|
+
# Local Testing
|
|
2
|
+
|
|
3
|
+
Use the `example` app for local validation through the same package flow used by
|
|
4
|
+
real consumers. Do not use `npm link` for normal testing.
|
|
5
|
+
|
|
6
|
+
## After SDK changes
|
|
7
|
+
|
|
8
|
+
When changing files in `src/`, `android/`, or `ios/`:
|
|
9
|
+
|
|
10
|
+
1. From the repository root, publish a new patch release:
|
|
11
|
+
|
|
12
|
+
```bash
|
|
13
|
+
npm run release
|
|
14
|
+
```
|
|
15
|
+
|
|
16
|
+
This bumps the package version and publishes
|
|
17
|
+
`vrtx-react-native` to the configured registry.
|
|
18
|
+
|
|
19
|
+
2. Update `example/package.json` so
|
|
20
|
+
`vrtx-react-native` points to the newly released version.
|
|
21
|
+
|
|
22
|
+
3. Reinstall the example app dependencies:
|
|
23
|
+
|
|
24
|
+
```bash
|
|
25
|
+
cd example
|
|
26
|
+
npm install
|
|
27
|
+
```
|
|
28
|
+
|
|
29
|
+
4. Test the installed package through normal Expo and React Native autolinking:
|
|
30
|
+
|
|
31
|
+
```bash
|
|
32
|
+
npm run android
|
|
33
|
+
# or
|
|
34
|
+
npm run ios
|
|
35
|
+
```
|
|
36
|
+
|
|
37
|
+
## Testing notes
|
|
38
|
+
|
|
39
|
+
- The example app should test the published package version, not a symlinked
|
|
40
|
+
local checkout.
|
|
41
|
+
- `npm install` in `example/` runs `npx expo prebuild`, so native projects are
|
|
42
|
+
regenerated before testing.
|
|
43
|
+
- Rebuild the example app after native changes; Metro reloads alone is not
|
|
44
|
+
enough for Android or iOS code changes.
|
package/LICENSE
ADDED
|
@@ -0,0 +1,201 @@
|
|
|
1
|
+
Apache License
|
|
2
|
+
Version 2.0, January 2004
|
|
3
|
+
http://www.apache.org/licenses/
|
|
4
|
+
|
|
5
|
+
TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
|
|
6
|
+
|
|
7
|
+
1. Definitions.
|
|
8
|
+
|
|
9
|
+
"License" shall mean the terms and conditions for use, reproduction,
|
|
10
|
+
and distribution as defined by Sections 1 through 9 of this document.
|
|
11
|
+
|
|
12
|
+
"Licensor" shall mean the copyright owner or entity authorized by
|
|
13
|
+
the copyright owner that is granting the License.
|
|
14
|
+
|
|
15
|
+
"Legal Entity" shall mean the union of the acting entity and all
|
|
16
|
+
other entities that control, are controlled by, or are under common
|
|
17
|
+
control with that entity. For the purposes of this definition,
|
|
18
|
+
"control" means (i) the power, direct or indirect, to cause the
|
|
19
|
+
direction or management of such entity, whether by contract or
|
|
20
|
+
otherwise, or (ii) ownership of fifty percent (50%) or more of the
|
|
21
|
+
outstanding shares, or (iii) beneficial ownership of such entity.
|
|
22
|
+
|
|
23
|
+
"You" (or "Your") shall mean an individual or Legal Entity
|
|
24
|
+
exercising permissions granted by this License.
|
|
25
|
+
|
|
26
|
+
"Source" form shall mean the preferred form for making modifications,
|
|
27
|
+
including but not limited to software source code, documentation
|
|
28
|
+
source, and configuration files.
|
|
29
|
+
|
|
30
|
+
"Object" form shall mean any form resulting from mechanical
|
|
31
|
+
transformation or translation of a Source form, including but
|
|
32
|
+
not limited to compiled object code, generated documentation,
|
|
33
|
+
and conversions to other media types.
|
|
34
|
+
|
|
35
|
+
"Work" shall mean the work of authorship, whether in Source or
|
|
36
|
+
Object form, made available under the License, as indicated by a
|
|
37
|
+
copyright notice that is included in or attached to the work
|
|
38
|
+
(an example is provided in the Appendix below).
|
|
39
|
+
|
|
40
|
+
"Derivative Works" shall mean any work, whether in Source or Object
|
|
41
|
+
form, that is based on (or derived from) the Work and for which the
|
|
42
|
+
editorial revisions, annotations, elaborations, or other modifications
|
|
43
|
+
represent, as a whole, an original work of authorship. For the purposes
|
|
44
|
+
of this License, Derivative Works shall not include works that remain
|
|
45
|
+
separable from, or merely link (or bind by name) to the interfaces of,
|
|
46
|
+
the Work and Derivative Works thereof.
|
|
47
|
+
|
|
48
|
+
"Contribution" shall mean any work of authorship, including
|
|
49
|
+
the original version of the Work and any modifications or additions
|
|
50
|
+
to that Work or Derivative Works thereof, that is intentionally
|
|
51
|
+
submitted to Licensor for inclusion in the Work by the copyright owner
|
|
52
|
+
or by an individual or Legal Entity authorized to submit on behalf of
|
|
53
|
+
the copyright owner. For the purposes of this definition, "submitted"
|
|
54
|
+
means any form of electronic, verbal, or written communication sent
|
|
55
|
+
to the Licensor or its representatives, including but not limited to
|
|
56
|
+
communication on electronic mailing lists, source code control systems,
|
|
57
|
+
and issue tracking systems that are managed by, or on behalf of, the
|
|
58
|
+
Licensor for the purpose of discussing and improving the Work, but
|
|
59
|
+
excluding communication that is conspicuously marked or otherwise
|
|
60
|
+
designated in writing by the copyright owner as "Not a Contribution."
|
|
61
|
+
|
|
62
|
+
"Contributor" shall mean Licensor and any individual or Legal Entity
|
|
63
|
+
on behalf of whom a Contribution has been received by Licensor and
|
|
64
|
+
subsequently incorporated within the Work.
|
|
65
|
+
|
|
66
|
+
2. Grant of Copyright License. Subject to the terms and conditions of
|
|
67
|
+
this License, each Contributor hereby grants to You a perpetual,
|
|
68
|
+
worldwide, non-exclusive, no-charge, royalty-free, irrevocable
|
|
69
|
+
copyright license to reproduce, prepare Derivative Works of,
|
|
70
|
+
publicly display, publicly perform, sublicense, and distribute the
|
|
71
|
+
Work and such Derivative Works in Source or Object form.
|
|
72
|
+
|
|
73
|
+
3. Grant of Patent License. Subject to the terms and conditions of
|
|
74
|
+
this License, each Contributor hereby grants to You a perpetual,
|
|
75
|
+
worldwide, non-exclusive, no-charge, royalty-free, irrevocable
|
|
76
|
+
(except as stated in this section) patent license to make, have made,
|
|
77
|
+
use, offer to sell, sell, import, and otherwise transfer the Work,
|
|
78
|
+
where such license applies only to those patent claims licensable
|
|
79
|
+
by such Contributor that are necessarily infringed by their
|
|
80
|
+
Contribution(s) alone or by combination of their Contribution(s)
|
|
81
|
+
with the Work to which such Contribution(s) was submitted. If You
|
|
82
|
+
institute patent litigation against any entity (including a
|
|
83
|
+
cross-claim or counterclaim in a lawsuit) alleging that the Work
|
|
84
|
+
or a Contribution incorporated within the Work constitutes direct
|
|
85
|
+
or contributory patent infringement, then any patent licenses
|
|
86
|
+
granted to You under this License for that Work shall terminate
|
|
87
|
+
as of the date such litigation is filed.
|
|
88
|
+
|
|
89
|
+
4. Redistribution. You may reproduce and distribute copies of the
|
|
90
|
+
Work or Derivative Works thereof in any medium, with or without
|
|
91
|
+
modifications, and in Source or Object form, provided that You
|
|
92
|
+
meet the following conditions:
|
|
93
|
+
|
|
94
|
+
(a) You must give any other recipients of the Work or
|
|
95
|
+
Derivative Works a copy of this License; and
|
|
96
|
+
|
|
97
|
+
(b) You must cause any modified files to carry prominent notices
|
|
98
|
+
stating that You changed the files; and
|
|
99
|
+
|
|
100
|
+
(c) You must retain, in the Source form of any Derivative Works
|
|
101
|
+
that You distribute, all copyright, patent, trademark, and
|
|
102
|
+
attribution notices from the Source form of the Work,
|
|
103
|
+
excluding those notices that do not pertain to any part of
|
|
104
|
+
the Derivative Works; and
|
|
105
|
+
|
|
106
|
+
(d) If the Work includes a "NOTICE" text file as part of its
|
|
107
|
+
distribution, then any Derivative Works that You distribute must
|
|
108
|
+
include a readable copy of the attribution notices contained
|
|
109
|
+
within such NOTICE file, excluding those notices that do not
|
|
110
|
+
pertain to any part of the Derivative Works, in at least one
|
|
111
|
+
of the following places: within a NOTICE text file distributed
|
|
112
|
+
as part of the Derivative Works; within the Source form or
|
|
113
|
+
documentation, if provided along with the Derivative Works; or,
|
|
114
|
+
within a display generated by the Derivative Works, if and
|
|
115
|
+
wherever such third-party notices normally appear. The contents
|
|
116
|
+
of the NOTICE file are for informational purposes only and
|
|
117
|
+
do not modify the License. You may add Your own attribution
|
|
118
|
+
notices within Derivative Works that You distribute, alongside
|
|
119
|
+
or as an addendum to the NOTICE text from the Work, provided
|
|
120
|
+
that such additional attribution notices cannot be construed
|
|
121
|
+
as modifying the License.
|
|
122
|
+
|
|
123
|
+
You may add Your own copyright statement to Your modifications and
|
|
124
|
+
may provide additional or different license terms and conditions
|
|
125
|
+
for use, reproduction, or distribution of Your modifications, or
|
|
126
|
+
for any such Derivative Works as a whole, provided Your use,
|
|
127
|
+
reproduction, and distribution of the Work otherwise complies with
|
|
128
|
+
the conditions stated in this License.
|
|
129
|
+
|
|
130
|
+
5. Submission of Contributions. Unless You explicitly state otherwise,
|
|
131
|
+
any Contribution intentionally submitted for inclusion in the Work
|
|
132
|
+
by You to the Licensor shall be under the terms and conditions of
|
|
133
|
+
this License, without any additional terms or conditions.
|
|
134
|
+
Notwithstanding the above, nothing herein shall supersede or modify
|
|
135
|
+
the terms of any separate license agreement you may have executed
|
|
136
|
+
with Licensor regarding such Contributions.
|
|
137
|
+
|
|
138
|
+
6. Trademarks. This License does not grant permission to use the trade
|
|
139
|
+
names, trademarks, service marks, or product names of the Licensor,
|
|
140
|
+
except as required for reasonable and customary use in describing the
|
|
141
|
+
origin of the Work and reproducing the content of the NOTICE file.
|
|
142
|
+
|
|
143
|
+
7. Disclaimer of Warranty. Unless required by applicable law or
|
|
144
|
+
agreed to in writing, Licensor provides the Work (and each
|
|
145
|
+
Contributor provides its Contributions) on an "AS IS" BASIS,
|
|
146
|
+
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
|
|
147
|
+
implied, including, without limitation, any warranties or conditions
|
|
148
|
+
of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
|
|
149
|
+
PARTICULAR PURPOSE. You are solely responsible for determining the
|
|
150
|
+
appropriateness of using or redistributing the Work and assume any
|
|
151
|
+
risks associated with Your exercise of permissions under this License.
|
|
152
|
+
|
|
153
|
+
8. Limitation of Liability. In no event and under no legal theory,
|
|
154
|
+
whether in tort (including negligence), contract, or otherwise,
|
|
155
|
+
unless required by applicable law (such as deliberate and grossly
|
|
156
|
+
negligent acts) or agreed to in writing, shall any Contributor be
|
|
157
|
+
liable to You for damages, including any direct, indirect, special,
|
|
158
|
+
incidental, or consequential damages of any character arising as a
|
|
159
|
+
result of this License or out of the use or inability to use the
|
|
160
|
+
Work (including but not limited to damages for loss of goodwill,
|
|
161
|
+
work stoppage, computer failure or malfunction, or any and all
|
|
162
|
+
other commercial damages or losses), even if such Contributor
|
|
163
|
+
has been advised of the possibility of such damages.
|
|
164
|
+
|
|
165
|
+
9. Accepting Warranty or Additional Liability. While redistributing
|
|
166
|
+
the Work or Derivative Works thereof, You may choose to offer,
|
|
167
|
+
and charge a fee for, acceptance of support, warranty, indemnity,
|
|
168
|
+
or other liability obligations and/or rights consistent with this
|
|
169
|
+
License. However, in accepting such obligations, You may act only
|
|
170
|
+
on Your own behalf and on Your sole responsibility, not on behalf
|
|
171
|
+
of any other Contributor, and only if You agree to indemnify,
|
|
172
|
+
defend, and hold each Contributor harmless for any liability
|
|
173
|
+
incurred by, or claims asserted against, such Contributor by reason
|
|
174
|
+
of your accepting any such warranty or additional liability.
|
|
175
|
+
|
|
176
|
+
END OF TERMS AND CONDITIONS
|
|
177
|
+
|
|
178
|
+
APPENDIX: How to apply the Apache License to your work.
|
|
179
|
+
|
|
180
|
+
To apply the Apache License to your work, attach the following
|
|
181
|
+
boilerplate notice, with the fields enclosed by brackets "[]"
|
|
182
|
+
replaced with your own identifying information. (Don't include
|
|
183
|
+
the brackets!) The text should be enclosed in the appropriate
|
|
184
|
+
comment syntax for the file format. We also recommend that a
|
|
185
|
+
file or class name and description of purpose be included on the
|
|
186
|
+
same "printed page" as the copyright notice for easier
|
|
187
|
+
identification within third-party archives.
|
|
188
|
+
|
|
189
|
+
Copyright [yyyy] [name of copyright owner]
|
|
190
|
+
|
|
191
|
+
Licensed under the Apache License, Version 2.0 (the "License");
|
|
192
|
+
you may not use this file except in compliance with the License.
|
|
193
|
+
You may obtain a copy of the License at
|
|
194
|
+
|
|
195
|
+
http://www.apache.org/licenses/LICENSE-2.0
|
|
196
|
+
|
|
197
|
+
Unless required by applicable law or agreed to in writing, software
|
|
198
|
+
distributed under the License is distributed on an "AS IS" BASIS,
|
|
199
|
+
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
200
|
+
See the License for the specific language governing permissions and
|
|
201
|
+
limitations under the License.
|
package/README.md
ADDED
|
@@ -0,0 +1,91 @@
|
|
|
1
|
+
# vrtx-react-native
|
|
2
|
+
|
|
3
|
+
The official React Native SDK for Vrtx — onboarding, wallet, and card flows for your app.
|
|
4
|
+
|
|
5
|
+
## Install
|
|
6
|
+
|
|
7
|
+
```bash
|
|
8
|
+
npm install vrtx-react-native
|
|
9
|
+
```
|
|
10
|
+
|
|
11
|
+
## Quick start
|
|
12
|
+
|
|
13
|
+
```ts
|
|
14
|
+
import {
|
|
15
|
+
Environment,
|
|
16
|
+
Language,
|
|
17
|
+
Mode,
|
|
18
|
+
onError,
|
|
19
|
+
onSuccess,
|
|
20
|
+
setup,
|
|
21
|
+
} from 'vrtx-react-native';
|
|
22
|
+
|
|
23
|
+
const successSubscription = onSuccess(() => {
|
|
24
|
+
console.log('Vrtx screen opened');
|
|
25
|
+
});
|
|
26
|
+
|
|
27
|
+
const errorSubscription = onError((error) => {
|
|
28
|
+
console.error('Vrtx error:', error.code, error.message);
|
|
29
|
+
});
|
|
30
|
+
|
|
31
|
+
await setup({
|
|
32
|
+
clientId: 'your-client-id',
|
|
33
|
+
clientSecret: 'your-client-secret',
|
|
34
|
+
environment: Environment.Sandbox,
|
|
35
|
+
language: Language.English,
|
|
36
|
+
mode: Mode.LIGHT,
|
|
37
|
+
});
|
|
38
|
+
|
|
39
|
+
// Remove listeners when they are no longer needed.
|
|
40
|
+
successSubscription.remove();
|
|
41
|
+
errorSubscription.remove();
|
|
42
|
+
```
|
|
43
|
+
|
|
44
|
+
## Requirements
|
|
45
|
+
|
|
46
|
+
### iOS
|
|
47
|
+
|
|
48
|
+
| Requirement | Version |
|
|
49
|
+
| ----------- | ------- |
|
|
50
|
+
| iOS | 15.6+ |
|
|
51
|
+
| Xcode | 16+ |
|
|
52
|
+
| Swift | 5.9+ |
|
|
53
|
+
|
|
54
|
+
### Android
|
|
55
|
+
|
|
56
|
+
| Requirement | Version |
|
|
57
|
+
| --------------------- | ------- |
|
|
58
|
+
| `minSdk` | 29 |
|
|
59
|
+
| `compileSdk` | 36 |
|
|
60
|
+
| Android Gradle Plugin | 8.13 |
|
|
61
|
+
| Kotlin | 2.1 |
|
|
62
|
+
| JVM target | 17 |
|
|
63
|
+
|
|
64
|
+
## Contract
|
|
65
|
+
|
|
66
|
+
The React Native API mirrors the Android SDK public enums:
|
|
67
|
+
|
|
68
|
+
| Parameter | Enum | Values |
|
|
69
|
+
| ------------- | ------------- | -------------------------------------------- |
|
|
70
|
+
| `environment` | `Environment` | `Environment.Sandbox`, `Environment.Staging` |
|
|
71
|
+
| `language` | `Language` | `Language.English`, `Language.Arabic` |
|
|
72
|
+
| `mode` | `Mode` | `Mode.LIGHT`, `Mode.DARK` |
|
|
73
|
+
|
|
74
|
+
`fontFamily` may be passed with the name of a font already bundled in the host app.
|
|
75
|
+
|
|
76
|
+
## Events
|
|
77
|
+
|
|
78
|
+
| Helper | Callback payload |
|
|
79
|
+
| ----------- | ---------------------------------------------------- |
|
|
80
|
+
| `onSuccess` | `() => void` |
|
|
81
|
+
| `onError` | `(error: { code: string; message: string }) => void` |
|
|
82
|
+
|
|
83
|
+
Both helpers return a subscription with a `remove()` method.
|
|
84
|
+
|
|
85
|
+
## Support
|
|
86
|
+
|
|
87
|
+
For credentials, license keys, and integration help, contact your Vrtx account manager or [support@vrtx.sa](mailto:support@vrtx.sa).
|
|
88
|
+
|
|
89
|
+
## License
|
|
90
|
+
|
|
91
|
+
Licensed under the Apache License, Version 2.0. Copyright (C) 2026 vrtx fintech.
|
package/SECURITY.md
ADDED
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
# Security Policy
|
|
2
|
+
|
|
3
|
+
## Supported Versions
|
|
4
|
+
|
|
5
|
+
Use this section to tell people about which versions of your project are
|
|
6
|
+
currently being supported with security updates.
|
|
7
|
+
|
|
8
|
+
| Version | Supported |
|
|
9
|
+
| ------- | ------------------ |
|
|
10
|
+
| 5.1.x | :white_check_mark: |
|
|
11
|
+
| 5.0.x | :x: |
|
|
12
|
+
| 4.0.x | :white_check_mark: |
|
|
13
|
+
| < 4.0 | :x: |
|
|
14
|
+
|
|
15
|
+
## Reporting a Vulnerability
|
|
16
|
+
|
|
17
|
+
Use this section to tell people how to report a vulnerability.
|
|
18
|
+
|
|
19
|
+
Tell them where to go, how often they can expect to get an update on a
|
|
20
|
+
reported vulnerability, what to expect if the vulnerability is accepted or
|
|
21
|
+
declined, etc.
|
|
@@ -0,0 +1,43 @@
|
|
|
1
|
+
plugins {
|
|
2
|
+
id 'com.android.library'
|
|
3
|
+
id 'org.jetbrains.kotlin.android'
|
|
4
|
+
id 'expo-module-gradle-plugin'
|
|
5
|
+
}
|
|
6
|
+
|
|
7
|
+
repositories {
|
|
8
|
+
mavenCentral()
|
|
9
|
+
}
|
|
10
|
+
|
|
11
|
+
group = 'sa.vrtx.reactnative'
|
|
12
|
+
version = '0.1.0'
|
|
13
|
+
|
|
14
|
+
dependencies {
|
|
15
|
+
implementation 'sa.vrtx.sa:vrtx-android:0.0.12'
|
|
16
|
+
implementation 'androidx.compose.ui:ui:1.6.8'
|
|
17
|
+
implementation 'androidx.activity:activity-compose:1.9.0'
|
|
18
|
+
implementation 'com.facebook.react:react-android'
|
|
19
|
+
}
|
|
20
|
+
|
|
21
|
+
android {
|
|
22
|
+
namespace "sa.vrtx.reactnative"
|
|
23
|
+
defaultConfig {
|
|
24
|
+
versionCode 1
|
|
25
|
+
versionName "0.1.0"
|
|
26
|
+
minSdk 29
|
|
27
|
+
compileSdk 36
|
|
28
|
+
targetSdk 36
|
|
29
|
+
}
|
|
30
|
+
|
|
31
|
+
compileOptions {
|
|
32
|
+
sourceCompatibility JavaVersion.VERSION_17
|
|
33
|
+
targetCompatibility JavaVersion.VERSION_17
|
|
34
|
+
}
|
|
35
|
+
|
|
36
|
+
kotlinOptions {
|
|
37
|
+
jvmTarget = '17'
|
|
38
|
+
}
|
|
39
|
+
|
|
40
|
+
lintOptions {
|
|
41
|
+
abortOnError false
|
|
42
|
+
}
|
|
43
|
+
}
|
|
@@ -0,0 +1,105 @@
|
|
|
1
|
+
package sa.vrtx.reactnative
|
|
2
|
+
|
|
3
|
+
import android.graphics.Typeface
|
|
4
|
+
import androidx.activity.ComponentActivity
|
|
5
|
+
import expo.modules.kotlin.modules.Module
|
|
6
|
+
import expo.modules.kotlin.modules.ModuleDefinition
|
|
7
|
+
import expo.modules.kotlin.Promise
|
|
8
|
+
import expo.modules.kotlin.exception.CodedException
|
|
9
|
+
import com.facebook.react.common.assets.ReactFontManager
|
|
10
|
+
import sa.vrtx.public.Vrtx
|
|
11
|
+
import sa.vrtx.public.configuration.Environment
|
|
12
|
+
import sa.vrtx.public.configuration.Language
|
|
13
|
+
import sa.vrtx.public.configuration.Mode
|
|
14
|
+
import androidx.compose.ui.text.font.FontFamily
|
|
15
|
+
|
|
16
|
+
class VrtxAndroidModule : Module() {
|
|
17
|
+
|
|
18
|
+
private fun getActivity(): ComponentActivity? {
|
|
19
|
+
return appContext.activityProvider?.currentActivity as? ComponentActivity
|
|
20
|
+
}
|
|
21
|
+
|
|
22
|
+
private fun getFontFamily(fontFamilyName: String?): FontFamily {
|
|
23
|
+
if (fontFamilyName.isNullOrBlank()) {
|
|
24
|
+
return FontFamily.Default
|
|
25
|
+
}
|
|
26
|
+
|
|
27
|
+
val assetManager = appContext.reactContext?.assets ?: return FontFamily.Default
|
|
28
|
+
val typeface = ReactFontManager.getInstance().getTypeface(
|
|
29
|
+
fontFamilyName,
|
|
30
|
+
Typeface.NORMAL,
|
|
31
|
+
assetManager
|
|
32
|
+
)
|
|
33
|
+
|
|
34
|
+
return FontFamily(typeface)
|
|
35
|
+
}
|
|
36
|
+
|
|
37
|
+
override fun definition() = ModuleDefinition {
|
|
38
|
+
Name("VrtxAndroid")
|
|
39
|
+
|
|
40
|
+
Constant("LIBRARY_NAME") {
|
|
41
|
+
"vrtx-android"
|
|
42
|
+
}
|
|
43
|
+
|
|
44
|
+
Events("onSuccess", "onError")
|
|
45
|
+
|
|
46
|
+
AsyncFunction("setup") {
|
|
47
|
+
clientId: String,
|
|
48
|
+
clientSecret: String,
|
|
49
|
+
environment: String,
|
|
50
|
+
language: String,
|
|
51
|
+
mode: String?,
|
|
52
|
+
fontFamilyName: String?,
|
|
53
|
+
promise: Promise ->
|
|
54
|
+
|
|
55
|
+
val env = when(environment.uppercase()) {
|
|
56
|
+
"STAGING" -> Environment.Staging
|
|
57
|
+
else -> Environment.Sandbox
|
|
58
|
+
}
|
|
59
|
+
|
|
60
|
+
val lang = when(language.uppercase()) {
|
|
61
|
+
"ARABIC" -> Language.Arabic
|
|
62
|
+
else -> Language.English
|
|
63
|
+
}
|
|
64
|
+
|
|
65
|
+
val selectedMode = when(mode?.uppercase()) {
|
|
66
|
+
"DARK" -> Mode.DARK
|
|
67
|
+
else -> Mode.LIGHT
|
|
68
|
+
}
|
|
69
|
+
|
|
70
|
+
val fontFamily = getFontFamily(fontFamilyName)
|
|
71
|
+
|
|
72
|
+
val activity = getActivity()
|
|
73
|
+
if (activity == null) {
|
|
74
|
+
promise.reject(CodedException("VRX_ERROR", "Activity not available", null))
|
|
75
|
+
return@AsyncFunction
|
|
76
|
+
}
|
|
77
|
+
|
|
78
|
+
activity.runOnUiThread {
|
|
79
|
+
try {
|
|
80
|
+
Vrtx.setup(
|
|
81
|
+
clientId = clientId,
|
|
82
|
+
clientSecret = clientSecret,
|
|
83
|
+
environment = env,
|
|
84
|
+
language = lang,
|
|
85
|
+
mode = selectedMode,
|
|
86
|
+
fontFamily = fontFamily,
|
|
87
|
+
onSuccess = {
|
|
88
|
+
promise.resolve(null)
|
|
89
|
+
sendEvent("onSuccess")
|
|
90
|
+
},
|
|
91
|
+
onError = { error ->
|
|
92
|
+
val errorMessage = error.message ?: "Unknown error"
|
|
93
|
+
promise.reject(CodedException("VRX_ERROR", errorMessage, null))
|
|
94
|
+
sendEvent("onError", mapOf("code" to "VRX_ERROR", "message" to errorMessage))
|
|
95
|
+
}
|
|
96
|
+
)
|
|
97
|
+
} catch (e: Exception) {
|
|
98
|
+
val errorMessage = e.message ?: "Failed to initialize Vrtx SDK"
|
|
99
|
+
promise.reject(CodedException("VRX_ERROR", errorMessage, e))
|
|
100
|
+
sendEvent("onError", mapOf("code" to "VRX_ERROR", "message" to errorMessage))
|
|
101
|
+
}
|
|
102
|
+
}
|
|
103
|
+
}
|
|
104
|
+
}
|
|
105
|
+
}
|
|
@@ -0,0 +1,38 @@
|
|
|
1
|
+
import { NativeModule } from 'expo';
|
|
2
|
+
type VrtxAndroidModuleEvents = {
|
|
3
|
+
onSuccess: () => void;
|
|
4
|
+
onError: (params: {
|
|
5
|
+
code: string;
|
|
6
|
+
message: string;
|
|
7
|
+
}) => void;
|
|
8
|
+
};
|
|
9
|
+
declare class VrtxAndroidModule extends NativeModule<VrtxAndroidModuleEvents> {
|
|
10
|
+
readonly VERSION: string;
|
|
11
|
+
readonly LIBRARY_NAME: string;
|
|
12
|
+
/**
|
|
13
|
+
* Initialize and launch the Vrtx SDK UI flow
|
|
14
|
+
*
|
|
15
|
+
* @param clientId Your Vrtx client ID from the dashboard
|
|
16
|
+
* @param clientSecret Your Vrtx client secret from the dashboard
|
|
17
|
+
* @param environment The environment (SANDBOX or STAGING)
|
|
18
|
+
* @param language The language for the UI (ENGLISH or ARABIC)
|
|
19
|
+
* @param mode Optional display mode (LIGHT or DARK) - defaults to LIGHT
|
|
20
|
+
* @param fontFamily Optional React Native font family name - defaults to the system font
|
|
21
|
+
*/
|
|
22
|
+
setup(clientId: string, clientSecret: string, environment: 'SANDBOX' | 'STAGING', language: 'ENGLISH' | 'ARABIC', mode?: 'LIGHT' | 'DARK', fontFamily?: string): Promise<void>;
|
|
23
|
+
}
|
|
24
|
+
declare const _default: VrtxAndroidModule;
|
|
25
|
+
export default _default;
|
|
26
|
+
export declare enum Environment {
|
|
27
|
+
Sandbox = "SANDBOX",
|
|
28
|
+
Staging = "STAGING"
|
|
29
|
+
}
|
|
30
|
+
export declare enum Language {
|
|
31
|
+
English = "ENGLISH",
|
|
32
|
+
Arabic = "ARABIC"
|
|
33
|
+
}
|
|
34
|
+
export declare enum Mode {
|
|
35
|
+
LIGHT = "LIGHT",
|
|
36
|
+
DARK = "DARK"
|
|
37
|
+
}
|
|
38
|
+
//# sourceMappingURL=VrtxAndroidModule.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"VrtxAndroidModule.d.ts","sourceRoot":"","sources":["../src/VrtxAndroidModule.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,YAAY,EAAuB,MAAM,MAAM,CAAC;AAEzD,KAAK,uBAAuB,GAAG;IAC7B,SAAS,EAAE,MAAM,IAAI,CAAC;IACtB,OAAO,EAAE,CAAC,MAAM,EAAE;QAAE,IAAI,EAAE,MAAM,CAAC;QAAC,OAAO,EAAE,MAAM,CAAA;KAAE,KAAK,IAAI,CAAC;CAC9D,CAAC;AAEF,OAAO,OAAO,iBAAkB,SAAQ,YAAY,CAAC,uBAAuB,CAAC;IAC3E,QAAQ,CAAC,OAAO,EAAE,MAAM,CAAC;IACzB,QAAQ,CAAC,YAAY,EAAE,MAAM,CAAC;IAE9B;;;;;;;;;OASG;IACH,KAAK,CACH,QAAQ,EAAE,MAAM,EAChB,YAAY,EAAE,MAAM,EACpB,WAAW,EAAE,SAAS,GAAG,SAAS,EAClC,QAAQ,EAAE,SAAS,GAAG,QAAQ,EAC9B,IAAI,CAAC,EAAE,OAAO,GAAG,MAAM,EACvB,UAAU,CAAC,EAAE,MAAM,GAClB,OAAO,CAAC,IAAI,CAAC;CACjB;;AAGD,wBAAqE;AAErE,oBAAY,WAAW;IACrB,OAAO,YAAY;IACnB,OAAO,YAAY;CACpB;AAED,oBAAY,QAAQ;IAClB,OAAO,YAAY;IACnB,MAAM,WAAW;CAClB;AAED,oBAAY,IAAI;IACd,KAAK,UAAU;IACf,IAAI,SAAS;CACd"}
|
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
import { NativeModule, requireNativeModule } from 'expo';
|
|
2
|
+
// This call loads the native module object from the JSI.
|
|
3
|
+
export default requireNativeModule('VrtxAndroid');
|
|
4
|
+
export var Environment;
|
|
5
|
+
(function (Environment) {
|
|
6
|
+
Environment["Sandbox"] = "SANDBOX";
|
|
7
|
+
Environment["Staging"] = "STAGING";
|
|
8
|
+
})(Environment || (Environment = {}));
|
|
9
|
+
export var Language;
|
|
10
|
+
(function (Language) {
|
|
11
|
+
Language["English"] = "ENGLISH";
|
|
12
|
+
Language["Arabic"] = "ARABIC";
|
|
13
|
+
})(Language || (Language = {}));
|
|
14
|
+
export var Mode;
|
|
15
|
+
(function (Mode) {
|
|
16
|
+
Mode["LIGHT"] = "LIGHT";
|
|
17
|
+
Mode["DARK"] = "DARK";
|
|
18
|
+
})(Mode || (Mode = {}));
|
|
19
|
+
//# sourceMappingURL=VrtxAndroidModule.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"VrtxAndroidModule.js","sourceRoot":"","sources":["../src/VrtxAndroidModule.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,YAAY,EAAE,mBAAmB,EAAE,MAAM,MAAM,CAAC;AA+BzD,yDAAyD;AACzD,eAAe,mBAAmB,CAAoB,aAAa,CAAC,CAAC;AAErE,MAAM,CAAN,IAAY,WAGX;AAHD,WAAY,WAAW;IACrB,kCAAmB,CAAA;IACnB,kCAAmB,CAAA;AACrB,CAAC,EAHW,WAAW,KAAX,WAAW,QAGtB;AAED,MAAM,CAAN,IAAY,QAGX;AAHD,WAAY,QAAQ;IAClB,+BAAmB,CAAA;IACnB,6BAAiB,CAAA;AACnB,CAAC,EAHW,QAAQ,KAAR,QAAQ,QAGnB;AAED,MAAM,CAAN,IAAY,IAGX;AAHD,WAAY,IAAI;IACd,uBAAe,CAAA;IACf,qBAAa,CAAA;AACf,CAAC,EAHW,IAAI,KAAJ,IAAI,QAGf","sourcesContent":["import { NativeModule, requireNativeModule } from 'expo';\n\ntype VrtxAndroidModuleEvents = {\n onSuccess: () => void;\n onError: (params: { code: string; message: string }) => void;\n};\n\ndeclare class VrtxAndroidModule extends NativeModule<VrtxAndroidModuleEvents> {\n readonly VERSION: string;\n readonly LIBRARY_NAME: string;\n\n /**\n * Initialize and launch the Vrtx SDK UI flow\n *\n * @param clientId Your Vrtx client ID from the dashboard\n * @param clientSecret Your Vrtx client secret from the dashboard\n * @param environment The environment (SANDBOX or STAGING)\n * @param language The language for the UI (ENGLISH or ARABIC)\n * @param mode Optional display mode (LIGHT or DARK) - defaults to LIGHT\n * @param fontFamily Optional React Native font family name - defaults to the system font\n */\n setup(\n clientId: string,\n clientSecret: string,\n environment: 'SANDBOX' | 'STAGING',\n language: 'ENGLISH' | 'ARABIC',\n mode?: 'LIGHT' | 'DARK',\n fontFamily?: string,\n ): Promise<void>;\n}\n\n// This call loads the native module object from the JSI.\nexport default requireNativeModule<VrtxAndroidModule>('VrtxAndroid');\n\nexport enum Environment {\n Sandbox = 'SANDBOX',\n Staging = 'STAGING',\n}\n\nexport enum Language {\n English = 'ENGLISH',\n Arabic = 'ARABIC',\n}\n\nexport enum Mode {\n LIGHT = 'LIGHT',\n DARK = 'DARK',\n}\n"]}
|
package/build/index.d.ts
ADDED
|
@@ -0,0 +1,34 @@
|
|
|
1
|
+
export { Environment, Language, Mode } from './VrtxAndroidModule';
|
|
2
|
+
export { default as VrtxAndroid } from './VrtxAndroidModule';
|
|
3
|
+
export type VrtxEnvironment = 'SANDBOX' | 'STAGING';
|
|
4
|
+
export type VrtxLanguage = 'ENGLISH' | 'ARABIC';
|
|
5
|
+
export type VrtxMode = 'LIGHT' | 'DARK';
|
|
6
|
+
export interface VrtxConfig {
|
|
7
|
+
clientId: string;
|
|
8
|
+
clientSecret: string;
|
|
9
|
+
environment: VrtxEnvironment;
|
|
10
|
+
language?: VrtxLanguage;
|
|
11
|
+
mode?: VrtxMode;
|
|
12
|
+
fontFamily?: string;
|
|
13
|
+
}
|
|
14
|
+
export declare function setup(config: VrtxConfig): Promise<void>;
|
|
15
|
+
export declare function setup(clientId: string, clientSecret: string, environment: VrtxEnvironment, language?: VrtxLanguage, mode?: VrtxMode, fontFamily?: string): Promise<void>;
|
|
16
|
+
export declare function addListener(eventName: 'onSuccess', callback: () => void): {
|
|
17
|
+
remove: () => void;
|
|
18
|
+
};
|
|
19
|
+
export declare function addListener(eventName: 'onError', callback: (error: {
|
|
20
|
+
code: string;
|
|
21
|
+
message: string;
|
|
22
|
+
}) => void): {
|
|
23
|
+
remove: () => void;
|
|
24
|
+
};
|
|
25
|
+
export declare function onSuccess(callback: () => void): {
|
|
26
|
+
remove: () => void;
|
|
27
|
+
};
|
|
28
|
+
export declare function onError(callback: (error: {
|
|
29
|
+
code: string;
|
|
30
|
+
message: string;
|
|
31
|
+
}) => void): {
|
|
32
|
+
remove: () => void;
|
|
33
|
+
};
|
|
34
|
+
//# sourceMappingURL=index.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"AAIA,OAAO,EAAE,WAAW,EAAE,QAAQ,EAAE,IAAI,EAAE,MAAM,qBAAqB,CAAC;AAClE,OAAO,EAAE,OAAO,IAAI,WAAW,EAAE,MAAM,qBAAqB,CAAC;AAG7D,MAAM,MAAM,eAAe,GAAG,SAAS,GAAG,SAAS,CAAC;AACpD,MAAM,MAAM,YAAY,GAAG,SAAS,GAAG,QAAQ,CAAC;AAChD,MAAM,MAAM,QAAQ,GAAG,OAAO,GAAG,MAAM,CAAC;AAExC,MAAM,WAAW,UAAU;IACzB,QAAQ,EAAE,MAAM,CAAC;IACjB,YAAY,EAAE,MAAM,CAAC;IACrB,WAAW,EAAE,eAAe,CAAC;IAC7B,QAAQ,CAAC,EAAE,YAAY,CAAC;IACxB,IAAI,CAAC,EAAE,QAAQ,CAAC;IAChB,UAAU,CAAC,EAAE,MAAM,CAAC;CACrB;AAGD,wBAAgB,KAAK,CAAC,MAAM,EAAE,UAAU,GAAG,OAAO,CAAC,IAAI,CAAC,CAAC;AACzD,wBAAgB,KAAK,CACnB,QAAQ,EAAE,MAAM,EAChB,YAAY,EAAE,MAAM,EACpB,WAAW,EAAE,eAAe,EAC5B,QAAQ,CAAC,EAAE,YAAY,EACvB,IAAI,CAAC,EAAE,QAAQ,EACf,UAAU,CAAC,EAAE,MAAM,GAClB,OAAO,CAAC,IAAI,CAAC,CAAC;AAgCjB,wBAAgB,WAAW,CAAC,SAAS,EAAE,WAAW,EAAE,QAAQ,EAAE,MAAM,IAAI,GAAG;IAAE,MAAM,EAAE,MAAM,IAAI,CAAA;CAAE,CAAC;AAClG,wBAAgB,WAAW,CACzB,SAAS,EAAE,SAAS,EACpB,QAAQ,EAAE,CAAC,KAAK,EAAE;IAAE,IAAI,EAAE,MAAM,CAAC;IAAC,OAAO,EAAE,MAAM,CAAA;CAAE,KAAK,IAAI,GAC3D;IAAE,MAAM,EAAE,MAAM,IAAI,CAAA;CAAE,CAAC;AAS1B,wBAAgB,SAAS,CAAC,QAAQ,EAAE,MAAM,IAAI;YAbuC,MAAM,IAAI;EAe9F;AAED,wBAAgB,OAAO,CAAC,QAAQ,EAAE,CAAC,KAAK,EAAE;IAAE,IAAI,EAAE,MAAM,CAAC;IAAC,OAAO,EAAE,MAAM,CAAA;CAAE,KAAK,IAAI;YAbvE,MAAM,IAAI;EAetB"}
|
package/build/index.js
ADDED
|
@@ -0,0 +1,29 @@
|
|
|
1
|
+
// Native module
|
|
2
|
+
import VrtxAndroidModule from './VrtxAndroidModule';
|
|
3
|
+
// Re-export enums for the public setup contract.
|
|
4
|
+
export { Environment, Language, Mode } from './VrtxAndroidModule';
|
|
5
|
+
export { default as VrtxAndroid } from './VrtxAndroidModule';
|
|
6
|
+
export async function setup(configOrClientId, clientSecret, environment, language = 'ENGLISH', mode, fontFamily) {
|
|
7
|
+
const config = typeof configOrClientId === 'string'
|
|
8
|
+
? {
|
|
9
|
+
clientId: configOrClientId,
|
|
10
|
+
clientSecret: clientSecret,
|
|
11
|
+
environment: environment,
|
|
12
|
+
language,
|
|
13
|
+
mode,
|
|
14
|
+
fontFamily,
|
|
15
|
+
}
|
|
16
|
+
: configOrClientId;
|
|
17
|
+
return await VrtxAndroidModule.setup(config.clientId, config.clientSecret, config.environment, config.language ?? 'ENGLISH', config.mode, config.fontFamily);
|
|
18
|
+
}
|
|
19
|
+
export function addListener(eventName, callback) {
|
|
20
|
+
return VrtxAndroidModule.addListener(eventName, callback);
|
|
21
|
+
}
|
|
22
|
+
// Convenience wrappers
|
|
23
|
+
export function onSuccess(callback) {
|
|
24
|
+
return addListener('onSuccess', callback);
|
|
25
|
+
}
|
|
26
|
+
export function onError(callback) {
|
|
27
|
+
return addListener('onError', callback);
|
|
28
|
+
}
|
|
29
|
+
//# sourceMappingURL=index.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"AAAA,gBAAgB;AAChB,OAAO,iBAAiB,MAAM,qBAAqB,CAAC;AAEpD,iDAAiD;AACjD,OAAO,EAAE,WAAW,EAAE,QAAQ,EAAE,IAAI,EAAE,MAAM,qBAAqB,CAAC;AAClE,OAAO,EAAE,OAAO,IAAI,WAAW,EAAE,MAAM,qBAAqB,CAAC;AA0B7D,MAAM,CAAC,KAAK,UAAU,KAAK,CACzB,gBAAqC,EACrC,YAAqB,EACrB,WAA6B,EAC7B,WAAyB,SAAS,EAClC,IAAe,EACf,UAAmB;IAEnB,MAAM,MAAM,GACV,OAAO,gBAAgB,KAAK,QAAQ;QAClC,CAAC,CAAC;YACE,QAAQ,EAAE,gBAAgB;YAC1B,YAAY,EAAE,YAAa;YAC3B,WAAW,EAAE,WAAY;YACzB,QAAQ;YACR,IAAI;YACJ,UAAU;SACX;QACH,CAAC,CAAC,gBAAgB,CAAC;IAEvB,OAAO,MAAM,iBAAiB,CAAC,KAAK,CAClC,MAAM,CAAC,QAAQ,EACf,MAAM,CAAC,YAAY,EACnB,MAAM,CAAC,WAAW,EAClB,MAAM,CAAC,QAAQ,IAAI,SAAS,EAC5B,MAAM,CAAC,IAAI,EACX,MAAM,CAAC,UAAU,CAClB,CAAC;AACJ,CAAC;AAQD,MAAM,UAAU,WAAW,CACzB,SAAiB,EACjB,QAAkC;IAElC,OAAO,iBAAiB,CAAC,WAAW,CAAC,SAAgB,EAAE,QAAQ,CAAC,CAAC;AACnE,CAAC;AAED,uBAAuB;AACvB,MAAM,UAAU,SAAS,CAAC,QAAoB;IAC5C,OAAO,WAAW,CAAC,WAAW,EAAE,QAAQ,CAAC,CAAC;AAC5C,CAAC;AAED,MAAM,UAAU,OAAO,CAAC,QAA4D;IAClF,OAAO,WAAW,CAAC,SAAS,EAAE,QAAQ,CAAC,CAAC;AAC1C,CAAC","sourcesContent":["// Native module\nimport VrtxAndroidModule from './VrtxAndroidModule';\n\n// Re-export enums for the public setup contract.\nexport { Environment, Language, Mode } from './VrtxAndroidModule';\nexport { default as VrtxAndroid } from './VrtxAndroidModule';\n\n// Types\nexport type VrtxEnvironment = 'SANDBOX' | 'STAGING';\nexport type VrtxLanguage = 'ENGLISH' | 'ARABIC';\nexport type VrtxMode = 'LIGHT' | 'DARK';\n\nexport interface VrtxConfig {\n clientId: string;\n clientSecret: string;\n environment: VrtxEnvironment;\n language?: VrtxLanguage;\n mode?: VrtxMode;\n fontFamily?: string;\n}\n\n// Promise-based setup function - resolves when SDK screen opens\nexport function setup(config: VrtxConfig): Promise<void>;\nexport function setup(\n clientId: string,\n clientSecret: string,\n environment: VrtxEnvironment,\n language?: VrtxLanguage,\n mode?: VrtxMode,\n fontFamily?: string,\n): Promise<void>;\nexport async function setup(\n configOrClientId: VrtxConfig | string,\n clientSecret?: string,\n environment?: VrtxEnvironment,\n language: VrtxLanguage = 'ENGLISH',\n mode?: VrtxMode,\n fontFamily?: string,\n): Promise<void> {\n const config =\n typeof configOrClientId === 'string'\n ? {\n clientId: configOrClientId,\n clientSecret: clientSecret!,\n environment: environment!,\n language,\n mode,\n fontFamily,\n }\n : configOrClientId;\n\n return await VrtxAndroidModule.setup(\n config.clientId,\n config.clientSecret,\n config.environment,\n config.language ?? 'ENGLISH',\n config.mode,\n config.fontFamily,\n );\n}\n\n// Type-safe addListener overloads\nexport function addListener(eventName: 'onSuccess', callback: () => void): { remove: () => void };\nexport function addListener(\n eventName: 'onError',\n callback: (error: { code: string; message: string }) => void,\n): { remove: () => void };\nexport function addListener(\n eventName: string,\n callback: (...args: any[]) => void,\n): { remove: () => void } {\n return VrtxAndroidModule.addListener(eventName as any, callback);\n}\n\n// Convenience wrappers\nexport function onSuccess(callback: () => void) {\n return addListener('onSuccess', callback);\n}\n\nexport function onError(callback: (error: { code: string; message: string }) => void) {\n return addListener('onError', callback);\n}\n"]}
|
|
@@ -0,0 +1,34 @@
|
|
|
1
|
+
require 'json'
|
|
2
|
+
|
|
3
|
+
package = JSON.parse(File.read(File.join(__dir__, '..', 'package.json')))
|
|
4
|
+
|
|
5
|
+
Pod::Spec.new do |s|
|
|
6
|
+
s.name = 'VrtxAndroid'
|
|
7
|
+
s.version = package['version']
|
|
8
|
+
s.summary = package['description']
|
|
9
|
+
s.description = package['description']
|
|
10
|
+
s.license = package['license']
|
|
11
|
+
s.author = package['author']
|
|
12
|
+
s.homepage = package['homepage']
|
|
13
|
+
s.platforms = {
|
|
14
|
+
:ios => '15.6'
|
|
15
|
+
}
|
|
16
|
+
s.swift_version = '5.9'
|
|
17
|
+
s.source = { git: 'https://github.com/vrtx-fintech/vrtx-react-native' }
|
|
18
|
+
s.static_framework = true
|
|
19
|
+
|
|
20
|
+
s.dependency 'ExpoModulesCore'
|
|
21
|
+
|
|
22
|
+
# The VRTX.xcframework is intentionally not committed (binary, not a
|
|
23
|
+
# source artefact). The package's `postinstall` (scripts/fetch-vrtx-ios.mjs)
|
|
24
|
+
# downloads it on `npm install` so it's already on disk by the time
|
|
25
|
+
# `pod install` resolves this entry.
|
|
26
|
+
s.vendored_frameworks = 'Frameworks/VRTX.xcframework'
|
|
27
|
+
|
|
28
|
+
# Swift/Objective-C compatibility
|
|
29
|
+
s.pod_target_xcconfig = {
|
|
30
|
+
'DEFINES_MODULE' => 'YES',
|
|
31
|
+
}
|
|
32
|
+
|
|
33
|
+
s.source_files = '*.{h,m,mm,swift,hpp,cpp}'
|
|
34
|
+
end
|
|
@@ -0,0 +1,60 @@
|
|
|
1
|
+
import ExpoModulesCore
|
|
2
|
+
import VRTX
|
|
3
|
+
|
|
4
|
+
public class VrtxAndroidModule: Module {
|
|
5
|
+
public func definition() -> ModuleDefinition {
|
|
6
|
+
Name("VrtxAndroid")
|
|
7
|
+
|
|
8
|
+
Constant("LIBRARY_NAME") {
|
|
9
|
+
return "vrtx-ios"
|
|
10
|
+
}
|
|
11
|
+
|
|
12
|
+
Events("onSuccess", "onError")
|
|
13
|
+
|
|
14
|
+
/**
|
|
15
|
+
* Initialize and launch the Vrtx SDK UI flow on iOS via the vrtx-ios
|
|
16
|
+
* SDK (VRTX.xcframework). Mirrors the Android Vrtx.setup contract.
|
|
17
|
+
*/
|
|
18
|
+
AsyncFunction("setup") { (
|
|
19
|
+
clientId: String,
|
|
20
|
+
clientSecret: String,
|
|
21
|
+
environment: String,
|
|
22
|
+
language: String,
|
|
23
|
+
mode: String?,
|
|
24
|
+
fontFamily: String?,
|
|
25
|
+
promise: Promise
|
|
26
|
+
) in
|
|
27
|
+
// Fully qualify the SDK enum: ExpoModulesCore (Expo 56+) transitively
|
|
28
|
+
// brings SwiftUI into scope, and SwiftUI also exports an `Environment`
|
|
29
|
+
// type, so the bare name is ambiguous.
|
|
30
|
+
let env: VRTX.Environment = (environment.uppercased() == "STAGING") ? .staging : .sandbox
|
|
31
|
+
let lang: Language = (language.uppercased() == "ARABIC") ? .arabic : .english
|
|
32
|
+
let theme: Mode = (mode?.uppercased() == "DARK") ? .dark : .light
|
|
33
|
+
let font = fontFamily ?? ""
|
|
34
|
+
|
|
35
|
+
DispatchQueue.main.async { [weak self] in
|
|
36
|
+
guard let self else { return }
|
|
37
|
+
Vrtx.setup(
|
|
38
|
+
environment: env,
|
|
39
|
+
clientID: clientId,
|
|
40
|
+
clientSecret: clientSecret,
|
|
41
|
+
mode: theme,
|
|
42
|
+
language: lang,
|
|
43
|
+
fontFamily: font,
|
|
44
|
+
onSuccess: {
|
|
45
|
+
promise.resolve(nil)
|
|
46
|
+
self.sendEvent("onSuccess")
|
|
47
|
+
},
|
|
48
|
+
onError: { error in
|
|
49
|
+
let message = error.message
|
|
50
|
+
promise.reject("VRX_ERROR", message)
|
|
51
|
+
self.sendEvent("onError", [
|
|
52
|
+
"code": "VRX_ERROR",
|
|
53
|
+
"message": message
|
|
54
|
+
])
|
|
55
|
+
}
|
|
56
|
+
)
|
|
57
|
+
}
|
|
58
|
+
}
|
|
59
|
+
}
|
|
60
|
+
}
|
package/package.json
ADDED
|
@@ -0,0 +1,63 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "vrtx-react-native",
|
|
3
|
+
"version": "0.1.60",
|
|
4
|
+
"description": "vrtx react-native",
|
|
5
|
+
"keywords": [
|
|
6
|
+
"VrtxAndroid",
|
|
7
|
+
"expo",
|
|
8
|
+
"react-native",
|
|
9
|
+
"vrtx-react-native"
|
|
10
|
+
],
|
|
11
|
+
"homepage": "https://github.com/vrtx-fintech/vrtx-react-native#readme",
|
|
12
|
+
"bugs": {
|
|
13
|
+
"url": "https://github.com/vrtx-fintech/vrtx-react-native/issues"
|
|
14
|
+
},
|
|
15
|
+
"license": "Apache-2.0",
|
|
16
|
+
"author": "vrtx developers",
|
|
17
|
+
"repository": {
|
|
18
|
+
"type": "git",
|
|
19
|
+
"url": "git+https://github.com/vrtx-fintech/vrtx-react-native.git"
|
|
20
|
+
},
|
|
21
|
+
"main": "build/index.js",
|
|
22
|
+
"types": "build/index.d.ts",
|
|
23
|
+
"publishConfig": {
|
|
24
|
+
"access": "public",
|
|
25
|
+
"registry": "https://registry.npmjs.org/"
|
|
26
|
+
},
|
|
27
|
+
"scripts": {
|
|
28
|
+
"build": "expo-module build",
|
|
29
|
+
"clean": "expo-module clean",
|
|
30
|
+
"lint": "oxlint .",
|
|
31
|
+
"lint:fix": "oxlint --fix .",
|
|
32
|
+
"format": "oxfmt .",
|
|
33
|
+
"format:check": "oxfmt --check .",
|
|
34
|
+
"test": "expo-module test",
|
|
35
|
+
"fetch:ios": "node scripts/fetch-vrtx-ios.mjs",
|
|
36
|
+
"postinstall": "node scripts/fetch-vrtx-ios.mjs",
|
|
37
|
+
"prepare": "expo-module prepare",
|
|
38
|
+
"prepublishOnly": "expo-module prepublishOnly",
|
|
39
|
+
"expo-module": "expo-module",
|
|
40
|
+
"release": "npm version patch --no-git-tag-version && npm publish",
|
|
41
|
+
"open:ios": "xed example/ios",
|
|
42
|
+
"open:android": "cd example/android && ./gradlew :app:installDebug --no-build-cache"
|
|
43
|
+
},
|
|
44
|
+
"dependencies": {
|
|
45
|
+
"react": "19.2.6"
|
|
46
|
+
},
|
|
47
|
+
"devDependencies": {
|
|
48
|
+
"@types/react": "~19.2.15",
|
|
49
|
+
"expo": "^56.0.8",
|
|
50
|
+
"expo-module-scripts": "^56.0.3",
|
|
51
|
+
"oxfmt": "^0.52.0",
|
|
52
|
+
"oxlint": "^1.67.0",
|
|
53
|
+
"react-native": "0.85.3"
|
|
54
|
+
},
|
|
55
|
+
"peerDependencies": {
|
|
56
|
+
"expo": "*",
|
|
57
|
+
"react": "*",
|
|
58
|
+
"react-native": "*"
|
|
59
|
+
},
|
|
60
|
+
"jest": {
|
|
61
|
+
"passWithNoTests": true
|
|
62
|
+
}
|
|
63
|
+
}
|
|
@@ -0,0 +1,68 @@
|
|
|
1
|
+
#!/usr/bin/env node
|
|
2
|
+
// Downloads the VRTX iOS xcframework from the upstream release into
|
|
3
|
+
// ios/Frameworks/. Runs as a postinstall hook so the binary is in
|
|
4
|
+
// place before `pod install` runs (for both library consumers and
|
|
5
|
+
// local dev).
|
|
6
|
+
//
|
|
7
|
+
// Skips if the framework is already present (cached from a previous
|
|
8
|
+
// install or downloaded by a different mechanism), and skips entirely
|
|
9
|
+
// on non-Darwin platforms where the iOS build would never run anyway.
|
|
10
|
+
|
|
11
|
+
import { mkdir, rm, stat, writeFile } from 'node:fs/promises';
|
|
12
|
+
import { fileURLToPath } from 'node:url';
|
|
13
|
+
import { dirname, join } from 'node:path';
|
|
14
|
+
import { tmpdir } from 'node:os';
|
|
15
|
+
import { execFile } from 'node:child_process';
|
|
16
|
+
import { promisify } from 'node:util';
|
|
17
|
+
|
|
18
|
+
const execFileAsync = promisify(execFile);
|
|
19
|
+
|
|
20
|
+
const VRTX_IOS_VERSION = '0.0.15';
|
|
21
|
+
const RELEASE_URL = `https://github.com/vrtx-fintech/vrtx-ios/releases/download/${VRTX_IOS_VERSION}/VRTX.xcframework.zip`;
|
|
22
|
+
|
|
23
|
+
const repoRoot = dirname(dirname(fileURLToPath(import.meta.url)));
|
|
24
|
+
const frameworksDir = join(repoRoot, 'ios', 'Frameworks');
|
|
25
|
+
const targetFramework = join(frameworksDir, 'VRTX.xcframework');
|
|
26
|
+
|
|
27
|
+
async function exists(path) {
|
|
28
|
+
try {
|
|
29
|
+
await stat(path);
|
|
30
|
+
return true;
|
|
31
|
+
} catch {
|
|
32
|
+
return false;
|
|
33
|
+
}
|
|
34
|
+
}
|
|
35
|
+
|
|
36
|
+
async function main() {
|
|
37
|
+
if (process.platform !== 'darwin') {
|
|
38
|
+
console.log('[vrtx-ios] Non-Darwin platform, skipping iOS framework fetch.');
|
|
39
|
+
return;
|
|
40
|
+
}
|
|
41
|
+
|
|
42
|
+
if (await exists(targetFramework)) {
|
|
43
|
+
console.log(`[vrtx-ios] VRTX.xcframework ${VRTX_IOS_VERSION} already present, skipping.`);
|
|
44
|
+
return;
|
|
45
|
+
}
|
|
46
|
+
|
|
47
|
+
console.log(`[vrtx-ios] Downloading VRTX.xcframework ${VRTX_IOS_VERSION}...`);
|
|
48
|
+
await mkdir(frameworksDir, { recursive: true });
|
|
49
|
+
const tmpZip = join(tmpdir(), `vrtx-xcframework-${process.pid}.zip`);
|
|
50
|
+
|
|
51
|
+
try {
|
|
52
|
+
const res = await fetch(RELEASE_URL, { redirect: 'follow' });
|
|
53
|
+
if (!res.ok) {
|
|
54
|
+
throw new Error(`HTTP ${res.status} ${res.statusText} fetching ${RELEASE_URL}`);
|
|
55
|
+
}
|
|
56
|
+
const buf = Buffer.from(await res.arrayBuffer());
|
|
57
|
+
await writeFile(tmpZip, buf);
|
|
58
|
+
await execFileAsync('unzip', ['-q', tmpZip, '-d', frameworksDir]);
|
|
59
|
+
console.log(`[vrtx-ios] Installed VRTX.xcframework ${VRTX_IOS_VERSION} to ${frameworksDir}`);
|
|
60
|
+
} finally {
|
|
61
|
+
await rm(tmpZip, { force: true });
|
|
62
|
+
}
|
|
63
|
+
}
|
|
64
|
+
|
|
65
|
+
main().catch((err) => {
|
|
66
|
+
console.error(`[vrtx-ios] Failed to fetch VRTX.xcframework: ${err.message}`);
|
|
67
|
+
process.exit(1);
|
|
68
|
+
});
|
|
@@ -0,0 +1,48 @@
|
|
|
1
|
+
import { NativeModule, requireNativeModule } from 'expo';
|
|
2
|
+
|
|
3
|
+
type VrtxAndroidModuleEvents = {
|
|
4
|
+
onSuccess: () => void;
|
|
5
|
+
onError: (params: { code: string; message: string }) => void;
|
|
6
|
+
};
|
|
7
|
+
|
|
8
|
+
declare class VrtxAndroidModule extends NativeModule<VrtxAndroidModuleEvents> {
|
|
9
|
+
readonly VERSION: string;
|
|
10
|
+
readonly LIBRARY_NAME: string;
|
|
11
|
+
|
|
12
|
+
/**
|
|
13
|
+
* Initialize and launch the Vrtx SDK UI flow
|
|
14
|
+
*
|
|
15
|
+
* @param clientId Your Vrtx client ID from the dashboard
|
|
16
|
+
* @param clientSecret Your Vrtx client secret from the dashboard
|
|
17
|
+
* @param environment The environment (SANDBOX or STAGING)
|
|
18
|
+
* @param language The language for the UI (ENGLISH or ARABIC)
|
|
19
|
+
* @param mode Optional display mode (LIGHT or DARK) - defaults to LIGHT
|
|
20
|
+
* @param fontFamily Optional React Native font family name - defaults to the system font
|
|
21
|
+
*/
|
|
22
|
+
setup(
|
|
23
|
+
clientId: string,
|
|
24
|
+
clientSecret: string,
|
|
25
|
+
environment: 'SANDBOX' | 'STAGING',
|
|
26
|
+
language: 'ENGLISH' | 'ARABIC',
|
|
27
|
+
mode?: 'LIGHT' | 'DARK',
|
|
28
|
+
fontFamily?: string,
|
|
29
|
+
): Promise<void>;
|
|
30
|
+
}
|
|
31
|
+
|
|
32
|
+
// This call loads the native module object from the JSI.
|
|
33
|
+
export default requireNativeModule<VrtxAndroidModule>('VrtxAndroid');
|
|
34
|
+
|
|
35
|
+
export enum Environment {
|
|
36
|
+
Sandbox = 'SANDBOX',
|
|
37
|
+
Staging = 'STAGING',
|
|
38
|
+
}
|
|
39
|
+
|
|
40
|
+
export enum Language {
|
|
41
|
+
English = 'ENGLISH',
|
|
42
|
+
Arabic = 'ARABIC',
|
|
43
|
+
}
|
|
44
|
+
|
|
45
|
+
export enum Mode {
|
|
46
|
+
LIGHT = 'LIGHT',
|
|
47
|
+
DARK = 'DARK',
|
|
48
|
+
}
|
package/src/index.ts
ADDED
|
@@ -0,0 +1,82 @@
|
|
|
1
|
+
// Native module
|
|
2
|
+
import VrtxAndroidModule from './VrtxAndroidModule';
|
|
3
|
+
|
|
4
|
+
// Re-export enums for the public setup contract.
|
|
5
|
+
export { Environment, Language, Mode } from './VrtxAndroidModule';
|
|
6
|
+
export { default as VrtxAndroid } from './VrtxAndroidModule';
|
|
7
|
+
|
|
8
|
+
// Types
|
|
9
|
+
export type VrtxEnvironment = 'SANDBOX' | 'STAGING';
|
|
10
|
+
export type VrtxLanguage = 'ENGLISH' | 'ARABIC';
|
|
11
|
+
export type VrtxMode = 'LIGHT' | 'DARK';
|
|
12
|
+
|
|
13
|
+
export interface VrtxConfig {
|
|
14
|
+
clientId: string;
|
|
15
|
+
clientSecret: string;
|
|
16
|
+
environment: VrtxEnvironment;
|
|
17
|
+
language?: VrtxLanguage;
|
|
18
|
+
mode?: VrtxMode;
|
|
19
|
+
fontFamily?: string;
|
|
20
|
+
}
|
|
21
|
+
|
|
22
|
+
// Promise-based setup function - resolves when SDK screen opens
|
|
23
|
+
export function setup(config: VrtxConfig): Promise<void>;
|
|
24
|
+
export function setup(
|
|
25
|
+
clientId: string,
|
|
26
|
+
clientSecret: string,
|
|
27
|
+
environment: VrtxEnvironment,
|
|
28
|
+
language?: VrtxLanguage,
|
|
29
|
+
mode?: VrtxMode,
|
|
30
|
+
fontFamily?: string,
|
|
31
|
+
): Promise<void>;
|
|
32
|
+
export async function setup(
|
|
33
|
+
configOrClientId: VrtxConfig | string,
|
|
34
|
+
clientSecret?: string,
|
|
35
|
+
environment?: VrtxEnvironment,
|
|
36
|
+
language: VrtxLanguage = 'ENGLISH',
|
|
37
|
+
mode?: VrtxMode,
|
|
38
|
+
fontFamily?: string,
|
|
39
|
+
): Promise<void> {
|
|
40
|
+
const config =
|
|
41
|
+
typeof configOrClientId === 'string'
|
|
42
|
+
? {
|
|
43
|
+
clientId: configOrClientId,
|
|
44
|
+
clientSecret: clientSecret!,
|
|
45
|
+
environment: environment!,
|
|
46
|
+
language,
|
|
47
|
+
mode,
|
|
48
|
+
fontFamily,
|
|
49
|
+
}
|
|
50
|
+
: configOrClientId;
|
|
51
|
+
|
|
52
|
+
return await VrtxAndroidModule.setup(
|
|
53
|
+
config.clientId,
|
|
54
|
+
config.clientSecret,
|
|
55
|
+
config.environment,
|
|
56
|
+
config.language ?? 'ENGLISH',
|
|
57
|
+
config.mode,
|
|
58
|
+
config.fontFamily,
|
|
59
|
+
);
|
|
60
|
+
}
|
|
61
|
+
|
|
62
|
+
// Type-safe addListener overloads
|
|
63
|
+
export function addListener(eventName: 'onSuccess', callback: () => void): { remove: () => void };
|
|
64
|
+
export function addListener(
|
|
65
|
+
eventName: 'onError',
|
|
66
|
+
callback: (error: { code: string; message: string }) => void,
|
|
67
|
+
): { remove: () => void };
|
|
68
|
+
export function addListener(
|
|
69
|
+
eventName: string,
|
|
70
|
+
callback: (...args: any[]) => void,
|
|
71
|
+
): { remove: () => void } {
|
|
72
|
+
return VrtxAndroidModule.addListener(eventName as any, callback);
|
|
73
|
+
}
|
|
74
|
+
|
|
75
|
+
// Convenience wrappers
|
|
76
|
+
export function onSuccess(callback: () => void) {
|
|
77
|
+
return addListener('onSuccess', callback);
|
|
78
|
+
}
|
|
79
|
+
|
|
80
|
+
export function onError(callback: (error: { code: string; message: string }) => void) {
|
|
81
|
+
return addListener('onError', callback);
|
|
82
|
+
}
|
package/tsconfig.json
ADDED