2023-04-28 05:31:11 +08:00
|
|
|
import React from 'react';
|
2021-10-14 22:11:37 +08:00
|
|
|
import { withTracker } from 'meteor/react-meteor-data';
|
2023-04-28 05:31:11 +08:00
|
|
|
import { layoutSelectInput, layoutDispatch } from '/imports/ui/components/layout/context';
|
2021-10-14 22:11:37 +08:00
|
|
|
import { injectIntl } from 'react-intl';
|
2023-07-18 19:54:36 +08:00
|
|
|
import ReactionsButton from './component';
|
2021-10-14 22:11:37 +08:00
|
|
|
import actionsBarService from '../service';
|
2023-07-19 22:36:34 +08:00
|
|
|
import UserReactionService from '/imports/ui/components/user-reaction/service';
|
2023-06-27 22:08:49 +08:00
|
|
|
import { SMALL_VIEWPORT_BREAKPOINT } from '/imports/ui/components/layout/enums';
|
2023-08-11 03:28:21 +08:00
|
|
|
import SettingsService from '/imports/ui/services/settings';
|
2021-10-14 22:11:37 +08:00
|
|
|
|
2023-07-18 19:54:36 +08:00
|
|
|
const ReactionsButtonContainer = ({ ...props }) => {
|
2023-04-28 05:31:11 +08:00
|
|
|
const layoutContextDispatch = layoutDispatch();
|
|
|
|
const sidebarContent = layoutSelectInput((i) => i.sidebarContent);
|
2021-10-14 22:11:37 +08:00
|
|
|
const { sidebarContentPanel } = sidebarContent;
|
2023-06-27 22:08:49 +08:00
|
|
|
|
|
|
|
const { width: browserWidth } = layoutSelectInput((i) => i.browser);
|
|
|
|
const isMobile = browserWidth <= SMALL_VIEWPORT_BREAKPOINT;
|
|
|
|
|
2021-10-14 22:11:37 +08:00
|
|
|
return (
|
2023-07-18 19:54:36 +08:00
|
|
|
<ReactionsButton {...{
|
2023-06-27 22:08:49 +08:00
|
|
|
layoutContextDispatch, sidebarContentPanel, isMobile, ...props,
|
2022-09-27 02:38:45 +08:00
|
|
|
}}
|
|
|
|
/>
|
2021-10-14 22:11:37 +08:00
|
|
|
);
|
|
|
|
};
|
|
|
|
|
2023-04-28 05:31:11 +08:00
|
|
|
export default injectIntl(withTracker(() => {
|
2021-10-14 22:11:37 +08:00
|
|
|
const currentUser = actionsBarService.currentUser();
|
2023-07-19 22:36:34 +08:00
|
|
|
const currentUserReaction = UserReactionService.getUserReaction(currentUser.userId);
|
2021-10-14 22:11:37 +08:00
|
|
|
|
|
|
|
return {
|
|
|
|
userId: currentUser.userId,
|
|
|
|
emoji: currentUser.emoji,
|
2023-07-19 22:36:34 +08:00
|
|
|
currentUserReaction: currentUserReaction.reaction,
|
2023-06-08 09:10:07 +08:00
|
|
|
raiseHand: currentUser.raiseHand,
|
2023-08-11 03:28:21 +08:00
|
|
|
autoCloseReactionsBar: SettingsService?.application?.autoCloseReactionsBar,
|
2021-10-14 22:11:37 +08:00
|
|
|
};
|
2023-07-18 19:54:36 +08:00
|
|
|
})(ReactionsButtonContainer));
|
2023-04-28 05:31:11 +08:00
|
|
|
|