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
|
import React from 'react';
import PropTypes from 'prop-types';
import { withStyles } from '@material-ui/core/styles';
import { bindActionCreators } from 'redux';
import { connect } from 'react-redux';
import contactData from 'ba-api/contactData';
import chatData from 'ba-api/chatData';
import { Helmet } from 'react-helmet';
import brand from 'ba-api/brand';
import { fetchAction, searchAction } from 'ba-actions/ContactActions';
import {
fetchChatAction,
showChatAction,
sendAction,
hideDetailAction,
deleteAction
} from 'ba-actions/ChatActions';
import { ContactList, ChatHeader, ChatRoom } from 'ba-components';
import styles from 'ba-components/Contact/contact-jss';
class Chat extends React.Component {
componentDidMount() {
this.props.fetchChatData(chatData);
this.props.fetchContactData(contactData);
}
render() {
const title = brand.name + ' - Chat App';
const description = brand.desc;
const {
classes,
dataContact,
showDetail,
hideDetail,
keyword,
search,
dataChat,
chatSelected,
sendMessage,
remove,
showMobileDetail
} = this.props;
return (
<div>
<Helmet>
<title>{title}</title>
<meta name="description" content={description} />
<meta property="og:title" content={title} />
<meta property="og:description" content={description} />
<meta property="twitter:title" content={title} />
<meta property="twitter:description" content={description} />
</Helmet>
<div className={classes.root}>
<ChatHeader
dataContact={dataContact}
chatSelected={chatSelected}
remove={remove}
showMobileDetail={showMobileDetail}
hideDetail={hideDetail}
/>
<ContactList
itemSelected={chatSelected}
dataContact={dataContact}
showDetail={showDetail}
search={search}
keyword={keyword}
/>
<ChatRoom
showMobileDetail={showMobileDetail}
dataChat={dataChat}
chatSelected={chatSelected}
dataContact={dataContact}
sendMessage={sendMessage}
/>
</div>
</div>
);
}
}
Chat.propTypes = {
classes: PropTypes.object.isRequired,
fetchContactData: PropTypes.func.isRequired,
fetchChatData: PropTypes.func.isRequired,
showDetail: PropTypes.func.isRequired,
hideDetail: PropTypes.func.isRequired,
sendMessage: PropTypes.func.isRequired,
search: PropTypes.func.isRequired,
remove: PropTypes.func.isRequired,
keyword: PropTypes.string.isRequired,
dataContact: PropTypes.object.isRequired,
dataChat: PropTypes.object.isRequired,
chatSelected: PropTypes.number.isRequired,
showMobileDetail: PropTypes.bool.isRequired,
};
const reducerContact = 'contact';
const reducerChat = 'chat';
const mapStateToProps = state => ({
force: state, // force state from reducer
dataContact: state.getIn([reducerContact, 'contactList']),
dataChat: state.getIn([reducerChat, 'activeChat']),
chatSelected: state.getIn([reducerChat, 'chatSelected']),
showMobileDetail: state.getIn([reducerChat, 'showMobileDetail']),
keyword: state.getIn([reducerContact, 'keywordValue']),
});
const dispatchToProps = dispatch => ({
fetchContactData: bindActionCreators(fetchAction, dispatch),
hideDetail: () => dispatch(hideDetailAction),
fetchChatData: bindActionCreators(fetchChatAction, dispatch),
showDetail: bindActionCreators(showChatAction, dispatch),
search: bindActionCreators(searchAction, dispatch),
sendMessage: bindActionCreators(sendAction, dispatch),
remove: () => dispatch(deleteAction),
});
const ChatMapped = connect(
mapStateToProps,
dispatchToProps
)(Chat);
export default withStyles(styles)(ChatMapped);
|