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

25 lines
707 B
React
Raw Normal View History

2021-05-18 04:25:07 +08:00
import React, { useContext } 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-05-18 04:25:07 +08:00
import { NLayoutContext } from '../layout/context/context';
2018-12-13 04:10:27 +08:00
2021-05-18 04:25:07 +08:00
const NoteContainer = ({ children, ...props }) => {
const newLayoutContext = useContext(NLayoutContext);
const { newLayoutContextDispatch } = newLayoutContext;
return (
<Note {...{ newLayoutContextDispatch, ...props }}>
{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);