-
Notifications
You must be signed in to change notification settings - Fork 1
/
App.js
215 lines (186 loc) · 6.5 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
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
import React, { useEffect, useState, useMemo } from 'react'
import { Easing } from 'react-native'
import { NavigationContainer } from '@react-navigation/native';
import { createStackNavigator } from '@react-navigation/stack';
import { Provider } from 'react-redux'
import Playlist from './Screens/Playlist';
import Subcategory from './Screens/Subcategory';
import Player from './Screens/Player';
import Home from './Screens/Home';
import SignInScreen from './AuthenticationScreens/SignInScreen';
import SignUpScreen from './AuthenticationScreens/SignUpScreen'
import jwt from 'jwt-decode'
import AsyncStorage from '@react-native-community/async-storage'
import AuthLoadingScreen from './AuthenticationScreens/AuthLoadingScreen';
import DrawerScreen from './ReusableComponents/DrawerScreen';
import Premium from './Screens/Premium';
import Blogs from './Screens/Blogs';
import EditProfile from './Screens/EditProfile';
import { getUserState } from './constant/storage'
import Webview from './Screens/WebView';
import Modal1 from './AuthenticationScreens/Modal';
import ForgotPassword from './AuthenticationScreens/ForgotPassword';
import { UserContext } from './AuthContext'
import ForgotPassword2 from './AuthenticationScreens/ForgotPassword2';
import PushNotification from "react-native-push-notification";
import Terms from './Screens/Terms';
import Privacy from './Screens/Privacy';
import Help from './Screens/Help';
import UserSettings from './Screens/Settings';
import About from './Screens/About';
import { createStore, applyMiddleware } from 'redux'
import Rootreducer from './Redux/Rootreducer'
import thnkmiddleware from 'redux-thunk'
import MusicModal from './Screens/MusicModal';
const store = createStore(Rootreducer, applyMiddleware(thnkmiddleware))
const Stack = createStackNavigator();
function App() {
useEffect(() => {
checkPermission()
getLoginData()
PushNotification.configure({
onRegister: function (token) {
console.log("TOKEN:", token);
},
onNotification: function (notification) {
console.log("NOTIFICATION:", notification);
},
onAction: function (notification) {
console.log("ACTION:", notification.action);
console.log("NOTIFICATION:", notification);
},
onRegistrationError: function(err) {
console.error(err.message, err);
},
permissions: {
alert: true,
badge: true,
sound: true,
},
popInitialNotification: true,
requestPermissions: true,
});
}, [])
const checkPermission = async () => {
try {
const enabled = await messaging().hasPermission();
if (enabled) {
getToken();
} else {
requestPermission();
}
} catch (error) {
console.log(error)
}
}
const getToken = async () => {
try {
let fcmToken = await AsyncStorage.getItem('fcmToken');
if (!fcmToken) {
fcmToken = await messaging().getToken();
console.log(fcmToken)
if (fcmToken) {
await AsyncStorage.setItem('fcmToken', fcmToken);
}
}
} catch (error) {
console.log(error)
}
}
const requestPermission = async () => {
try {
await messaging().requestPermission();
getToken();
} catch (error) {
console.log('permission rejected');
}
}
const [loading, setloading] = useState(true)
const [user, setuser] = useState(0)
const authFlow = useMemo(() => ({
signOut: async () => {
try {
await AsyncStorage.removeItem('userToken')
setuser(0)
setloading(false)
} catch (error) {
setuser(0)
setloading(false)
}
},
logIn: async () => {
try {
setuser(1)
setloading(false)
} catch (error) {
}
}
}), [user])
const openAndCloseConfig = {
animation: 'timing',
config: {
duration: 16.66,
easing: Easing.linear
}
}
const getLoginData = async () => {
const value = await AsyncStorage.getItem('userToken')
if (value === null) {
setuser(0)
setloading(false)
}else {
setuser(1)
setloading(false)
}
}
console.log(user)
return (
<UserContext.Provider value={authFlow}>
<Provider store={store}>
<NavigationContainer>
<Stack.Navigator
screenOptions={{
headerShown: false,
transitionSpec: {
open: openAndCloseConfig,
close: openAndCloseConfig
},
}}>
{
loading === true ? <Stack.Screen name="loading" component={AuthLoadingScreen} /> :
user === 0 ?
(
<>
<Stack.Screen name="SignInScreen" component={SignInScreen} />
<Stack.Screen name="SignUpScreen" component={SignUpScreen} />
<Stack.Screen name="ForgotPassword" component={ForgotPassword} />
<Stack.Screen name="ForgotPassword2" component={ForgotPassword2} />
<Stack.Screen name="Modal" component={Modal1} />
</>
)
:
( <>
<Stack.Screen name="Home" component={Home} />
<Stack.Screen name="Player" component={Player} />
<Stack.Screen name="Playlist" component={Playlist} />
<Stack.Screen name="Subcategory" component={Subcategory} />
<Stack.Screen name="Premium" component={Premium} />
<Stack.Screen name="Blogs" component={Blogs} />
<Stack.Screen name="Profile" component={DrawerScreen} />
<Stack.Screen name="Webview" component={Webview} />
<Stack.Screen name="NewPassword" component={ForgotPassword2} />
<Stack.Screen name="Term" component={Terms} />
<Stack.Screen name="Privacy" component={Privacy} />
<Stack.Screen name="Help" component={Help} />
<Stack.Screen name="UserSetting" component={UserSettings} />
<Stack.Screen name="About" component={About} />
</>
)
}
</Stack.Navigator>
</NavigationContainer>
</Provider>
</UserContext.Provider>
);
}
export default App