@moneylion/react-native-offer-carousel 1.0.1 → 1.0.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/lib/commonjs/builder/builder.js +356 -0
- package/lib/commonjs/builder/builder.js.map +1 -0
- package/lib/commonjs/builder/config/types.js +2 -0
- package/lib/commonjs/builder/config/types.js.map +1 -0
- package/lib/commonjs/builder/index.js +28 -0
- package/lib/commonjs/builder/index.js.map +1 -0
- package/lib/commonjs/capabilities/ui/elements/src/components/MarkdownText/components.js +0 -2
- package/lib/commonjs/capabilities/ui/elements/src/components/MarkdownText/components.js.map +1 -1
- package/lib/commonjs/components/Cards/VideosCard/VideoContent.js +35 -37
- package/lib/commonjs/components/Cards/VideosCard/VideoContent.js.map +1 -1
- package/lib/commonjs/components/DynamicOffers/DynamicOffers.js +1 -1
- package/lib/commonjs/components/DynamicOffers/Render/DynamicOffersRender.js +1 -1
- package/lib/module/builder/builder.js +350 -0
- package/lib/module/builder/builder.js.map +1 -0
- package/lib/module/builder/config/types.js +2 -0
- package/lib/module/builder/config/types.js.map +1 -0
- package/lib/module/builder/index.js +3 -0
- package/lib/module/builder/index.js.map +1 -0
- package/lib/module/capabilities/ui/elements/src/components/MarkdownText/components.js +0 -1
- package/lib/module/capabilities/ui/elements/src/components/MarkdownText/components.js.map +1 -1
- package/lib/module/components/Cards/VideosCard/VideoContent.js +35 -30
- package/lib/module/components/Cards/VideosCard/VideoContent.js.map +1 -1
- package/lib/module/components/DynamicOffers/DynamicOffers.js +1 -1
- package/lib/module/components/DynamicOffers/DynamicOffers.js.map +1 -1
- package/lib/module/components/DynamicOffers/Render/DynamicOffersRender.js +1 -1
- package/lib/module/components/DynamicOffers/Render/DynamicOffersRender.js.map +1 -1
- package/lib/typescript/{builder → src/builder}/builder.d.ts +2 -2
- package/lib/typescript/src/builder/builder.d.ts.map +1 -0
- package/lib/typescript/src/builder/config/types.d.ts.map +1 -0
- package/lib/typescript/src/builder/index.d.ts.map +1 -0
- package/lib/typescript/src/capabilities/configuration/src/brands/createDerivedBrands.d.ts +1 -1
- package/lib/typescript/src/capabilities/configuration/src/brands/createDerivedBrands.d.ts.map +1 -1
- package/lib/typescript/src/capabilities/configuration/src/brands/types.d.ts +1 -1
- package/lib/typescript/src/capabilities/configuration/src/brands/types.d.ts.map +1 -1
- package/lib/typescript/src/capabilities/ui/elements/src/components/MarkdownText/components.d.ts.map +1 -1
- package/lib/typescript/src/components/Cards/VideosCard/VideoContent.d.ts +0 -8
- package/lib/typescript/src/components/Cards/VideosCard/VideoContent.d.ts.map +1 -1
- package/lib/typescript/src/components/DynamicOffers/Render/DynamicOffersRender.d.ts +1 -1
- package/lib/typescript/src/components/DynamicOffers/Render/DynamicOffersRender.d.ts.map +1 -1
- package/lib/typescript/src/components/DynamicOffers/Render/Offer.d.ts +1 -1
- package/lib/typescript/src/components/DynamicOffers/Render/Offer.d.ts.map +1 -1
- package/lib/typescript/src/components/Layouts/CreditCardOfferCard/index.d.ts +1 -1
- package/lib/typescript/src/components/Layouts/CreditCardOfferCard/index.d.ts.map +1 -1
- package/lib/typescript/src/components/Layouts/CreditCardOfferCard/statsBuilder.d.ts +1 -1
- package/lib/typescript/src/components/Layouts/CreditCardOfferCard/statsBuilder.d.ts.map +1 -1
- package/lib/typescript/src/components/Layouts/DefaultOfferCard/index.d.ts +1 -1
- package/lib/typescript/src/components/Layouts/DefaultOfferCard/index.d.ts.map +1 -1
- package/lib/typescript/src/components/Layouts/DefaultOfferCard/statsBuilder.d.ts +1 -1
- package/lib/typescript/src/components/Layouts/DefaultOfferCard/statsBuilder.d.ts.map +1 -1
- package/lib/typescript/src/components/Layouts/HeadlineWithDescriptionCard/index.d.ts +1 -1
- package/lib/typescript/src/components/Layouts/HeadlineWithDescriptionCard/index.d.ts.map +1 -1
- package/package.json +1 -7
- package/src/builder/builder.ts +500 -0
- package/src/builder/config/types.ts +107 -0
- package/src/builder/index.ts +2 -0
- package/src/capabilities/configuration/src/brands/createDerivedBrands.ts +1 -1
- package/src/capabilities/configuration/src/brands/types.ts +1 -1
- package/src/capabilities/offers/pipeline/src/sources/ratetables/withDeviceSignals.ts +1 -1
- package/src/capabilities/ui/elements/src/components/MarkdownText/components.tsx +0 -1
- package/src/components/Cards/VideosCard/VideoContent.tsx +32 -34
- package/src/components/DynamicOffers/DynamicOffers.tsx +1 -1
- package/src/components/DynamicOffers/Render/DynamicOffersRender.tsx +1 -1
- package/src/components/DynamicOffers/Render/Offer.tsx +1 -1
- package/src/components/Layouts/CreditCardOfferCard/index.tsx +1 -1
- package/src/components/Layouts/CreditCardOfferCard/statsBuilder.tsx +1 -1
- package/src/components/Layouts/DefaultOfferCard/index.tsx +1 -1
- package/src/components/Layouts/DefaultOfferCard/statsBuilder.tsx +1 -1
- package/src/components/Layouts/HeadlineWithDescriptionCard/index.tsx +1 -1
- package/lib/typescript/builder/builder.d.ts.map +0 -1
- package/lib/typescript/builder/config/types.d.ts.map +0 -1
- package/lib/typescript/builder/index.d.ts.map +0 -1
- /package/lib/typescript/{builder → src/builder}/config/types.d.ts +0 -0
- /package/lib/typescript/{builder → src/builder}/index.d.ts +0 -0
|
@@ -0,0 +1,107 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Copied from : https://github.com/EVENFinancial/cnf-services/blob/main/packages/app-utils/src/payload/payload-types.generated.ts
|
|
3
|
+
* This interface was referenced by `Config`'s JSON-Schema
|
|
4
|
+
* via the `definition` "media".
|
|
5
|
+
*/
|
|
6
|
+
export interface Media {
|
|
7
|
+
id: string;
|
|
8
|
+
autoCrop?: boolean | null;
|
|
9
|
+
alt?: string | null;
|
|
10
|
+
aiInference?:
|
|
11
|
+
| {
|
|
12
|
+
[k: string]: unknown;
|
|
13
|
+
}
|
|
14
|
+
| unknown[]
|
|
15
|
+
| string
|
|
16
|
+
| number
|
|
17
|
+
| boolean
|
|
18
|
+
| null;
|
|
19
|
+
updatedAt: string;
|
|
20
|
+
createdAt: string;
|
|
21
|
+
url?: string | null;
|
|
22
|
+
filename?: string | null;
|
|
23
|
+
mimeType?: string | null;
|
|
24
|
+
filesize?: number | null;
|
|
25
|
+
width?: number | null;
|
|
26
|
+
height?: number | null;
|
|
27
|
+
}
|
|
28
|
+
|
|
29
|
+
/**
|
|
30
|
+
* Copied from : https://github.com/EVENFinancial/cnf-services/blob/main/packages/app-utils/src/payload/payload-types.generated.ts
|
|
31
|
+
* This interface was referenced by `Config`'s JSON-Schema
|
|
32
|
+
* via the `definition` "brands".
|
|
33
|
+
*/
|
|
34
|
+
export interface Brand {
|
|
35
|
+
id: string;
|
|
36
|
+
displayName: string;
|
|
37
|
+
domain: string;
|
|
38
|
+
type: "business" | "product" | "individual";
|
|
39
|
+
logos?: {
|
|
40
|
+
horizontal?: string | Media | null;
|
|
41
|
+
icon?: string | Media | null;
|
|
42
|
+
};
|
|
43
|
+
palette?: {
|
|
44
|
+
promotional?: string | null;
|
|
45
|
+
generation?: ("generate" | "provided") | null;
|
|
46
|
+
colorScheme?: ("balanced" | "light" | "dark") | null;
|
|
47
|
+
positive?: string | null;
|
|
48
|
+
critical?: string | null;
|
|
49
|
+
highlight?: string | null;
|
|
50
|
+
neutral?: string | null;
|
|
51
|
+
};
|
|
52
|
+
isLicensed?: boolean | null;
|
|
53
|
+
licensedBrand?: (string | null) | Brand;
|
|
54
|
+
allowedMarks: {
|
|
55
|
+
logo: boolean;
|
|
56
|
+
name: boolean;
|
|
57
|
+
};
|
|
58
|
+
hideLicensedLogo?: boolean | null;
|
|
59
|
+
font?: {
|
|
60
|
+
family?:
|
|
61
|
+
| (
|
|
62
|
+
| "nunito"
|
|
63
|
+
| "lato"
|
|
64
|
+
| "sourceSans3"
|
|
65
|
+
| "openSans"
|
|
66
|
+
| "roboto"
|
|
67
|
+
| "arimo"
|
|
68
|
+
| "montserrat"
|
|
69
|
+
)
|
|
70
|
+
| null;
|
|
71
|
+
};
|
|
72
|
+
links?: {
|
|
73
|
+
home?: string | null;
|
|
74
|
+
terms?: string | null;
|
|
75
|
+
support?: string | null;
|
|
76
|
+
privacy?: string | null;
|
|
77
|
+
};
|
|
78
|
+
ctaRoundness?: {
|
|
79
|
+
small?: number | null;
|
|
80
|
+
medium?: number | null;
|
|
81
|
+
large?: number | null;
|
|
82
|
+
};
|
|
83
|
+
updatedAt: string;
|
|
84
|
+
createdAt: string;
|
|
85
|
+
}
|
|
86
|
+
|
|
87
|
+
export type OverridePartnerPage = {
|
|
88
|
+
productTypeSlug?: string;
|
|
89
|
+
partnerPageUrl?: string;
|
|
90
|
+
};
|
|
91
|
+
|
|
92
|
+
export type Config = {
|
|
93
|
+
dynamicOffer?: {
|
|
94
|
+
title?: string;
|
|
95
|
+
hostURL?: string;
|
|
96
|
+
defaultProductType?: string;
|
|
97
|
+
overridePartnerPage?: OverridePartnerPage[];
|
|
98
|
+
subAccountToken?: string;
|
|
99
|
+
isDev: boolean;
|
|
100
|
+
cnfAppBaseUrl: string;
|
|
101
|
+
cnfBaseUrl: string;
|
|
102
|
+
tags: string;
|
|
103
|
+
};
|
|
104
|
+
brand?: {
|
|
105
|
+
palette: Brand["palette"];
|
|
106
|
+
};
|
|
107
|
+
};
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { isObject, sift } from "radash";
|
|
2
|
-
import type { Brand } from "
|
|
2
|
+
import type { Brand } from "../../../../builder";
|
|
3
3
|
import { P, match } from "ts-pattern";
|
|
4
4
|
import { enhanceType } from "./types";
|
|
5
5
|
import { checkVisualBrandEligibility } from "./checkVisualEligibility";
|
|
@@ -5,7 +5,7 @@ import type { CnfContext } from "../../../../../core/src/system/cnfContext/CnfCo
|
|
|
5
5
|
|
|
6
6
|
import type { LeadCreateData } from "./types";
|
|
7
7
|
import type { LeadRequestOfferCatalog } from "./offer-catalog/types";
|
|
8
|
-
import type { Brand } from "
|
|
8
|
+
import type { Brand } from "../../../../../../builder";
|
|
9
9
|
|
|
10
10
|
const UUID_V4_REGEX =
|
|
11
11
|
/^[0-9a-f]{8}-[0-9a-f]{4}-4[0-9a-f]{3}-[89ab][0-9a-f]{3}-[0-9a-f]{12}$/i;
|
|
@@ -1,38 +1,36 @@
|
|
|
1
|
-
"use client";
|
|
1
|
+
// "use client";
|
|
2
2
|
|
|
3
|
-
import { memo } from "react";
|
|
4
|
-
import
|
|
5
|
-
//
|
|
6
|
-
import React from "react";
|
|
7
|
-
import Text from "../../Text";
|
|
3
|
+
// import { memo } from "react";
|
|
4
|
+
// import React from "react";
|
|
5
|
+
// import Text from "../../Text";
|
|
8
6
|
|
|
9
|
-
type Video = {
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
};
|
|
7
|
+
// type Video = {
|
|
8
|
+
// muxId: string;
|
|
9
|
+
// subtitle: string;
|
|
10
|
+
// };
|
|
13
11
|
|
|
14
|
-
export type VideoContentProps = Video;
|
|
12
|
+
// export type VideoContentProps = Video;
|
|
15
13
|
|
|
16
|
-
export const VideoContent = memo(({ muxId, subtitle }: VideoContentProps) => (
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
));
|
|
14
|
+
// export const VideoContent = memo(({ muxId, subtitle }: VideoContentProps) => (
|
|
15
|
+
// <View gap={2} direction="column" width={27}>
|
|
16
|
+
// <View width={27} height={48} borderRadius="large">
|
|
17
|
+
// {/* TODO: Add the video player logic */}
|
|
18
|
+
// <View key={`${muxId}`} />
|
|
19
|
+
// {/* <VideoPlayer playbackId={muxId} /> */}
|
|
20
|
+
// </View>
|
|
21
|
+
// <Tooltip text={subtitle}>
|
|
22
|
+
// {(attributes) => (
|
|
23
|
+
// <Actionable attributes={attributes} as="div">
|
|
24
|
+
// <Text
|
|
25
|
+
// variant="caption-2"
|
|
26
|
+
// weight="medium"
|
|
27
|
+
// color="neutral-faded"
|
|
28
|
+
// numberOfLines={2}
|
|
29
|
+
// >
|
|
30
|
+
// {subtitle}
|
|
31
|
+
// </Text>
|
|
32
|
+
// </Actionable>
|
|
33
|
+
// )}
|
|
34
|
+
// </Tooltip>
|
|
35
|
+
// </View>
|
|
36
|
+
// ));
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import React from "react";
|
|
2
|
-
import { productTypeBuilder } from "
|
|
2
|
+
import { productTypeBuilder } from "../../builder/builder";
|
|
3
3
|
import { DynamicOffersRender, FallbackOfferTemplate } from "./Render";
|
|
4
4
|
import type { DynamicOffersRenderProps } from "./Render/DynamicOffersRender";
|
|
5
5
|
import type { Layout } from "../../utils";
|
|
@@ -7,7 +7,7 @@ import React, {
|
|
|
7
7
|
} from "react";
|
|
8
8
|
import type { BaseOffer } from "../../../../src/capabilities/offer-catalog/src/types/offerCatalogSchema";
|
|
9
9
|
import type { Layout } from "../../../utils";
|
|
10
|
-
import { productTypeBuilder as builder } from "
|
|
10
|
+
import { productTypeBuilder as builder } from "../../../builder/builder";
|
|
11
11
|
import { Offer } from "./Offer";
|
|
12
12
|
import {
|
|
13
13
|
InteractionManager,
|
|
@@ -2,7 +2,7 @@ import React, { Fragment } from "react";
|
|
|
2
2
|
|
|
3
3
|
import { match } from "ts-pattern";
|
|
4
4
|
|
|
5
|
-
import type { ProductTypeBuilder } from "
|
|
5
|
+
import type { ProductTypeBuilder } from "../../../builder";
|
|
6
6
|
import type { BaseOffer } from "../../../../src/capabilities/offer-catalog/src";
|
|
7
7
|
import {
|
|
8
8
|
DefaultOfferCard,
|
|
@@ -3,7 +3,7 @@ import type { BaseOffer } from "../../../../src/capabilities/offer-catalog/src";
|
|
|
3
3
|
|
|
4
4
|
import React from "react";
|
|
5
5
|
|
|
6
|
-
import type { CreditCardOfferCard as CreditCardOfferCardBuilderProps } from "
|
|
6
|
+
import type { CreditCardOfferCard as CreditCardOfferCardBuilderProps } from "../../../builder";
|
|
7
7
|
import { makeCreditCardOfferStats } from "./statsBuilder";
|
|
8
8
|
import { BaseOfferCard, SeeMore } from "../../Common";
|
|
9
9
|
import Divider from "../../Divider";
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import type { BaseOffer } from "../../../../src/capabilities/offer-catalog/src";
|
|
2
|
-
import type { CreditCardOfferCard } from "
|
|
2
|
+
import type { CreditCardOfferCard } from "../../../builder";
|
|
3
3
|
import { statsToElementPropsBuilder } from "../../../../src/capabilities/offer-catalog/src/utils/stats";
|
|
4
4
|
|
|
5
5
|
export const makeCreditCardOfferStats =
|
|
@@ -4,7 +4,7 @@ import type { BaseOffer } from "../../../../src/capabilities/offer-catalog/src";
|
|
|
4
4
|
import React from "react";
|
|
5
5
|
|
|
6
6
|
import { makeDefaultOfferCardStats } from "./statsBuilder";
|
|
7
|
-
import type { DefaultOfferCard as DefaultOfferCardBuilderProps } from "
|
|
7
|
+
import type { DefaultOfferCard as DefaultOfferCardBuilderProps } from "../../../builder";
|
|
8
8
|
import { BaseOfferCard, DynamicOfferCard, SeeMore } from "../../Common";
|
|
9
9
|
|
|
10
10
|
type DefaultOfferCardProps = {
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import type { BaseOffer } from "../../../../src/capabilities/offer-catalog/src";
|
|
2
|
-
import type { DefaultOfferCard } from "
|
|
2
|
+
import type { DefaultOfferCard } from "../../../builder";
|
|
3
3
|
import { statsToElementPropsBuilder } from "../../../../src/capabilities/offer-catalog/src/utils/stats";
|
|
4
4
|
|
|
5
5
|
export const makeDefaultOfferCardStats =
|
|
@@ -3,7 +3,7 @@ import { get } from "radash";
|
|
|
3
3
|
import React from "react";
|
|
4
4
|
import { SeeMore } from "../../Common/DynamicOfferCard/SeeMore";
|
|
5
5
|
import type { BaseOffer } from "../../../../src/capabilities/offer-catalog/src";
|
|
6
|
-
import type { HeadlineWithDescriptionCard as HeadlineWithDescriptionCardBuilderProps } from "
|
|
6
|
+
import type { HeadlineWithDescriptionCard as HeadlineWithDescriptionCardBuilderProps } from "../../../builder";
|
|
7
7
|
import { BaseOfferCard, DynamicOfferCard } from "../../Common";
|
|
8
8
|
|
|
9
9
|
type HeadlineWithDescriptionCardProps = {
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"builder.d.ts","sourceRoot":"","sources":["../../../builder/builder.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,YAAY,EAAE,MAAM,uCAAuC,CAAC;AAC1E,OAAO,KAAK,EAAE,IAAI,EAAE,MAAM,mDAAmD,CAAC;AAE9E,KAAK,UAAU,GAAG;IACjB,YAAY,EAAE,YAAY,EAAE,CAAC;CAC7B,CAAC;AAEF,MAAM,MAAM,gBAAgB,GAAG,UAAU,GAAG;IAC3C,MAAM,EAAE,kBAAkB,CAAC;IAC3B,QAAQ,EAAE,IAAI,EAAE,CAAC;IACjB,KAAK,EAAE,IAAI,EAAE,CAAC;CACd,CAAC;AAEF,MAAM,MAAM,mBAAmB,GAAG,UAAU,GAAG;IAC9C,MAAM,EAAE,qBAAqB,CAAC;IAC9B,KAAK,EAAE,IAAI,EAAE,CAAC;CACd,CAAC;AAEF,MAAM,MAAM,2BAA2B,GAAG,UAAU,GAAG;IACtD,MAAM,EAAE,6BAA6B,CAAC;IACtC,aAAa,CAAC,EAAE,MAAM,CAAC;IACvB,gBAAgB,CAAC,EAAE,MAAM,CAAC;IAC1B,sBAAsB,CAAC,EAAE,MAAM,CAAC;CAChC,CAAC;AAEF,MAAM,MAAM,kBAAkB,GAAG,KAAK,CACrC,gBAAgB,GAAG,mBAAmB,GAAG,2BAA2B,CACpE,CAAC;AAEF,eAAO,MAAM,kBAAkB,EAAE,kBAsdhC,CAAC"}
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"types.d.ts","sourceRoot":"","sources":["../../../../builder/config/types.ts"],"names":[],"mappings":"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"}
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../builder/index.ts"],"names":[],"mappings":"AAAA,cAAc,WAAW,CAAC;AAC1B,cAAc,gBAAgB,CAAC"}
|
|
File without changes
|
|
File without changes
|