Skip to content
This repository was archived by the owner on Sep 22, 2021. It is now read-only.

Commit 7a0b300

Browse files
committed
update ios
1 parent c82ba51 commit 7a0b300

File tree

1,651 files changed

+15122
-13018
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

1,651 files changed

+15122
-13018
lines changed

App.js

+40-17
Original file line numberDiff line numberDiff line change
@@ -1,36 +1,59 @@
11
import React from "react";
2-
import { StyleSheet, Text, View, Button, NativeModules } from "react-native";
3-
4-
const TalkableBridge = NativeModules.TalkableBridge;
5-
// const TalkableAndroid = NativeModules.TalkableAndroid;
2+
import {
3+
StyleSheet,
4+
Text,
5+
View,
6+
Button,
7+
NativeModules,
8+
Platform
9+
} from "react-native";
610

711
export default class App extends React.Component {
812
showStandaloneCampaign = () => {
9-
// console.warn(NativeModules.TalkableAndroid);
10-
// TalkableBridgeAndroid.showOffer();
11-
NativeModules.TalkableBridge.registerOriginStandalone({});
13+
switch (Platform.OS) {
14+
case "ios":
15+
NativeModules.TalkableIOS.registerOriginStandalone({});
16+
break;
17+
case "android":
18+
NativeModules.TalkableAndroid.registerOriginStandalone();
19+
break;
20+
}
1221
};
1322

1423
showPostPurchaseCampaign = () => {
15-
NativeModules.TalkableBridge.registerOriginPostPurchase({
16-
purchase: {
17-
order_number: +new Date(), // Unique order number. Example: '100011'
18-
subtotal: "100", // Order subtotal (pre-tax, post-discount). Example: '23.97'
19-
coupon_code: "", // Coupon code that was used at checkout (pass multiple as an array). Example: 'SAVE20'
20-
shipping_zip: "1", // Optional - used for fraud protection by address. Example: '02222'
21-
shipping_address: "1", // Full address of the order, make sure to strictly follow a format: 'Apt #, Street address, City, State, ZIP, Country'
22-
email: "[email protected]" // Customer email address who issued a purchase. Example: '[email protected]'
23-
}
24-
});
24+
switch (Platform.OS) {
25+
case "ios":
26+
NativeModules.TalkableIOS.registerOriginPostPurchase({
27+
purchase: {
28+
order_number: +new Date(), // Unique order number. Example: '100011'
29+
subtotal: "100", // Order subtotal (pre-tax, post-discount). Example: '23.97'
30+
coupon_code: "", // Coupon code that was used at checkout (pass multiple as an array). Example: 'SAVE20'
31+
shipping_zip: "1", // Optional - used for fraud protection by address. Example: '02222'
32+
shipping_address: "1", // Full address of the order, make sure to strictly follow a format: 'Apt #, Street address, City, State, ZIP, Country'
33+
email: "[email protected]" // Customer email address who issued a purchase. Example: '[email protected]'
34+
}
35+
});
36+
break;
37+
case "android":
38+
NativeModules.TalkableAndroid.registerOriginPostPurchase(
39+
"123456", // order_number
40+
100, // subtotal
41+
"123", // coupon_code
42+
"[email protected]" // email
43+
);
44+
break;
45+
}
2546
};
2647
render() {
2748
return (
2849
<View style={styles.container}>
2950
<Text>Talkable</Text>
51+
<View style={{ marginBottom: 20 }} />
3052
<Button
3153
title="Standalone Campaign"
3254
onPress={this.showStandaloneCampaign}
3355
/>
56+
<View style={{ marginBottom: 10 }} />
3457
<Button
3558
title="Post Purchase Campaign"
3659
onPress={this.showPostPurchaseCampaign}
87.9 KB
Binary file not shown.
0 Bytes
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
0 Bytes
Binary file not shown.
Binary file not shown.
7.41 KB
Binary file not shown.
Binary file not shown.
0 Bytes
Binary file not shown.
Binary file not shown.

android/.idea/libraries/Gradle__android_arch_core_common_1_1_0_jar.xml

+11
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

android/.idea/libraries/Gradle__android_arch_core_runtime_1_1_0.xml

+12
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

android/.idea/libraries/Gradle__android_arch_lifecycle_common_1_1_0_jar.xml

+11
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

android/.idea/libraries/Gradle__android_arch_lifecycle_livedata_core_1_1_0.xml

+12
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

android/.idea/libraries/Gradle__android_arch_lifecycle_runtime_1_1_0.xml

+12
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

android/.idea/libraries/Gradle__android_arch_lifecycle_viewmodel_1_1_0.xml

+12
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

android/.idea/libraries/Gradle__com_android_support_animated_vector_drawable_27_1_1.xml

+12
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

android/.idea/libraries/Gradle__com_android_support_appcompat_v7_27_1_1.xml

+12
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

android/.idea/libraries/Gradle__com_android_support_support_annotations_27_1_1_jar.xml

+11
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

android/.idea/libraries/Gradle__com_android_support_support_compat_27_1_1.xml

+12
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

android/.idea/libraries/Gradle__com_android_support_support_core_ui_27_1_1.xml

+12
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

android/.idea/libraries/Gradle__com_android_support_support_core_utils_27_1_1.xml

+12
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

android/.idea/libraries/Gradle__com_android_support_support_fragment_27_1_1.xml

+12
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

android/.idea/libraries/Gradle__com_android_support_support_vector_drawable_27_1_1.xml

+12
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

android/.idea/libraries/Gradle__com_facebook_fresco_drawee_1_10_0.xml

+12
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

android/.idea/libraries/Gradle__com_facebook_fresco_fbcore_1_10_0.xml

+15
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

android/.idea/libraries/Gradle__com_facebook_fresco_fresco_1_10_0.xml

+15
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

android/.idea/libraries/Gradle__com_facebook_fresco_imagepipeline_1_10_0.xml

+15
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

android/.idea/libraries/Gradle__com_facebook_fresco_imagepipeline_base_1_10_0.xml

+15
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

android/.idea/libraries/Gradle__com_facebook_fresco_imagepipeline_okhttp3_1_10_0.xml

+12
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

android/.idea/libraries/Gradle__com_facebook_infer_annotation_infer_annotation_0_11_2_jar.xml

+11
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

android/.idea/libraries/Gradle__com_facebook_react_react_native_0_57_4.xml

+17
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)