aboutsummaryrefslogtreecommitdiff
path: root/src/App.tsx
blob: 8d823e1f6246932e39c56e84e59e048dc0ace149 (plain)
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
import {NavigationContainer} from '@react-navigation/native';
import React, {useState} from 'react';
import {Provider} from 'react-redux';
import {StreamChat} from 'stream-chat';
import {OverlayProvider} from 'stream-chat-react-native';
import {STREAM_CHAT_API} from './constants';
import {navigationRef} from './RootNavigation';
import Routes from './routes';
import store from './store/configureStore';
import {
  ChannelGroupedType,
  ChatContextType,
  LocalAttachmentType,
  LocalChannelType,
  LocalCommandType,
  LocalEventType,
  LocalMessageType,
  LocalResponseType,
  LocalUserType,
} from './types';
import {isIPhoneX} from './utils';

export const ChatContext = React.createContext({} as ChatContextType);

const App = () => {
  const [channel, setChannel] = useState<ChannelGroupedType>();
  const chatClient = StreamChat.getInstance<
    LocalAttachmentType,
    LocalChannelType,
    LocalCommandType,
    LocalEventType,
    LocalMessageType,
    LocalResponseType,
    LocalUserType
  >(STREAM_CHAT_API);
  return (
    /**
     * This is the provider from the redux store, it acts as the root provider for our application
     */
    <Provider store={store}>
      <NavigationContainer ref={navigationRef}>
        <OverlayProvider bottomInset={isIPhoneX() ? 80 : 50}>
          <ChatContext.Provider value={{channel, setChannel, chatClient}}>
            <Routes />
          </ChatContext.Provider>
        </OverlayProvider>
      </NavigationContainer>
    </Provider>
  );
};

export default App;