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

24 lines
539 B
React
Raw Normal View History

2019-01-10 02:06:23 +08:00
import React, { PureComponent } 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';
2019-01-10 02:06:23 +08:00
class NoteContainer extends PureComponent {
2018-12-13 04:10:27 +08:00
render() {
return (
<Note {...this.props}>
{this.props.children}
</Note>
);
}
}
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);