@applicaster/zapp-react-native-utils 16.0.0-rc.43 → 16.0.0-rc.45
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/bottomSheet/__tests__/scrollContext.test.tsx +35 -0
- package/bottomSheet/index.ts +17 -0
- package/numberUtils/__tests__/isMinusZero.test.ts +20 -0
- package/numberUtils/__tests__/isZero.test.ts +27 -0
- package/numberUtils/__tests__/requireNumber.test.ts +50 -0
- package/numberUtils/__tests__/toNumber.test.ts +27 -0
- package/numberUtils/__tests__/toNumberWithDefault.test.ts +64 -0
- package/numberUtils/__tests__/toNumberWithDefaultZero.test.ts +48 -0
- package/numberUtils/index.ts +27 -8
- package/package.json +2 -2
- package/reactHooks/feed/__tests__/useInflatedUrl.test.tsx +25 -0
- package/stringUtils/__tests__/stringUtils.test.js +42 -0
- package/stringUtils/index.ts +2 -2
|
@@ -0,0 +1,35 @@
|
|
|
1
|
+
import React from "react";
|
|
2
|
+
import { Text } from "react-native";
|
|
3
|
+
import { render, screen } from "@testing-library/react-native";
|
|
4
|
+
import { BottomSheetContext, useBottomSheet } from "../index";
|
|
5
|
+
|
|
6
|
+
const Probe = () => {
|
|
7
|
+
const ctx = useBottomSheet();
|
|
8
|
+
|
|
9
|
+
return <Text testID="probe">{ctx ? "has-context" : "no-context"}</Text>;
|
|
10
|
+
};
|
|
11
|
+
|
|
12
|
+
describe("useBottomSheet", () => {
|
|
13
|
+
it("returns null when no provider is present", () => {
|
|
14
|
+
render(<Probe />);
|
|
15
|
+
expect(screen.getByTestId("probe")).toHaveTextContent("no-context");
|
|
16
|
+
});
|
|
17
|
+
|
|
18
|
+
it("returns the provided value inside a provider", () => {
|
|
19
|
+
const value = {
|
|
20
|
+
scrollRef: React.createRef<any>(),
|
|
21
|
+
masterDrawerRef: React.createRef<any>(),
|
|
22
|
+
setBodyDragEnabled: jest.fn(),
|
|
23
|
+
onDragGestureEvent: jest.fn(),
|
|
24
|
+
onDragStateChange: jest.fn(),
|
|
25
|
+
};
|
|
26
|
+
|
|
27
|
+
render(
|
|
28
|
+
<BottomSheetContext.Provider value={value}>
|
|
29
|
+
<Probe />
|
|
30
|
+
</BottomSheetContext.Provider>
|
|
31
|
+
);
|
|
32
|
+
|
|
33
|
+
expect(screen.getByTestId("probe")).toHaveTextContent("has-context");
|
|
34
|
+
});
|
|
35
|
+
});
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
import { createContext, useContext, RefObject } from "react";
|
|
2
|
+
|
|
3
|
+
export type BottomSheetContextValue = {
|
|
4
|
+
/** The sheet's master TapGestureHandler ref — the scrollable waits for it. */
|
|
5
|
+
masterDrawerRef: RefObject<any>;
|
|
6
|
+
/** Header drag-zone wiring: the sheet's pan gesture event handler. */
|
|
7
|
+
onDragGestureEvent: (...args: any[]) => void;
|
|
8
|
+
/** Header drag-zone wiring: the sheet's pan state-change handler. */
|
|
9
|
+
onDragStateChange: (event: { nativeEvent: any }) => void;
|
|
10
|
+
};
|
|
11
|
+
|
|
12
|
+
export const BottomSheetContext = createContext<BottomSheetContextValue | null>(
|
|
13
|
+
null
|
|
14
|
+
);
|
|
15
|
+
|
|
16
|
+
export const useBottomSheet = (): BottomSheetContextValue | null =>
|
|
17
|
+
useContext(BottomSheetContext);
|
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
import { isMinusZero } from "..";
|
|
2
|
+
|
|
3
|
+
describe("isMinusZero", () => {
|
|
4
|
+
it("return true for minus zero", () => {
|
|
5
|
+
expect(isMinusZero(-0)).toBe(true);
|
|
6
|
+
});
|
|
7
|
+
|
|
8
|
+
it("return false for positive zero", () => {
|
|
9
|
+
expect(isMinusZero(0)).toBe(false);
|
|
10
|
+
});
|
|
11
|
+
|
|
12
|
+
it("return false for non-zero numbers", () => {
|
|
13
|
+
const inputs = [-1, 1, 100, 0.1, -0.1, Infinity, -Infinity];
|
|
14
|
+
expect.assertions(inputs.length);
|
|
15
|
+
|
|
16
|
+
inputs.forEach((input) => {
|
|
17
|
+
expect(isMinusZero(input)).toBe(false);
|
|
18
|
+
});
|
|
19
|
+
});
|
|
20
|
+
});
|
|
@@ -0,0 +1,27 @@
|
|
|
1
|
+
import { isZero } from "..";
|
|
2
|
+
|
|
3
|
+
describe("isZero", () => {
|
|
4
|
+
it("return true for zero and minus zero", () => {
|
|
5
|
+
expect(isZero(0)).toBe(true);
|
|
6
|
+
expect(isZero(-0)).toBe(true);
|
|
7
|
+
});
|
|
8
|
+
|
|
9
|
+
it("return false for non-zero numbers", () => {
|
|
10
|
+
const inputs = [-1, 1, 100, 0.1, -0.1, Infinity, -Infinity, NaN];
|
|
11
|
+
expect.assertions(inputs.length);
|
|
12
|
+
|
|
13
|
+
inputs.forEach((input) => {
|
|
14
|
+
expect(isZero(input)).toBe(false);
|
|
15
|
+
});
|
|
16
|
+
});
|
|
17
|
+
|
|
18
|
+
it("return false for non-number values", () => {
|
|
19
|
+
const inputs = ["0", "-0", null, undefined, "", {}, [], false, true];
|
|
20
|
+
|
|
21
|
+
expect.assertions(inputs.length);
|
|
22
|
+
|
|
23
|
+
inputs.forEach((input) => {
|
|
24
|
+
expect(isZero(input)).toBe(false);
|
|
25
|
+
});
|
|
26
|
+
});
|
|
27
|
+
});
|
|
@@ -0,0 +1,50 @@
|
|
|
1
|
+
import { requireNumber } from "..";
|
|
2
|
+
|
|
3
|
+
describe("requireNumber", () => {
|
|
4
|
+
it("return number if object key holds a number", () => {
|
|
5
|
+
const inputs = [-1, 1, 100, 0.2];
|
|
6
|
+
expect.assertions(inputs.length);
|
|
7
|
+
|
|
8
|
+
inputs.forEach((input) => {
|
|
9
|
+
const output = requireNumber({ value: input }, "value");
|
|
10
|
+
expect(output).toBe(input);
|
|
11
|
+
});
|
|
12
|
+
});
|
|
13
|
+
|
|
14
|
+
it("return number if object key holds a string as number", () => {
|
|
15
|
+
const inputs = ["-1", "1", "100", "0.2"];
|
|
16
|
+
expect.assertions(inputs.length);
|
|
17
|
+
|
|
18
|
+
inputs.forEach((input) => {
|
|
19
|
+
const output = requireNumber({ value: input }, "value");
|
|
20
|
+
expect(output).toBe(Number(input));
|
|
21
|
+
});
|
|
22
|
+
});
|
|
23
|
+
|
|
24
|
+
it("return null if object key holds zero", () => {
|
|
25
|
+
expect(requireNumber({ value: 0 }, "value")).toBeNull();
|
|
26
|
+
expect(requireNumber({ value: "0" }, "value")).toBeNull();
|
|
27
|
+
});
|
|
28
|
+
|
|
29
|
+
it("return null if object key is missing or not a number", () => {
|
|
30
|
+
const cases = [
|
|
31
|
+
[{}, "value"],
|
|
32
|
+
[{ value: null }, "value"],
|
|
33
|
+
[{ value: undefined }, "value"],
|
|
34
|
+
[{ value: NaN }, "value"],
|
|
35
|
+
[{ value: "" }, "value"],
|
|
36
|
+
[{ value: "vfdvf" }, "value"],
|
|
37
|
+
[{ value: {} }, "value"],
|
|
38
|
+
[{ value: [] }, "value"],
|
|
39
|
+
[null, "value"],
|
|
40
|
+
[undefined, "value"],
|
|
41
|
+
] as const;
|
|
42
|
+
|
|
43
|
+
expect.assertions(cases.length);
|
|
44
|
+
|
|
45
|
+
cases.forEach(([obj, key]) => {
|
|
46
|
+
const output = requireNumber(obj, key);
|
|
47
|
+
expect(output).toBeNull();
|
|
48
|
+
});
|
|
49
|
+
});
|
|
50
|
+
});
|
|
@@ -21,6 +21,33 @@ describe("toNumber", () => {
|
|
|
21
21
|
});
|
|
22
22
|
});
|
|
23
23
|
|
|
24
|
+
it("return number if input is boxed string as number", () => {
|
|
25
|
+
const inputs = [
|
|
26
|
+
new String("-1"),
|
|
27
|
+
new String("0"),
|
|
28
|
+
new String("1"),
|
|
29
|
+
Object("100"),
|
|
30
|
+
Object("0.2"),
|
|
31
|
+
];
|
|
32
|
+
|
|
33
|
+
expect.assertions(inputs.length);
|
|
34
|
+
|
|
35
|
+
inputs.forEach((input) => {
|
|
36
|
+
const output = toNumber(input);
|
|
37
|
+
expect(output).toBe(Number(input));
|
|
38
|
+
});
|
|
39
|
+
});
|
|
40
|
+
|
|
41
|
+
it("return undefined if input is invalid boxed string", () => {
|
|
42
|
+
const inputs = [new String("vfdvf"), new String("5n"), Object("")];
|
|
43
|
+
expect.assertions(inputs.length);
|
|
44
|
+
|
|
45
|
+
inputs.forEach((input) => {
|
|
46
|
+
const output = toNumber(input);
|
|
47
|
+
expect(output).toBeUndefined();
|
|
48
|
+
});
|
|
49
|
+
});
|
|
50
|
+
|
|
24
51
|
it("return undefined if input is not a number", () => {
|
|
25
52
|
const inputs = [
|
|
26
53
|
"vfdvf",
|
|
@@ -0,0 +1,64 @@
|
|
|
1
|
+
import { toNumberWithDefault } from "..";
|
|
2
|
+
|
|
3
|
+
describe("toNumberWithDefault", () => {
|
|
4
|
+
const DEFAULT = 5;
|
|
5
|
+
|
|
6
|
+
it("return number if input is number", () => {
|
|
7
|
+
const inputs = [-1, 0, 1, 100, 0.2];
|
|
8
|
+
expect.assertions(inputs.length);
|
|
9
|
+
|
|
10
|
+
inputs.forEach((input) => {
|
|
11
|
+
const output = toNumberWithDefault(DEFAULT, input);
|
|
12
|
+
expect(output).toBe(input);
|
|
13
|
+
});
|
|
14
|
+
});
|
|
15
|
+
|
|
16
|
+
it("return number if input is string as number", () => {
|
|
17
|
+
const inputs = ["-1", "0", "1", "100", "0.2"];
|
|
18
|
+
expect.assertions(inputs.length);
|
|
19
|
+
|
|
20
|
+
inputs.forEach((input) => {
|
|
21
|
+
const output = toNumberWithDefault(DEFAULT, input);
|
|
22
|
+
expect(output).toBe(Number(input));
|
|
23
|
+
});
|
|
24
|
+
});
|
|
25
|
+
|
|
26
|
+
it("return default if input is not a number", () => {
|
|
27
|
+
const inputs = [
|
|
28
|
+
"vfdvf",
|
|
29
|
+
"5n",
|
|
30
|
+
"-5n",
|
|
31
|
+
null,
|
|
32
|
+
undefined,
|
|
33
|
+
NaN,
|
|
34
|
+
"",
|
|
35
|
+
{},
|
|
36
|
+
{ test: 1 },
|
|
37
|
+
[],
|
|
38
|
+
[1],
|
|
39
|
+
];
|
|
40
|
+
|
|
41
|
+
expect.assertions(inputs.length);
|
|
42
|
+
|
|
43
|
+
inputs.forEach((input) => {
|
|
44
|
+
const output = toNumberWithDefault(DEFAULT, input);
|
|
45
|
+
expect(output).toBe(DEFAULT);
|
|
46
|
+
});
|
|
47
|
+
});
|
|
48
|
+
|
|
49
|
+
describe("BigInt support", () => {
|
|
50
|
+
const isBigIntSupported = typeof BigInt !== "undefined";
|
|
51
|
+
|
|
52
|
+
if (isBigIntSupported) {
|
|
53
|
+
it("converts BigInt to number when BigInt is supported", () => {
|
|
54
|
+
expect(toNumberWithDefault(DEFAULT, BigInt(5))).toBe(5);
|
|
55
|
+
expect(toNumberWithDefault(DEFAULT, BigInt(0))).toBe(0);
|
|
56
|
+
expect(toNumberWithDefault(DEFAULT, BigInt(-10))).toBe(-10);
|
|
57
|
+
});
|
|
58
|
+
} else {
|
|
59
|
+
it("skips BigInt tests when BigInt is not supported", () => {
|
|
60
|
+
expect(typeof BigInt).toBe("undefined");
|
|
61
|
+
});
|
|
62
|
+
}
|
|
63
|
+
});
|
|
64
|
+
});
|
|
@@ -0,0 +1,48 @@
|
|
|
1
|
+
import { toNumberWithDefaultZero } from "..";
|
|
2
|
+
|
|
3
|
+
const DEFAULT = 0;
|
|
4
|
+
|
|
5
|
+
describe("toNumberWithDefaultZero", () => {
|
|
6
|
+
it("return number if input is number", () => {
|
|
7
|
+
const inputs = [-1, 0, 1, 100, 0.2];
|
|
8
|
+
expect.assertions(inputs.length);
|
|
9
|
+
|
|
10
|
+
inputs.forEach((input) => {
|
|
11
|
+
const output = toNumberWithDefaultZero(input);
|
|
12
|
+
expect(output).toBe(input);
|
|
13
|
+
});
|
|
14
|
+
});
|
|
15
|
+
|
|
16
|
+
it("return number if input is string as number", () => {
|
|
17
|
+
const inputs = ["-1", "0", "1", "100", "0.2"];
|
|
18
|
+
expect.assertions(inputs.length);
|
|
19
|
+
|
|
20
|
+
inputs.forEach((input) => {
|
|
21
|
+
const output = toNumberWithDefaultZero(input);
|
|
22
|
+
expect(output).toBe(Number(input));
|
|
23
|
+
});
|
|
24
|
+
});
|
|
25
|
+
|
|
26
|
+
it("return zero if input is not a number", () => {
|
|
27
|
+
const inputs = [
|
|
28
|
+
"vfdvf",
|
|
29
|
+
"5n",
|
|
30
|
+
"-5n",
|
|
31
|
+
null,
|
|
32
|
+
undefined,
|
|
33
|
+
NaN,
|
|
34
|
+
"",
|
|
35
|
+
{},
|
|
36
|
+
{ test: 1 },
|
|
37
|
+
[],
|
|
38
|
+
[1],
|
|
39
|
+
];
|
|
40
|
+
|
|
41
|
+
expect.assertions(inputs.length);
|
|
42
|
+
|
|
43
|
+
inputs.forEach((input) => {
|
|
44
|
+
const output = toNumberWithDefaultZero(input);
|
|
45
|
+
expect(output).toBe(DEFAULT);
|
|
46
|
+
});
|
|
47
|
+
});
|
|
48
|
+
});
|
package/numberUtils/index.ts
CHANGED
|
@@ -1,18 +1,37 @@
|
|
|
1
|
-
import
|
|
1
|
+
import { isNil } from "@applicaster/zapp-react-native-utils/utils";
|
|
2
|
+
|
|
2
3
|
import { logger } from "@applicaster/zapp-react-native-utils/logger";
|
|
3
4
|
|
|
4
5
|
const numberUtilsLogger = logger?.addSubsystem("NumberUtils");
|
|
5
6
|
|
|
7
|
+
/** Matches Ramda isEmpty: "" / [] / {} are empty; numbers and bigints are not. */
|
|
8
|
+
const isEmpty = (value: unknown): boolean => {
|
|
9
|
+
if (typeof value === "string" || Array.isArray(value)) {
|
|
10
|
+
return value.length === 0;
|
|
11
|
+
}
|
|
12
|
+
|
|
13
|
+
if (typeof value === "object" && value !== null) {
|
|
14
|
+
return Object.keys(value).length === 0;
|
|
15
|
+
}
|
|
16
|
+
|
|
17
|
+
return false;
|
|
18
|
+
};
|
|
19
|
+
|
|
6
20
|
export const toNumber = (value: unknown): number | undefined => {
|
|
7
|
-
if (
|
|
21
|
+
if (isNil(value) || isEmpty(value)) {
|
|
8
22
|
return undefined;
|
|
9
23
|
}
|
|
10
24
|
|
|
11
25
|
// Feature-detect BigInt support to avoid ReferenceError on older runtimes
|
|
12
26
|
const isBigIntSupported = typeof BigInt !== "undefined";
|
|
13
|
-
const isBigIntValue = isBigIntSupported &&
|
|
14
|
-
|
|
15
|
-
if (
|
|
27
|
+
const isBigIntValue = isBigIntSupported && typeof value === "bigint";
|
|
28
|
+
|
|
29
|
+
if (
|
|
30
|
+
typeof value === "number" ||
|
|
31
|
+
isBigIntValue ||
|
|
32
|
+
typeof value === "string" ||
|
|
33
|
+
value instanceof String
|
|
34
|
+
) {
|
|
16
35
|
const numberOrNan = Number(value);
|
|
17
36
|
|
|
18
37
|
return Number.isNaN(numberOrNan) ? undefined : numberOrNan;
|
|
@@ -59,7 +78,7 @@ export const toFiniteNumberWithDefault = (
|
|
|
59
78
|
export const isLikeNumber = (value: unknown): boolean => {
|
|
60
79
|
const possibleNumber = toNumber(value);
|
|
61
80
|
|
|
62
|
-
if (
|
|
81
|
+
if (isNil(possibleNumber)) {
|
|
63
82
|
return false;
|
|
64
83
|
}
|
|
65
84
|
|
|
@@ -76,7 +95,7 @@ export const isMinusZero = (value: number) => {
|
|
|
76
95
|
export const toPositiveNumber = (value: unknown): number | undefined => {
|
|
77
96
|
const possibleNumber = toNumber(value);
|
|
78
97
|
|
|
79
|
-
if (
|
|
98
|
+
if (isNil(possibleNumber)) {
|
|
80
99
|
return undefined;
|
|
81
100
|
}
|
|
82
101
|
|
|
@@ -97,7 +116,7 @@ export const toPositiveNumberWithDefault = (
|
|
|
97
116
|
): number => {
|
|
98
117
|
const possibleNumber = toNumber(value);
|
|
99
118
|
|
|
100
|
-
if (
|
|
119
|
+
if (isNil(possibleNumber)) {
|
|
101
120
|
return defaultValue;
|
|
102
121
|
}
|
|
103
122
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@applicaster/zapp-react-native-utils",
|
|
3
|
-
"version": "16.0.0-rc.
|
|
3
|
+
"version": "16.0.0-rc.45",
|
|
4
4
|
"description": "Applicaster Zapp React Native utilities package",
|
|
5
5
|
"main": "index.js",
|
|
6
6
|
"types": "index.d.ts",
|
|
@@ -27,7 +27,7 @@
|
|
|
27
27
|
},
|
|
28
28
|
"homepage": "https://github.com/applicaster/quickbrick#readme",
|
|
29
29
|
"dependencies": {
|
|
30
|
-
"@applicaster/applicaster-types": "16.0.0-rc.
|
|
30
|
+
"@applicaster/applicaster-types": "16.0.0-rc.45",
|
|
31
31
|
"buffer": "^5.2.1",
|
|
32
32
|
"camelize": "^1.0.0",
|
|
33
33
|
"dayjs": "^1.11.10",
|
|
@@ -242,4 +242,29 @@ describe("useGetUrlInflater", () => {
|
|
|
242
242
|
const url = result.current(source, mapping);
|
|
243
243
|
expect(url).toBe("https://foo.com/shows/A123?q=user%20query");
|
|
244
244
|
});
|
|
245
|
+
|
|
246
|
+
it("handles search queries with apostrophes without HTML entity escaping or URL truncation", () => {
|
|
247
|
+
const source =
|
|
248
|
+
"https://api.pc-cms.tele.quebec/api/applicaster/v1/mobile/search?q={{q}}";
|
|
249
|
+
|
|
250
|
+
const mapping = {
|
|
251
|
+
q: { source: "search", property: "q" },
|
|
252
|
+
};
|
|
253
|
+
|
|
254
|
+
const searchContext = getSearchContext("L'aventure", mapping);
|
|
255
|
+
|
|
256
|
+
const result = getInflatedDataSourceUrl({
|
|
257
|
+
source,
|
|
258
|
+
contexts: {
|
|
259
|
+
search: searchContext,
|
|
260
|
+
},
|
|
261
|
+
mapping,
|
|
262
|
+
});
|
|
263
|
+
|
|
264
|
+
expect(result).toBe(
|
|
265
|
+
"https://api.pc-cms.tele.quebec/api/applicaster/v1/mobile/search?q=L'aventure"
|
|
266
|
+
);
|
|
267
|
+
|
|
268
|
+
expect(result).not.toContain("'");
|
|
269
|
+
});
|
|
245
270
|
});
|
|
@@ -122,6 +122,48 @@ describe("inflate string", () => {
|
|
|
122
122
|
"this is a string with custom separators"
|
|
123
123
|
);
|
|
124
124
|
});
|
|
125
|
+
|
|
126
|
+
it("does not HTML-escape search variables containing single quotes or apostrophes", () => {
|
|
127
|
+
const string = "https://api.example.com/search?q={{search.query}}";
|
|
128
|
+
const data = { search: { query: "L'aventure" } };
|
|
129
|
+
|
|
130
|
+
expect(inflateString({ string, data })).toBe(
|
|
131
|
+
"https://api.example.com/search?q=L'aventure"
|
|
132
|
+
);
|
|
133
|
+
});
|
|
134
|
+
|
|
135
|
+
it("search context with straight apostrophe", () => {
|
|
136
|
+
const string =
|
|
137
|
+
"https://api.pc-cms.tele.quebec/api/applicaster/v1/tv/search?q={{search.q}}";
|
|
138
|
+
|
|
139
|
+
const data = { search: { q: "l'a" } };
|
|
140
|
+
|
|
141
|
+
expect(inflateString({ string, data })).toBe(
|
|
142
|
+
"https://api.pc-cms.tele.quebec/api/applicaster/v1/tv/search?q=l'a"
|
|
143
|
+
);
|
|
144
|
+
});
|
|
145
|
+
|
|
146
|
+
it("search context with backtick apostrophe", () => {
|
|
147
|
+
const string =
|
|
148
|
+
"https://api.pc-cms.tele.quebec/api/applicaster/v1/tv/search?q={{search.q}}";
|
|
149
|
+
|
|
150
|
+
const data = { search: { q: "l`a" } };
|
|
151
|
+
|
|
152
|
+
expect(inflateString({ string, data })).toBe(
|
|
153
|
+
"https://api.pc-cms.tele.quebec/api/applicaster/v1/tv/search?q=l`a"
|
|
154
|
+
);
|
|
155
|
+
});
|
|
156
|
+
|
|
157
|
+
it("search context with right single quotation mark", () => {
|
|
158
|
+
const string =
|
|
159
|
+
"https://api.pc-cms.tele.quebec/api/applicaster/v1/tv/search?q={{search.q}}";
|
|
160
|
+
|
|
161
|
+
const data = { search: { q: "l’a" } };
|
|
162
|
+
|
|
163
|
+
expect(inflateString({ string, data })).toBe(
|
|
164
|
+
"https://api.pc-cms.tele.quebec/api/applicaster/v1/tv/search?q=l’a"
|
|
165
|
+
);
|
|
166
|
+
});
|
|
125
167
|
});
|
|
126
168
|
|
|
127
169
|
describe("objectToReadableString", () => {
|
package/stringUtils/index.ts
CHANGED
|
@@ -72,8 +72,8 @@ const valueIsNull = (value) => () => value === null;
|
|
|
72
72
|
const encodeHelper = "encodeURL";
|
|
73
73
|
|
|
74
74
|
const encodeHandlebarsExpressions = R.compose(
|
|
75
|
-
R.replace(/{{([^}]+)}}/g, (
|
|
76
|
-
p1.includes("search") ?
|
|
75
|
+
R.replace(/{{([^}]+)}}/g, (_, p1) =>
|
|
76
|
+
p1.includes("search") ? `{{{${p1}}}}` : `{{{${encodeHelper} ${p1}}}}`
|
|
77
77
|
)
|
|
78
78
|
);
|
|
79
79
|
|