@rocapine/react-native-onboarding 1.26.0 → 1.27.0
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/evaluateCondition.d.ts.map +1 -1
- package/dist/evaluateCondition.js +44 -1
- package/dist/evaluateCondition.js.map +1 -1
- package/dist/index.d.ts +3 -3
- package/dist/index.d.ts.map +1 -1
- package/dist/index.js +6 -1
- package/dist/index.js.map +1 -1
- package/dist/onboarding-example.d.ts +282 -111
- package/dist/onboarding-example.d.ts.map +1 -1
- package/dist/onboarding-example.js +38 -0
- package/dist/onboarding-example.js.map +1 -1
- package/dist/steps/Carousel/types.d.ts +5 -1
- package/dist/steps/Carousel/types.d.ts.map +1 -1
- package/dist/steps/Commitment/types.d.ts +5 -1
- package/dist/steps/Commitment/types.d.ts.map +1 -1
- package/dist/steps/ComposableScreen/elements/ButtonElement.d.ts +5 -1
- package/dist/steps/ComposableScreen/elements/ButtonElement.d.ts.map +1 -1
- package/dist/steps/ComposableScreen/elements/WheelPickerElement.d.ts +124 -0
- package/dist/steps/ComposableScreen/elements/WheelPickerElement.d.ts.map +1 -0
- package/dist/steps/ComposableScreen/elements/WheelPickerElement.js +96 -0
- package/dist/steps/ComposableScreen/elements/WheelPickerElement.js.map +1 -0
- package/dist/steps/ComposableScreen/types.d.ts +14 -1
- package/dist/steps/ComposableScreen/types.d.ts.map +1 -1
- package/dist/steps/ComposableScreen/types.js +13 -1
- package/dist/steps/ComposableScreen/types.js.map +1 -1
- package/dist/steps/Loader/types.d.ts +5 -1
- package/dist/steps/Loader/types.d.ts.map +1 -1
- package/dist/steps/MediaContent/types.d.ts +5 -1
- package/dist/steps/MediaContent/types.d.ts.map +1 -1
- package/dist/steps/Picker/types.d.ts +5 -1
- package/dist/steps/Picker/types.d.ts.map +1 -1
- package/dist/steps/Question/types.d.ts +5 -1
- package/dist/steps/Question/types.d.ts.map +1 -1
- package/dist/steps/Ratings/types.d.ts +5 -1
- package/dist/steps/Ratings/types.d.ts.map +1 -1
- package/dist/steps/common.types.d.ts +30 -4
- package/dist/steps/common.types.d.ts.map +1 -1
- package/dist/steps/common.types.js +33 -3
- package/dist/steps/common.types.js.map +1 -1
- package/package.json +2 -2
- package/src/__tests__/evaluateCondition.test.ts +35 -0
- package/src/evaluateCondition.ts +41 -1
- package/src/index.ts +8 -0
- package/src/onboarding-example.ts +38 -0
- package/src/steps/ComposableScreen/elements/WheelPickerElement.ts +115 -0
- package/src/steps/ComposableScreen/types.ts +17 -0
- package/src/steps/common.types.ts +38 -5
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"evaluateCondition.d.ts","sourceRoot":"","sources":["../src/evaluateCondition.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,aAAa,EAAE,cAAc,EAAE,MAAM,sBAAsB,CAAC;AAE1E,MAAM,MAAM,SAAS,GAAG,aAAa,GAAG,cAAc,CAAC;AAEvD,wBAAgB,gBAAgB,CAAC,CAAC,EAAE,SAAS,GAAG,CAAC,IAAI,cAAc,CAElE;
|
|
1
|
+
{"version":3,"file":"evaluateCondition.d.ts","sourceRoot":"","sources":["../src/evaluateCondition.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,aAAa,EAAE,cAAc,EAAE,MAAM,sBAAsB,CAAC;AAE1E,MAAM,MAAM,SAAS,GAAG,aAAa,GAAG,cAAc,CAAC;AAEvD,wBAAgB,gBAAgB,CAAC,CAAC,EAAE,SAAS,GAAG,CAAC,IAAI,cAAc,CAElE;AAsCD,wBAAgB,YAAY,CAAC,SAAS,EAAE,aAAa,EAAE,SAAS,EAAE,MAAM,CAAC,MAAM,EAAE,OAAO,CAAC,GAAG,OAAO,CAoClG;AAED,wBAAgB,iBAAiB,CAAC,SAAS,EAAE,SAAS,EAAE,SAAS,EAAE,MAAM,CAAC,MAAM,EAAE,OAAO,CAAC,GAAG,OAAO,CAOnG"}
|
|
@@ -9,8 +9,43 @@ function isConditionGroup(c) {
|
|
|
9
9
|
function coerceToNumber(v) {
|
|
10
10
|
return typeof v === "string" ? parseFloat(v) : Number(v);
|
|
11
11
|
}
|
|
12
|
+
// Multi-select elements (e.g. CheckboxGroup) store their value as a JSON-encoded
|
|
13
|
+
// string[] to fit the string-based variable system, so an empty selection is the
|
|
14
|
+
// literal string "[]". Decode such strings back to an array before evaluating so
|
|
15
|
+
// array-aware operators (is_empty / is_not_empty / contains / in / not_in) see the
|
|
16
|
+
// real collection — otherwise "[]" reads as a non-empty 2-char string. Only strings
|
|
17
|
+
// that parse to an actual array are coerced; scalars and plain text are untouched.
|
|
18
|
+
function decodeArrayValue(raw) {
|
|
19
|
+
if (typeof raw !== "string")
|
|
20
|
+
return raw;
|
|
21
|
+
const trimmed = raw.trim();
|
|
22
|
+
if (!(trimmed.startsWith("[") && trimmed.endsWith("]")))
|
|
23
|
+
return raw;
|
|
24
|
+
try {
|
|
25
|
+
const parsed = JSON.parse(trimmed);
|
|
26
|
+
return Array.isArray(parsed) ? parsed : raw;
|
|
27
|
+
}
|
|
28
|
+
catch (_a) {
|
|
29
|
+
return raw;
|
|
30
|
+
}
|
|
31
|
+
}
|
|
32
|
+
// `null`-ness: only null / undefined. A set-but-empty value (e.g. "") is NOT null.
|
|
33
|
+
function isNullish(v) {
|
|
34
|
+
return v === null || v === undefined;
|
|
35
|
+
}
|
|
36
|
+
// Type-aware emptiness: null|undefined, empty/whitespace string, or empty array.
|
|
37
|
+
// Numbers and booleans are never "empty" (0 / false are meaningful values).
|
|
38
|
+
function isEmpty(v) {
|
|
39
|
+
if (isNullish(v))
|
|
40
|
+
return true;
|
|
41
|
+
if (typeof v === "string")
|
|
42
|
+
return v.trim() === "";
|
|
43
|
+
if (Array.isArray(v))
|
|
44
|
+
return v.length === 0;
|
|
45
|
+
return false;
|
|
46
|
+
}
|
|
12
47
|
function evaluateLeaf(condition, variables) {
|
|
13
|
-
const raw = variables[condition.variable];
|
|
48
|
+
const raw = decodeArrayValue(variables[condition.variable]);
|
|
14
49
|
const { operator, value } = condition;
|
|
15
50
|
switch (operator) {
|
|
16
51
|
case "eq":
|
|
@@ -33,6 +68,14 @@ function evaluateLeaf(condition, variables) {
|
|
|
33
68
|
return Array.isArray(value) ? value.includes(String(raw)) : false;
|
|
34
69
|
case "not_in":
|
|
35
70
|
return Array.isArray(value) ? !value.includes(String(raw)) : true;
|
|
71
|
+
case "is_empty":
|
|
72
|
+
return isEmpty(raw);
|
|
73
|
+
case "is_not_empty":
|
|
74
|
+
return !isEmpty(raw);
|
|
75
|
+
case "is_null":
|
|
76
|
+
return isNullish(raw);
|
|
77
|
+
case "is_not_null":
|
|
78
|
+
return !isNullish(raw);
|
|
36
79
|
default:
|
|
37
80
|
return false;
|
|
38
81
|
}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"evaluateCondition.js","sourceRoot":"","sources":["../src/evaluateCondition.ts"],"names":[],"mappings":";;AAIA,4CAEC;
|
|
1
|
+
{"version":3,"file":"evaluateCondition.js","sourceRoot":"","sources":["../src/evaluateCondition.ts"],"names":[],"mappings":"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"}
|
package/dist/index.d.ts
CHANGED
|
@@ -1,12 +1,12 @@
|
|
|
1
1
|
export { OnboardingStudioClient } from "./OnboardingStudioClient";
|
|
2
2
|
export * from "./types";
|
|
3
3
|
export * from "./onboarding-example";
|
|
4
|
-
export type { ButtonAction, CustomButtonAction, ComposableVariableEntry, ComposableVariableKind, } from "./steps/ComposableScreen/types";
|
|
5
|
-
export { ButtonActionSchema, CustomButtonActionSchema, } from "./steps/ComposableScreen/types";
|
|
4
|
+
export type { ButtonAction, CustomButtonAction, ComposableVariableEntry, ComposableVariableKind, WheelPickerElementProps, WheelPickerItem, WheelPickerRange, } from "./steps/ComposableScreen/types";
|
|
5
|
+
export { ButtonActionSchema, CustomButtonActionSchema, WheelPickerElementPropsSchema, generateWheelPickerRangeItems, resolveWheelPickerItems, } from "./steps/ComposableScreen/types";
|
|
6
6
|
export * from "./infra";
|
|
7
7
|
export { resolveNextStepNumber } from "./resolveNextStepNumber";
|
|
8
8
|
export { evaluateCondition, evaluateLeaf, isConditionGroup } from "./evaluateCondition";
|
|
9
9
|
export type { Condition } from "./evaluateCondition";
|
|
10
10
|
export type { LeafCondition, ConditionGroup, ConditionValue, ConditionOperator, Branch, NextStep, } from "./steps/common.types";
|
|
11
|
-
export { BaseStepTypeSchema, LeafConditionSchema, ConditionGroupSchema, BranchSchema, NextStepSchema, ConditionOperatorSchema, ConditionValueSchema, } from "./steps/common.types";
|
|
11
|
+
export { BaseStepTypeSchema, LeafConditionSchema, ConditionGroupSchema, BranchSchema, NextStepSchema, ConditionOperatorSchema, ConditionValueSchema, UNARY_CONDITION_OPERATORS, isUnaryConditionOperator, } from "./steps/common.types";
|
|
12
12
|
//# sourceMappingURL=index.d.ts.map
|
package/dist/index.d.ts.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,sBAAsB,EAAE,MAAM,0BAA0B,CAAC;AAClE,cAAc,SAAS,CAAC;AACxB,cAAc,sBAAsB,CAAC;AAErC,YAAY,EACV,YAAY,EACZ,kBAAkB,EAClB,uBAAuB,EACvB,sBAAsB,
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,sBAAsB,EAAE,MAAM,0BAA0B,CAAC;AAClE,cAAc,SAAS,CAAC;AACxB,cAAc,sBAAsB,CAAC;AAErC,YAAY,EACV,YAAY,EACZ,kBAAkB,EAClB,uBAAuB,EACvB,sBAAsB,EACtB,uBAAuB,EACvB,eAAe,EACf,gBAAgB,GACjB,MAAM,gCAAgC,CAAC;AACxC,OAAO,EACL,kBAAkB,EAClB,wBAAwB,EACxB,6BAA6B,EAC7B,6BAA6B,EAC7B,uBAAuB,GACxB,MAAM,gCAAgC,CAAC;AAExC,cAAc,SAAS,CAAC;AAExB,OAAO,EAAE,qBAAqB,EAAE,MAAM,yBAAyB,CAAC;AAChE,OAAO,EAAE,iBAAiB,EAAE,YAAY,EAAE,gBAAgB,EAAE,MAAM,qBAAqB,CAAC;AACxF,YAAY,EAAE,SAAS,EAAE,MAAM,qBAAqB,CAAC;AACrD,YAAY,EACV,aAAa,EACb,cAAc,EACd,cAAc,EACd,iBAAiB,EACjB,MAAM,EACN,QAAQ,GACT,MAAM,sBAAsB,CAAC;AAC9B,OAAO,EACL,kBAAkB,EAClB,mBAAmB,EACnB,oBAAoB,EACpB,YAAY,EACZ,cAAc,EACd,uBAAuB,EACvB,oBAAoB,EACpB,yBAAyB,EACzB,wBAAwB,GACzB,MAAM,sBAAsB,CAAC"}
|
package/dist/index.js
CHANGED
|
@@ -14,7 +14,7 @@ var __exportStar = (this && this.__exportStar) || function(m, exports) {
|
|
|
14
14
|
for (var p in m) if (p !== "default" && !Object.prototype.hasOwnProperty.call(exports, p)) __createBinding(exports, m, p);
|
|
15
15
|
};
|
|
16
16
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
17
|
-
exports.ConditionValueSchema = exports.ConditionOperatorSchema = exports.NextStepSchema = exports.BranchSchema = exports.ConditionGroupSchema = exports.LeafConditionSchema = exports.BaseStepTypeSchema = exports.isConditionGroup = exports.evaluateLeaf = exports.evaluateCondition = exports.resolveNextStepNumber = exports.CustomButtonActionSchema = exports.ButtonActionSchema = exports.OnboardingStudioClient = void 0;
|
|
17
|
+
exports.isUnaryConditionOperator = exports.UNARY_CONDITION_OPERATORS = exports.ConditionValueSchema = exports.ConditionOperatorSchema = exports.NextStepSchema = exports.BranchSchema = exports.ConditionGroupSchema = exports.LeafConditionSchema = exports.BaseStepTypeSchema = exports.isConditionGroup = exports.evaluateLeaf = exports.evaluateCondition = exports.resolveNextStepNumber = exports.resolveWheelPickerItems = exports.generateWheelPickerRangeItems = exports.WheelPickerElementPropsSchema = exports.CustomButtonActionSchema = exports.ButtonActionSchema = exports.OnboardingStudioClient = void 0;
|
|
18
18
|
// Core client and types
|
|
19
19
|
var OnboardingStudioClient_1 = require("./OnboardingStudioClient");
|
|
20
20
|
Object.defineProperty(exports, "OnboardingStudioClient", { enumerable: true, get: function () { return OnboardingStudioClient_1.OnboardingStudioClient; } });
|
|
@@ -23,6 +23,9 @@ __exportStar(require("./onboarding-example"), exports);
|
|
|
23
23
|
var types_1 = require("./steps/ComposableScreen/types");
|
|
24
24
|
Object.defineProperty(exports, "ButtonActionSchema", { enumerable: true, get: function () { return types_1.ButtonActionSchema; } });
|
|
25
25
|
Object.defineProperty(exports, "CustomButtonActionSchema", { enumerable: true, get: function () { return types_1.CustomButtonActionSchema; } });
|
|
26
|
+
Object.defineProperty(exports, "WheelPickerElementPropsSchema", { enumerable: true, get: function () { return types_1.WheelPickerElementPropsSchema; } });
|
|
27
|
+
Object.defineProperty(exports, "generateWheelPickerRangeItems", { enumerable: true, get: function () { return types_1.generateWheelPickerRangeItems; } });
|
|
28
|
+
Object.defineProperty(exports, "resolveWheelPickerItems", { enumerable: true, get: function () { return types_1.resolveWheelPickerItems; } });
|
|
26
29
|
// Hooks and providers
|
|
27
30
|
__exportStar(require("./infra"), exports);
|
|
28
31
|
// Branching
|
|
@@ -40,4 +43,6 @@ Object.defineProperty(exports, "BranchSchema", { enumerable: true, get: function
|
|
|
40
43
|
Object.defineProperty(exports, "NextStepSchema", { enumerable: true, get: function () { return common_types_1.NextStepSchema; } });
|
|
41
44
|
Object.defineProperty(exports, "ConditionOperatorSchema", { enumerable: true, get: function () { return common_types_1.ConditionOperatorSchema; } });
|
|
42
45
|
Object.defineProperty(exports, "ConditionValueSchema", { enumerable: true, get: function () { return common_types_1.ConditionValueSchema; } });
|
|
46
|
+
Object.defineProperty(exports, "UNARY_CONDITION_OPERATORS", { enumerable: true, get: function () { return common_types_1.UNARY_CONDITION_OPERATORS; } });
|
|
47
|
+
Object.defineProperty(exports, "isUnaryConditionOperator", { enumerable: true, get: function () { return common_types_1.isUnaryConditionOperator; } });
|
|
43
48
|
//# sourceMappingURL=index.js.map
|
package/dist/index.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.js","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;;AAAA,wBAAwB;AACxB,mEAAkE;AAAzD,gIAAA,sBAAsB,OAAA;AAC/B,0CAAwB;AACxB,uDAAqC;
|
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;;AAAA,wBAAwB;AACxB,mEAAkE;AAAzD,gIAAA,sBAAsB,OAAA;AAC/B,0CAAwB;AACxB,uDAAqC;AAWrC,wDAMwC;AALtC,2GAAA,kBAAkB,OAAA;AAClB,iHAAA,wBAAwB,OAAA;AACxB,sHAAA,6BAA6B,OAAA;AAC7B,sHAAA,6BAA6B,OAAA;AAC7B,gHAAA,uBAAuB,OAAA;AAEzB,sBAAsB;AACtB,0CAAwB;AACxB,YAAY;AACZ,iEAAgE;AAAvD,8HAAA,qBAAqB,OAAA;AAC9B,yDAAwF;AAA/E,sHAAA,iBAAiB,OAAA;AAAE,iHAAA,YAAY,OAAA;AAAE,qHAAA,gBAAgB,OAAA;AAU1D,qDAU8B;AAT5B,kHAAA,kBAAkB,OAAA;AAClB,mHAAA,mBAAmB,OAAA;AACnB,oHAAA,oBAAoB,OAAA;AACpB,4GAAA,YAAY,OAAA;AACZ,8GAAA,cAAc,OAAA;AACd,uHAAA,uBAAuB,OAAA;AACvB,oHAAA,oBAAoB,OAAA;AACpB,yHAAA,yBAAyB,OAAA;AACzB,wHAAA,wBAAwB,OAAA"}
|