bigbluebutton-Github/bigbluebutton-html5/imports/ui/components/banner-bar/container.jsx

21 lines
765 B
React
Raw Normal View History

2021-07-12 21:22:26 +08:00
import React, { useContext } from 'react';
2019-03-16 04:07:14 +08:00
import { Session } from 'meteor/session';
import { withTracker } from 'meteor/react-meteor-data';
import BannerComponent from './component';
2021-07-12 21:22:26 +08:00
import { NLayoutContext } from '../layout/context/context';
const BannerContainer = (props) => {
const newLayoutContext = useContext(NLayoutContext);
const { newLayoutContextState, newLayoutContextDispatch } = newLayoutContext;
const { input } = newLayoutContextState;
const { bannerBar } = input;
const { hasBanner } = bannerBar;
return <BannerComponent {...{ hasBanner, newLayoutContextDispatch, ...props }} />;
};
2019-03-16 04:07:14 +08:00
export default withTracker(() => ({
2019-03-19 02:10:27 +08:00
color: Session.get('bannerColor') || '#0F70D7',
text: Session.get('bannerText') || '',
2021-07-12 21:22:26 +08:00
}))(BannerContainer);