12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970 |
- // @flow
-
- import { CHAT_ENABLED, getFeatureFlag } from '../../../base/flags';
- import { IconChat, IconChatUnread } from '../../../base/icons';
- import { connect } from '../../../base/redux';
- import {
- AbstractButton,
- type AbstractButtonProps
- } from '../../../base/toolbox/components';
- import { openChat } from '../../actions.native';
- import { getUnreadCount } from '../../functions';
-
- type Props = AbstractButtonProps & {
-
- /**
- * The unread message count.
- */
- _unreadMessageCount: number,
-
- dispatch: Function
- };
-
- /**
- * Implements an {@link AbstractButton} to open the chat screen on mobile.
- */
- class ChatButton extends AbstractButton<Props, *> {
- accessibilityLabel = 'toolbar.accessibilityLabel.chat';
- icon = IconChat;
- label = 'toolbar.chat';
- toggledIcon = IconChatUnread;
-
- /**
- * Handles clicking / pressing the button, and opens the appropriate dialog.
- *
- * @private
- * @returns {void}
- */
- _handleClick() {
- this.props.dispatch(openChat());
- }
-
- /**
- * Renders the button toggled when there are unread messages.
- *
- * @protected
- * @returns {boolean}
- */
- _isToggled() {
- return Boolean(this.props._unreadMessageCount);
- }
- }
-
- /**
- * Maps part of the redux state to the component's props.
- *
- * @param {Object} state - The Redux state.
- * @param {Object} ownProps - The properties explicitly passed to the component instance.
- * @returns {Props}
- */
- function _mapStateToProps(state, ownProps) {
- const enabled = getFeatureFlag(state, CHAT_ENABLED, true);
- const { visible = enabled } = ownProps;
-
- return {
- _unreadMessageCount: getUnreadCount(state),
- visible
- };
- }
-
- export default connect(_mapStateToProps)(ChatButton);
|