import React, { Component } from 'react'; import Modal from '/imports/ui/components/modal/fullscreen/component'; import { Tab, Tabs, TabList, TabPanel } from 'react-tabs'; import { defineMessages, injectIntl, intlShape } from 'react-intl'; import ClosedCaptions from '/imports/ui/components/settings/submenus/closed-captions/component'; import Application from '/imports/ui/components/settings/submenus/application/container'; import _ from 'lodash'; import PropTypes from 'prop-types'; import { withModalMounter } from '../modal/service'; import Icon from '../icon/component'; import { styles } from './styles'; const intlMessages = defineMessages({ appTabLabel: { id: 'app.settings.applicationTab.label', description: 'label for application tab', }, audioTabLabel: { id: 'app.settings.audioTab.label', description: 'label for audio tab', }, videoTabLabel: { id: 'app.settings.videoTab.label', description: 'label for video tab', }, closecaptionTabLabel: { id: 'app.settings.closedcaptionTab.label', description: 'label for closed-captions tab', }, usersTabLabel: { id: 'app.settings.usersTab.label', description: 'label for participants tab', }, SettingsLabel: { id: 'app.settings.main.label', description: 'General settings label', }, CancelLabel: { id: 'app.settings.main.cancel.label', description: 'Discard the changes and close the settings menu', }, CancelLabelDesc: { id: 'app.settings.main.cancel.label.description', description: 'Settings modal cancel button description', }, SaveLabel: { id: 'app.settings.main.save.label', description: 'Save the changes and close the settings menu', }, SaveLabelDesc: { id: 'app.settings.main.save.label.description', description: 'Settings modal save button label', }, }); const propTypes = { intl: intlShape.isRequired, video: PropTypes.object.isRequired, application: PropTypes.object.isRequired, cc: PropTypes.object.isRequired, participants: PropTypes.object.isRequired, updateSettings: PropTypes.func.isRequired, availableLocales: PropTypes.object.isRequired, mountModal: PropTypes.func.isRequired, locales: PropTypes.array.isRequired, }; class Settings extends Component { static setHtmlFontSize(size) { document.getElementsByTagName('html')[0].style.fontSize = size; } constructor(props) { super(props); const video = props.video; const application = props.application; const cc = props.cc; const participants = props.participants; this.state = { current: { video: _.clone(video), application: _.clone(application), cc: _.clone(cc), participants: _.clone(participants), }, saved: { video: _.clone(video), application: _.clone(application), cc: _.clone(cc), participants: _.clone(participants), }, selectedTab: 0, }; this.updateSettings = props.updateSettings; this.handleUpdateSettings = this.handleUpdateSettings.bind(this); this.handleSelectTab = this.handleSelectTab.bind(this); } componentWillMount() { this.props.availableLocales.then((locales) => { this.setState({ availableLocales: locales }); }); } handleUpdateSettings(key, newSettings) { const settings = this.state; settings.current[key] = newSettings; this.setState(settings); } handleSelectTab(tab) { this.setState({ selectedTab: tab, }); } renderModalContent() { const { intl, } = this.props; return ( {intl.formatMessage(intlMessages.appTabLabel)} {/* */} {/* */} {/* {intl.formatMessage(intlMessages.videoTabLabel)} */} {/* */} {intl.formatMessage(intlMessages.closecaptionTabLabel)} {/* { isModerator ? */} {/* */} {/* */} {/* {intl.formatMessage(intlMessages.usersTabLabel)} */} {/* */} {/* : null } */} {/* */} {/* */} {/* { isModerator ? */} {/* */} {/* */} {/* */} {/* : null } */} ); } render() { const intl = this.props.intl; return ( { this.props.mountModal(null); this.updateSettings(this.state.current); }), label: intl.formatMessage(intlMessages.SaveLabel), description: intl.formatMessage(intlMessages.SaveLabelDesc), }} dismiss={{ callback: (() => { Settings.setHtmlFontSize(this.state.saved.application.fontSize); }), label: intl.formatMessage(intlMessages.CancelLabel), description: intl.formatMessage(intlMessages.CancelLabelDesc), }} > {this.renderModalContent()} ); } } Settings.propTypes = propTypes; export default withModalMounter(injectIntl(Settings));