12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576 |
- import React from 'react';
- import { connect } from 'react-redux';
-
- import { IReduxState } from '../../../app/types';
- import { translate } from '../../../base/i18n/functions';
- import { IconMessage } from '../../../base/icons/svg';
- import AbstractButton, { IProps as AbstractButtonProps } from '../../../base/toolbox/components/AbstractButton';
-
- import ChatCounter from './ChatCounter';
-
- /**
- * The type of the React {@code Component} props of {@link ChatButton}.
- */
- interface IProps extends AbstractButtonProps {
-
- /**
- * Whether or not the chat feature is currently displayed.
- */
- _chatOpen: boolean;
- }
-
- /**
- * Implementation of a button for accessing chat pane.
- */
- class ChatButton extends AbstractButton<IProps> {
- accessibilityLabel = 'toolbar.accessibilityLabel.openChat';
- toggledAccessibilityLabel = 'toolbar.accessibilityLabel.closeChat';
- icon = IconMessage;
- label = 'toolbar.openChat';
- toggledLabel = 'toolbar.closeChat';
- tooltip = 'toolbar.openChat';
- toggledTooltip = 'toolbar.closeChat';
-
- /**
- * Indicates whether this button is in toggled state or not.
- *
- * @override
- * @protected
- * @returns {boolean}
- */
- _isToggled() {
- return this.props._chatOpen;
- }
-
- /**
- * Overrides AbstractButton's {@link Component#render()}.
- *
- * @override
- * @protected
- * @returns {boReact$Nodeolean}
- */
- render() {
- return (
- <div
- className = 'toolbar-button-with-badge'
- key = 'chatcontainer'>
- {super.render()}
- <ChatCounter />
- </div>
- );
- }
- }
-
- /**
- * Function that maps parts of Redux state tree into component props.
- *
- * @param {Object} state - Redux state.
- * @returns {Object}
- */
- const mapStateToProps = (state: IReduxState) => {
- return {
- _chatOpen: state['features/chat'].isOpen
- };
- };
-
- export default translate(connect(mapStateToProps)(ChatButton));
|