@originallyus/feedback-rn-sdk 4.0.0-beta.13 → 4.0.0-beta.15
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/README.md
CHANGED
|
@@ -6,22 +6,20 @@ A cross-platform Feedback component for React Native.
|
|
|
6
6
|
|
|
7
7
|
Scan the QR code below with **Expo Go** (Android) or the **Camera app** (iOS) to try the latest SDK features:
|
|
8
8
|
|
|
9
|
-
|
|
9
|
+
Expo QR
|
|
10
10
|
|
|
11
|
-
[👉 Try on Expo Dev](https://expo.dev/preview/update?message=Demo+
|
|
12
|
-
|
|
13
|
-
---
|
|
11
|
+
[👉 Try on Expo Dev](https://expo.dev/preview/update?message=Demo+sdk&updateRuntimeVersion=1.0.0&createdAt=2026-03-09T02%3A45%3A48.728Z&slug=exp&projectId=64be1f70-2b29-479e-8c0a-ee495f737d06&group=039531ad-99df-4480-a9f7-5856bef92096)
|
|
14
12
|
|
|
15
13
|
## 📦 Installation
|
|
16
14
|
|
|
17
15
|
```sh
|
|
18
|
-
npm
|
|
16
|
+
npm i @originallyus/feedback-rn-sdk@4.0.0-beta.15
|
|
19
17
|
```
|
|
20
18
|
|
|
21
19
|
or yarn
|
|
22
20
|
|
|
23
21
|
```sh
|
|
24
|
-
yarn add @originallyus/feedback-rn-sdk
|
|
22
|
+
yarn add @originallyus/feedback-rn-sdk@4.0.0-beta.15
|
|
25
23
|
```
|
|
26
24
|
|
|
27
25
|
### Peer Dependencies
|
|
@@ -67,13 +65,15 @@ The SDK works best with **Spoqa Han Sans Neo** or **OpenSans**. Please ensure yo
|
|
|
67
65
|
|
|
68
66
|
Mount the `FeedbackSDK` component at the root of your application (typically in `App.tsx`). It should be at the bottom of your root view tree to stay on top of other views.
|
|
69
67
|
|
|
70
|
-
```
|
|
68
|
+
```js
|
|
69
|
+
import {useRef} from 'react'
|
|
70
|
+
import {View} from 'react-native'
|
|
71
|
+
import {SafeAreaProvider} from 'react-native-safe-area-context'
|
|
71
72
|
import {FeedbackSDK, type FeedbackSDKRef} from '@originallyus/feedback-rn-sdk'
|
|
72
73
|
|
|
73
74
|
export default function App() {
|
|
74
|
-
const feedbackRef = useRef<FeedbackSDKRef>
|
|
75
|
-
|
|
76
|
-
const config = {
|
|
75
|
+
const feedbackRef = useRef < FeedbackSDKRef > null
|
|
76
|
+
const config = {
|
|
77
77
|
appSec: 'YOUR_APP_SEC',
|
|
78
78
|
packageId: 'YOUR_PACKAGE_ID',
|
|
79
79
|
debug: true,
|
|
@@ -86,8 +86,11 @@ export default function App() {
|
|
|
86
86
|
<SafeAreaProvider>
|
|
87
87
|
<View style={{flex: 1}}>
|
|
88
88
|
<MainApp />
|
|
89
|
-
|
|
90
|
-
{
|
|
89
|
+
|
|
90
|
+
{
|
|
91
|
+
// Please insert this mount point directly in your App.js,
|
|
92
|
+
// preferably at the bottom of your root view tree for it to stay on top of all other views
|
|
93
|
+
}
|
|
91
94
|
<FeedbackSDK
|
|
92
95
|
ref={feedbackRef}
|
|
93
96
|
{...config}
|
|
@@ -106,10 +109,10 @@ You can trigger a feedback form from anywhere in your app using the `ref`.
|
|
|
106
109
|
|
|
107
110
|
```tsx
|
|
108
111
|
// Show a specific form by slug
|
|
109
|
-
feedbackRef.current
|
|
112
|
+
feedbackRef.current.show('native_rating_form')
|
|
110
113
|
|
|
111
114
|
// Hide the form
|
|
112
|
-
feedbackRef.current
|
|
115
|
+
feedbackRef.current.hide()
|
|
113
116
|
```
|
|
114
117
|
|
|
115
118
|
---
|
|
@@ -121,7 +124,7 @@ feedbackRef.current?.hide()
|
|
|
121
124
|
The primary component for showing high-intrusive or triggered surveys.
|
|
122
125
|
|
|
123
126
|
| Prop | Type | Description |
|
|
124
|
-
|
|
|
127
|
+
| ----------- | ---------- | ------------------------------------------------ |
|
|
125
128
|
| `appSec` | `string` | **Required.** Your application secret. |
|
|
126
129
|
| `packageId` | `string` | **Required.** Your package/bundle ID. |
|
|
127
130
|
| `debug` | `boolean` | Enable debug logs. |
|
|
@@ -149,7 +152,7 @@ Use this for inline feedback (e.g., "Was this helpful?") inside your content scr
|
|
|
149
152
|
```
|
|
150
153
|
|
|
151
154
|
| Prop | Type | Description |
|
|
152
|
-
|
|
|
155
|
+
| ---------------- | ------------- | ----------------------------------------------- |
|
|
153
156
|
| `slug` | `string` | **Required.** The form slug from the CMS. |
|
|
154
157
|
| `options` | `InitOptions` | Configuration (same as `FeedbackSDK` props). |
|
|
155
158
|
| `style` | `ViewStyle` | Container style override. |
|
|
@@ -164,23 +167,23 @@ Use this for inline feedback (e.g., "Was this helpful?") inside your content scr
|
|
|
164
167
|
The SDK dynamically renders UI based on the configuration of the form slug in the backend. Use the following slugs for testing or integration:
|
|
165
168
|
|
|
166
169
|
| Form Type | Typical Slug | Icon | Description |
|
|
167
|
-
|
|
|
168
|
-
| **Satisfaction** | `native_rating_form` |
|
|
169
|
-
| **NPS** | `nps-1` |
|
|
170
|
-
| **CES / Effort** | `effort-1` |
|
|
171
|
-
| **Poll** | `poll-1` |
|
|
172
|
-
| **Usefulness** | `content_usefulness-1` |
|
|
173
|
-
| **Comment** | `comment-1` |
|
|
174
|
-
| **External** | `external-1` |
|
|
170
|
+
| ---------------- | ---------------------- | ---- | -------------------------------------------------- |
|
|
171
|
+
| **Satisfaction** | `native_rating_form` | ⭐ | Star rating (1-5) with optional detailed feedback. |
|
|
172
|
+
| **NPS** | `nps-1` | 📊 | Net Promoter Score scale (0-10). |
|
|
173
|
+
| **CES / Effort** | `effort-1` | ⚡ | Customer Effort Score numeric scale (1-7). |
|
|
174
|
+
| **Poll** | `poll-1` | 📝 | Multi-select tag-style buttons for quick surveys. |
|
|
175
|
+
| **Usefulness** | `content_usefulness-1` | 💡 | Inline "Yes/No" prompt for help articles. |
|
|
176
|
+
| **Comment** | `comment-1` | 🗨️ | Simple open-ended text feedback. |
|
|
177
|
+
| **External** | `external-1` | 🔗 | Triggers an external URL (App Store, Web). |
|
|
175
178
|
|
|
176
179
|
### Example: Triggering a specific form
|
|
177
180
|
|
|
178
181
|
```tsx
|
|
179
182
|
// Trigger NPS survey
|
|
180
|
-
feedbackRef.current
|
|
183
|
+
feedbackRef.current.show('nps-1')
|
|
181
184
|
|
|
182
185
|
// Trigger Satisfaction survey
|
|
183
|
-
feedbackRef.current
|
|
186
|
+
feedbackRef.current.show('native_rating_form')
|
|
184
187
|
```
|
|
185
188
|
|
|
186
189
|
---
|
|
@@ -14,11 +14,12 @@ export const feedbackStyles = StyleSheet.create({
|
|
|
14
14
|
splashOverlay: {
|
|
15
15
|
justifyContent: 'center',
|
|
16
16
|
alignItems: 'center',
|
|
17
|
-
paddingHorizontal:
|
|
17
|
+
paddingHorizontal: 16
|
|
18
18
|
},
|
|
19
19
|
intrusiveOverlay: {
|
|
20
20
|
backgroundColor: '#FFF',
|
|
21
|
-
justifyContent: 'flex-start'
|
|
21
|
+
justifyContent: 'flex-start',
|
|
22
|
+
paddingHorizontal: 8
|
|
22
23
|
},
|
|
23
24
|
dismissArea: {
|
|
24
25
|
flex: 1
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"names":["Platform","StyleSheet","f","feedbackStyles","create","overlay","flex","backgroundColor","justifyContent","nonBlockingOverlay","splashOverlay","alignItems","paddingHorizontal","intrusiveOverlay","dismissArea","modalContent","borderTopLeftRadius","borderTopRightRadius","width","maxHeight","minHeight","overflow","splashContent","select","ios","shadowColor","shadowOffset","height","shadowOpacity","shadowRadius","android","elevation","borderBottomLeftRadius","borderBottomRightRadius","splashTabletContent","maxWidth","borderRadius","splashInner","paddingTop","intrusiveContent","safeArea","flexShrink","flexGrow","flexDirection","flex1","header","position","headerRow","handle","closeBtn","top","right","padding","zIndex","intrusiveCloseBtn","closeText","fontSize","color","scrollContent","isTablet","paddingBottom","scrollContentInner","center","mtAuto","marginTop","w100","section","marginBottom","gap","alignSelf","secondarySection","satisfactionRating","title","fontWeight","externalIcon","question","successContainer","successTitle","textAlign","successDesc","lineHeight","mt16","mt24","splashContainer","splashTitle","splashQuestion","skipBtn","skipBtnText","textDecorationLine","successIcon","fineprint","opacity","centeredScrollContent","formRoot","formContent","submitSection","successRoot","successContentCenter","tabletOverlay","tabletIntrusive","tabletNonIntrusive","bottom","borderWidth","borderColor","errorWrap","error","mb12","divider","centeredContent","autoHeightReset","autoHeightFlexReset","autoHeightMargin"],"sourceRoot":"../../src","sources":["FeedbackSDKStyles.ts"],"mappings":";;AAAA,SAAQA,QAAQ,EAAEC,UAAU,QAAO,cAAc;AACjD,OAAO,KAAKC,CAAC;AAEb,OAAO,MAAMC,cAAc,GAAGF,UAAU,CAACG,MAAM,CAAC;EAC/CC,OAAO,EAAE;IACRC,IAAI,EAAE,CAAC;IACPC,eAAe,EAAE,uBAAuB;IACxCC,cAAc,EAAE;EACjB,CAAC;EACDC,kBAAkB,EAAE;IACnBF,eAAe,EAAE;EAClB,CAAC;EACDG,aAAa,EAAE;IACdF,cAAc,EAAE,QAAQ;IACxBG,UAAU,EAAE,QAAQ;IACpBC,iBAAiB,EAAE;EACpB,CAAC;EACDC,gBAAgB,EAAE;IACjBN,eAAe,EAAE,MAAM;IACvBC,cAAc,EAAE;
|
|
1
|
+
{"version":3,"names":["Platform","StyleSheet","f","feedbackStyles","create","overlay","flex","backgroundColor","justifyContent","nonBlockingOverlay","splashOverlay","alignItems","paddingHorizontal","intrusiveOverlay","dismissArea","modalContent","borderTopLeftRadius","borderTopRightRadius","width","maxHeight","minHeight","overflow","splashContent","select","ios","shadowColor","shadowOffset","height","shadowOpacity","shadowRadius","android","elevation","borderBottomLeftRadius","borderBottomRightRadius","splashTabletContent","maxWidth","borderRadius","splashInner","paddingTop","intrusiveContent","safeArea","flexShrink","flexGrow","flexDirection","flex1","header","position","headerRow","handle","closeBtn","top","right","padding","zIndex","intrusiveCloseBtn","closeText","fontSize","color","scrollContent","isTablet","paddingBottom","scrollContentInner","center","mtAuto","marginTop","w100","section","marginBottom","gap","alignSelf","secondarySection","satisfactionRating","title","fontWeight","externalIcon","question","successContainer","successTitle","textAlign","successDesc","lineHeight","mt16","mt24","splashContainer","splashTitle","splashQuestion","skipBtn","skipBtnText","textDecorationLine","successIcon","fineprint","opacity","centeredScrollContent","formRoot","formContent","submitSection","successRoot","successContentCenter","tabletOverlay","tabletIntrusive","tabletNonIntrusive","bottom","borderWidth","borderColor","errorWrap","error","mb12","divider","centeredContent","autoHeightReset","autoHeightFlexReset","autoHeightMargin"],"sourceRoot":"../../src","sources":["FeedbackSDKStyles.ts"],"mappings":"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","ignoreList":[]}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"FeedbackSDKStyles.d.ts","sourceRoot":"","sources":["../../src/FeedbackSDKStyles.ts"],"names":[],"mappings":"AAGA,eAAO,MAAM,cAAc
|
|
1
|
+
{"version":3,"file":"FeedbackSDKStyles.d.ts","sourceRoot":"","sources":["../../src/FeedbackSDKStyles.ts"],"names":[],"mappings":"AAGA,eAAO,MAAM,cAAc;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EAyTzB,CAAA"}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@originallyus/feedback-rn-sdk",
|
|
3
|
-
"version": "4.0.0-beta.
|
|
3
|
+
"version": "4.0.0-beta.15",
|
|
4
4
|
"description": "A cross-platform Feedback component for React Native.",
|
|
5
5
|
"main": "./lib/module/index.js",
|
|
6
6
|
"types": "./lib/typescript/index.d.ts",
|
|
@@ -101,9 +101,9 @@
|
|
|
101
101
|
"react-native-haptic-feedback": ">=2.0.0",
|
|
102
102
|
"react-native-keyboard-controller": ">=1.0.0",
|
|
103
103
|
"react-native-reanimated": ">=3.0.0",
|
|
104
|
-
"react-native-worklets": ">=0.20.0",
|
|
105
104
|
"react-native-safe-area-context": ">=5.0.0",
|
|
106
|
-
"react-native-svg": ">=15.0.0"
|
|
105
|
+
"react-native-svg": ">=15.0.0",
|
|
106
|
+
"react-native-worklets": ">=0.20.0"
|
|
107
107
|
},
|
|
108
108
|
"peerDependenciesMeta": {
|
|
109
109
|
"expo-haptics": {
|