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';
|
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';
|
2023-11-30 21:42:11 +08:00
|
|
|
import Auth from '/imports/ui/services/auth';
|
|
|
|
import useCurrentUser from '/imports/ui/core/hooks/useCurrentUser';
|
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;
|
|
|
|
|
2023-11-30 21:42:11 +08:00
|
|
|
const { data: currentUserData } = useCurrentUser((user) => ({
|
|
|
|
emoji: user.emoji,
|
|
|
|
raiseHand: user.raiseHand,
|
|
|
|
}));
|
|
|
|
const currentUser = {
|
|
|
|
userId: Auth.userID,
|
|
|
|
emoji: currentUserData?.emoji,
|
|
|
|
raiseHand: currentUserData?.raiseHand,
|
|
|
|
};
|
|
|
|
|
2021-10-14 22:11:37 +08:00
|
|
|
return (
|
2023-07-18 19:54:36 +08:00
|
|
|
<ReactionsButton {...{
|
2023-11-30 21:42:11 +08:00
|
|
|
layoutContextDispatch, sidebarContentPanel, isMobile, ...currentUser, ...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(() => {
|
2023-11-30 21:42:11 +08:00
|
|
|
const currentUserReaction = UserReactionService.getUserReaction(Auth.userID);
|
2021-10-14 22:11:37 +08:00
|
|
|
|
|
|
|
return {
|
2023-07-19 22:36:34 +08:00
|
|
|
currentUserReaction: currentUserReaction.reaction,
|
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
|
|
|
|