-
Notifications
You must be signed in to change notification settings - Fork 0
/
HomeApp.js
148 lines (129 loc) · 4.48 KB
/
HomeApp.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
import { ActionSheetProvider } from '@expo/react-native-action-sheet';
import { Ionicons, MaterialIcons } from '@expo/vector-icons';
import { AppLoading } from 'expo';
import { Asset } from 'expo-asset';
import * as Device from 'expo-device';
import * as Font from 'expo-font';
import React from 'react';
import { Linking, Platform, StatusBar, StyleSheet, View } from 'react-native';
import { Appearance } from 'react-native-appearance';
import { Assets as StackAssets } from 'react-navigation-stack';
import { connect } from 'react-redux';
import url from 'url';
import Navigation from './navigation/Navigation';
import HistoryActions from './redux/HistoryActions';
import SessionActions from './redux/SessionActions';
import SettingsActions from './redux/SettingsActions';
import Store from './redux/Store';
import LocalStorage from './storage/LocalStorage';
import addListenerWithNativeCallback from './utils/addListenerWithNativeCallback';
// Download and cache stack assets, don't block loading on this though
Asset.loadAsync(StackAssets);
@connect(data => App.getDataProps(data))
export default class App extends React.Component {
static getDataProps(data) {
const { settings } = data;
return {
preferredAppearance: settings.preferredAppearance,
};
}
state = {
isReady: false,
colorScheme: Appearance.getColorScheme(),
};
componentDidMount() {
this._initializeStateAsync();
this._addProjectHistoryListener();
}
_addProjectHistoryListener = () => {
addListenerWithNativeCallback('ExponentKernel.addHistoryItem', async event => {
let { manifestUrl, manifest, manifestString } = event;
if (!manifest && manifestString) {
manifest = JSON.parse(manifestString);
}
Store.dispatch(HistoryActions.addHistoryItem(manifestUrl, manifest));
});
};
_isExpoHost = host => {
return (
host === 'exp.host' ||
host === 'expo.io' ||
host === 'exp.direct' ||
host === 'expo.test' ||
host.endsWith('.exp.host') ||
host.endsWith('.expo.io') ||
host.endsWith('.exp.direct') ||
host.endsWith('.expo.test')
);
};
_isThirdPartyHosted = urlToCheck => {
if (!urlToCheck) {
return false;
}
const urlComponents = url.parse(urlToCheck);
const host = urlComponents.host;
if (!host) {
return false;
}
return !this._isExpoHost(host);
};
_initializeStateAsync = async () => {
try {
Store.dispatch(SettingsActions.loadSettings());
Store.dispatch(HistoryActions.loadHistory());
const storedSession = await LocalStorage.getSessionAsync();
if (storedSession) {
Store.dispatch(SessionActions.setSession(storedSession));
}
if (Platform.OS === 'ios') {
await Promise.all([Font.loadAsync(Ionicons.font)]);
} else {
await Promise.all([Font.loadAsync(Ionicons.font), Font.loadAsync(MaterialIcons.font)]);
}
} catch (e) {
// ..
} finally {
this.setState({ isReady: true }, async () => {
if (Platform.OS === 'ios') {
// if expo client is opened via deep linking, we'll get the url here
const initialUrl = await Linking.getInitialURL();
if (initialUrl) {
Linking.openURL(initialUrl);
}
}
});
}
};
render() {
if (!this.state.isReady) {
return <AppLoading />;
}
const { preferredAppearance, colorScheme } = this.props;
let theme = preferredAppearance === 'no-preference' ? colorScheme : preferredAppearance;
if (theme === 'no-preference') {
theme = 'light';
}
const backgroundColor = theme === 'dark' ? '#000000' : '#ffffff';
// Android below API 23 (Android 6.0) does not support 'dark-content' barStyle:
// - statusBar shouldn't be translucent
// - backgroundColor should be a color that would make status bar icons be visible
const translucent = !(Platform.OS === 'android' && Device.platformApiLevel < 23);
const statusBarBackgroundColor =
theme === 'dark' ? '#000000' : translucent ? '#ffffff' : '#00000088';
return (
<View style={[styles.container, { backgroundColor }]}>
<ActionSheetProvider>
<Navigation theme={theme} />
</ActionSheetProvider>
<StatusBar
translucent={translucent}
barStyle={theme === 'dark' ? 'light-content' : 'dark-content'}
backgroundColor={statusBarBackgroundColor}
/>
</View>
);
}
}
const styles = StyleSheet.create({
container: { flex: 1 },
});