2020-12-10 06:00:54 +08:00
|
|
|
import React from 'react';
|
|
|
|
import { withTracker } from 'meteor/react-meteor-data';
|
|
|
|
import ScreenshareButton from './component';
|
2022-02-07 21:22:52 +08:00
|
|
|
import { isScreenSharingEnabled } from '/imports/ui/services/features';
|
2020-12-10 06:00:54 +08:00
|
|
|
import {
|
|
|
|
isVideoBroadcasting,
|
|
|
|
dataSavingSetting,
|
|
|
|
} from '/imports/ui/components/screenshare/service';
|
|
|
|
|
2021-08-09 22:24:02 +08:00
|
|
|
const ScreenshareButtonContainer = (props) => <ScreenshareButton {...props} />;
|
2020-12-10 06:00:54 +08:00
|
|
|
|
|
|
|
/*
|
|
|
|
* All props, including the ones that are inherited from actions-bar
|
|
|
|
* isVideoBroadcasting,
|
|
|
|
* amIPresenter,
|
|
|
|
* screenSharingCheck,
|
|
|
|
* isMeteorConnected,
|
|
|
|
* screenshareDataSavingSetting,
|
|
|
|
*/
|
2023-03-27 23:36:25 +08:00
|
|
|
export default withTracker(() => ({
|
2020-12-10 06:00:54 +08:00
|
|
|
isVideoBroadcasting: isVideoBroadcasting(),
|
|
|
|
screenshareDataSavingSetting: dataSavingSetting(),
|
2022-02-07 21:22:52 +08:00
|
|
|
enabled: isScreenSharingEnabled(),
|
2023-03-27 23:36:25 +08:00
|
|
|
}))(ScreenshareButtonContainer);
|