-
Notifications
You must be signed in to change notification settings - Fork 0
/
App.js
117 lines (108 loc) · 3.59 KB
/
App.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
import React from "react";
import { Platform, StatusBar, StyleSheet, View } from "react-native";
import { AppLoading } from "expo";
import { Asset } from 'expo-asset';
import NavigatorService from "./src/services/navigator.js";
import Navigators from "./src/modules/routing";
import { Provider } from "react-redux";
import { Application } from "./src/application";
import { MenuProvider } from "react-native-popup-menu";
// import firebase from "firebase";
import { NotificationManager } from "./src/services/utilities/pushNotification";
import { Notifications } from "expo";
import * as Font from "expo-font";
import "./src/fixtimerbug"; // <<<<<<<<<<<<<<<<<<
export default class App extends React.Component {
state = {
isLoadingComplete: false,
isReady: false,
notification: {}
};
async componentWillMount() {
// var firebaseConfig = {
// apiKey: "AIzaSyB7TYD3p-bgkkDrz2qXm82sCPQ_UWSThiQ",
// authDomain: "pushnotification-d6a2c.firebaseapp.com",
// databaseURL: "https://pushnotification-d6a2c.firebaseio.com",
// projectId: "pushnotification-d6a2c",
// storageBucket: "",
// messagingSenderId: "508579199556",
// appId: "1:508579199556:web:065baa5f4ffb91ca"
// };
// Initialize Firebase
// firebase.initializeApp(firebaseConfig);
// NotificationManager.registerForPushNotifications();
await Font.loadAsync({
Roboto: require("native-base/Fonts/Roboto.ttf"),
Roboto_medium: require("native-base/Fonts/Roboto_medium.ttf")
});
}
_handleNotification = notification => {
this.setState({ notification: notification });
// console.log("=======notification recieved===" , notification)
if (notification.origin == "received")
alert(
"----hi it is recieved push notification (sent while I already open the app)"
);
};
async componentDidMount() {
await Application.run();
this.setState({ isReady: true });
this._notificationSubscription = Notifications.addListener(
this._handleNotification
);
}
render() {
if (!this.state.isReady || !Application.current) {
return (
<AppLoading
startAsync={this._loadResourcesAsync}
onFinish={() => this.setState({ isReady: true })}
onError={console.warn}
/>
);
} else {
return (
<Provider store={Application.current.store}>
<MenuProvider>
<Navigators
ref={navigatorRef => {
NavigatorService.setContainer(navigatorRef);
}}
/>
</MenuProvider>
</Provider>
);
}
}
_loadResourcesAsync = async () => {
return Promise.all([
Asset.loadAsync([
require("./assets/images/background.jpg"),
require("./assets/images/bible.png"),
require("./assets/images/logo.png"),
require("./assets/images/homecrop.png")
]),
// Font.loadAsync({
// // This is the font that we are using for our tab bar
// ...Icon.Ionicons.font,
// // We include SpaceMono because we use it in HomeScreen.js. Feel free
// // to remove this if you are not using it in your app
// "space-mono": require("./assets/fonts/SpaceMono-Regular.ttf")
// })
]);
};
_handleLoadingError = error => {
// In this case, you might want to report the error to your error
// reporting service, for example Sentry
console.warn(error);
};
_handleFinishLoading = () => {
this.setState({ isLoadingComplete: true });
};
}
const styles = StyleSheet.create({
container: {
flex: 1,
backgroundColor: "#fff"
}
});