-
Notifications
You must be signed in to change notification settings - Fork 15
/
Copy pathindex.js
91 lines (73 loc) · 2.34 KB
/
index.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
/*
* Chat component
*/
import Placeholder from './src/components/general/Placeholder';
import Loading from './src/components/general/Loading';
import WebView from './src/components/general/WebView';
import Analytics from './src/lib/analytics';
import AppUtil from './src/lib/util';
import AppAPI from './src/lib/api';
import ModuleConfig from './src/constants/config';
import * as Containers from './src/containers';
import * as ChatComponents from './src/chat';
import rootReducer from './src/redux/index';
import * as SideMenuActions from './src/redux/sidemenu/actions';
import * as UserActions from './src/redux/user/actions';
import AuthLogin from './src/auth/Login/LoginContainer';
import SelectServer from './src/auth/SelectServer';
import SamlLogin from './src/auth/SamlLogin';
import Register from './src/auth/Login/Register';
import Network from './src/network';
import MemberListView from './src/chat/members/MemberListView';
import MemberDetailView from './src/chat/members/MemberDetailView';
import SearchRoomView from './src/chat/ui/group/SearchRoomView';
import SearchListView from './src/chat/ui/group/SearchListView';
import MessageImageView from './src/chat/ui/room/MessageImageView';
import SupportGroup from './src/chat/ui/room/SupportGroup';
import ReplyMessageView from './src/chat/ui/room/ReplyMessageView';
import Menu from './src/containers/ui/Menu/MenuView';
import GroupList from './src/chat/groups/GroupView';
import RoomView from './src/chat/ui/room/RoomView';
import VideoPlayer from './src/containers/video/VideoPlayer';
import { NavbarMenuButton } from './src/containers/ui/NavbarMenuButton/NavbarMenuButtonContainer';
export {
// general components
Placeholder,
Loading,
WebView,
MemberListView,
SearchRoomView,
MemberDetailView,
SearchListView,
MessageImageView,
SupportGroup,
ReplyMessageView,
Menu,
GroupList,
NavbarMenuButton,
RoomView,
VideoPlayer,
// auth
AuthLogin,
SelectServer,
SamlLogin,
Register,
// utils
Analytics,
AppUtil,
AppAPI,
// constants
ModuleConfig,
// network
Network,
// redux
rootReducer,
SideMenuActions,
UserActions,
};
// export all UI components
export * from './src/components/ui/';
export * from './src/chat/ui/';
// export all themes
export * from './src/theme/';
// -- EOF --