bigbluebutton-Github/bigbluebutton-html5/imports/ui/components/note/container.jsx

27 lines
748 B
React
Raw Normal View History

import React from 'react';
2018-12-13 04:10:27 +08:00
import { withTracker } from 'meteor/react-meteor-data';
import Note from './component';
import NoteService from './service';
2021-09-11 04:48:52 +08:00
import { layoutSelectInput, layoutDispatch } from '../layout/context';
2018-12-13 04:10:27 +08:00
2021-05-18 04:25:07 +08:00
const NoteContainer = ({ children, ...props }) => {
2021-09-11 04:48:52 +08:00
const cameraDock = layoutSelectInput((i) => i.cameraDock);
2021-08-19 21:05:25 +08:00
const { isResizing } = cameraDock;
2021-09-11 04:48:52 +08:00
const layoutContextDispatch = layoutDispatch();
2021-05-18 04:25:07 +08:00
return (
2021-08-19 21:05:25 +08:00
<Note {...{ layoutContextDispatch, isResizing, ...props }}>
2021-05-18 04:25:07 +08:00
{children}
</Note>
);
};
2018-12-13 04:10:27 +08:00
2019-01-10 02:06:23 +08:00
export default withTracker(() => {
const isLocked = NoteService.isLocked();
const isRTL = document.documentElement.getAttribute('dir') === 'rtl';
2018-12-13 04:10:27 +08:00
return {
isLocked,
isRTL,
2018-12-13 04:10:27 +08:00
};
2019-01-10 02:06:23 +08:00
})(NoteContainer);