mirror of
https://gitcode.com/GitHub_Trending/ji/jitsi-meet.git
synced 2025-12-30 11:22:31 +00:00
- Change "features/chat" to support listening for new chat messages and storing them, removing that logic from conference.js. - Combine chat.scss and side_toolbar_container.css, and remove unused scss files. Chat is the only side panel so the two concepts have been merged. - Remove direct access to the chat feature from non-react and non-redux flows. - Modify the i18n translate function to take in an options object. By default the option "wait" is set to true, but that causes components to mount after the parent has been notified of an update, which means autoscrolling down to the latest rendered messages does not work. With "wait" set to false, the children will mount and then the parent will trigger componentDidUpdate. - Create react components for chat. Chat is the side panel plus the entiren chat feature. ChatInput is a child of Chat and is used for composing messages. ChatMessage displays one message and extends PureComponent to limit re-renders. - Fix a bug where the toolbar was not showing automatically when chat is closed and a new message is received. - Import react-transition-group to time the animation of the side panel showing/hiding and unmounting the Chat component. This gets around the issue of having to control autofocus if the component were always mounted and visibility toggled, but introduces not being able to store previous scroll state (without additional work or re-work).
70 lines
1.7 KiB
JavaScript
70 lines
1.7 KiB
JavaScript
// @flow
|
|
|
|
import React, { PureComponent } from 'react';
|
|
|
|
import { smileys } from '../smileys';
|
|
|
|
/**
|
|
* The type of the React {@code Component} props of {@link SmileysPanel}.
|
|
*/
|
|
type Props = {
|
|
|
|
/**
|
|
* Callback to invoke when a smiley is selected. The smiley will be passed
|
|
* back.
|
|
*/
|
|
onSmileySelect: Function
|
|
};
|
|
|
|
/**
|
|
* Implements a React Component showing smileys that can be be shown in chat.
|
|
*
|
|
* @extends Component
|
|
*/
|
|
class SmileysPanel extends PureComponent<Props> {
|
|
/**
|
|
* Implements React's {@link Component#render()}.
|
|
*
|
|
* @inheritdoc
|
|
* @returns {ReactElement}
|
|
*/
|
|
render() {
|
|
const smileyItems = Object.keys(smileys).map(smileyKey => {
|
|
const onSelectFunction = this._getOnSmileySelectCallback(smileyKey);
|
|
|
|
return (
|
|
<div
|
|
className = 'smileyContainer'
|
|
id = { smileyKey }
|
|
key = { smileyKey }>
|
|
<img
|
|
className = 'smiley'
|
|
id = { smileyKey }
|
|
onClick = { onSelectFunction }
|
|
src = { `images/smileys/${smileyKey}.svg` } />
|
|
</div>
|
|
);
|
|
});
|
|
|
|
return (
|
|
<div id = 'smileysContainer'>
|
|
{ smileyItems }
|
|
</div>
|
|
);
|
|
}
|
|
|
|
/**
|
|
* Helper method to bind a smiley's click handler.
|
|
*
|
|
* @param {string} smileyKey - The key from the {@link smileys} object
|
|
* that should be added to the chat message.
|
|
* @private
|
|
* @returns {Function}
|
|
*/
|
|
_getOnSmileySelectCallback(smileyKey) {
|
|
return () => this.props.onSmileySelect(smileys[smileyKey]);
|
|
}
|
|
}
|
|
|
|
export default SmileysPanel;
|