meses-messaging
Version:
Meses messaging SDK in JavaScript
92 lines (68 loc) • 4.04 kB
JavaScript
;
Object.defineProperty(exports, "__esModule", {
value: true
});
var _createClass = function () { function defineProperties(target, props) { for (var i = 0; i < props.length; i++) { var descriptor = props[i]; descriptor.enumerable = descriptor.enumerable || false; descriptor.configurable = true; if ("value" in descriptor) descriptor.writable = true; Object.defineProperty(target, descriptor.key, descriptor); } } return function (Constructor, protoProps, staticProps) { if (protoProps) defineProperties(Constructor.prototype, protoProps); if (staticProps) defineProperties(Constructor, staticProps); return Constructor; }; }();
var _react = require('react');
var _react2 = _interopRequireDefault(_react);
var _ConversationEntry = require('./ConversationEntry');
var _ConversationEntry2 = _interopRequireDefault(_ConversationEntry);
function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }
function _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError("Cannot call a class as a function"); } }
function _possibleConstructorReturn(self, call) { if (!self) { throw new ReferenceError("this hasn't been initialised - super() hasn't been called"); } return call && (typeof call === "object" || typeof call === "function") ? call : self; }
function _inherits(subClass, superClass) { if (typeof superClass !== "function" && superClass !== null) { throw new TypeError("Super expression must either be null or a function, not " + typeof superClass); } subClass.prototype = Object.create(superClass && superClass.prototype, { constructor: { value: subClass, enumerable: false, writable: true, configurable: true } }); if (superClass) Object.setPrototypeOf ? Object.setPrototypeOf(subClass, superClass) : subClass.__proto__ = superClass; }
var styles = {
'conversationListBody': 'styles-conversationListBody-3q4Ui'
};
var ConversationListBody = function (_React$Component) {
_inherits(ConversationListBody, _React$Component);
function ConversationListBody() {
_classCallCheck(this, ConversationListBody);
return _possibleConstructorReturn(this, (ConversationListBody.__proto__ || Object.getPrototypeOf(ConversationListBody)).call(this));
}
_createClass(ConversationListBody, [{
key: 'componentDidMount',
value: function componentDidMount() {
var _props = this.props,
loadMoreConversation = _props.loadMoreConversation,
lastScrollTop = _props.lastScrollTop;
this.container.scrollTop = lastScrollTop;
this.container.addEventListener('scroll', function () {
if (this.container.scrollTop == this.container.scrollHeight - this.container.offsetHeight) loadMoreConversation();
}.bind(this));
}
}, {
key: 'render',
value: function render() {
var _this2 = this;
var conversationList = this.props.conversationList;
var conversationEntries = conversationList.map(function (x) {
return _react2.default.createElement(_ConversationEntry2.default, {
key: x.conversationName,
name: x.conversationName,
title: x.title ? x.title : x.conversationName,
lastMessage: x.lastMessageText,
time: x.lastMessageTime,
unreadCount: x.unreadCount,
onClick: _this2._handleConversationEntryOnClick.bind(_this2) });
});
return _react2.default.createElement(
'div',
{
className: styles.conversationListBody,
ref: function ref(x) {
return _this2.container = x;
} },
conversationEntries
);
}
}, {
key: '_handleConversationEntryOnClick',
value: function _handleConversationEntryOnClick(conversationName) {
var conversationEntryOnClick = this.props.conversationEntryOnClick;
conversationEntryOnClick(conversationName, this.container.scrollTop);
}
}]);
return ConversationListBody;
}(_react2.default.Component);
exports.default = ConversationListBody;