2017-01-27 23:41:11 +08:00
|
|
|
import React, { Component, PropTypes } from 'react';
|
|
|
|
import { FormattedMessage } from 'react-intl';
|
2016-09-01 21:56:41 +08:00
|
|
|
import Modal from '/imports/ui/components/modal/component';
|
2017-01-27 23:41:11 +08:00
|
|
|
import { Tab, Tabs, TabList, TabPanel } from 'react-tabs';
|
|
|
|
|
|
|
|
import ClosedCaptions from '/imports/ui/components/settings/submenus/closed-captions/container';
|
|
|
|
import Audio from '/imports/ui/components/settings/submenus/audio/container';
|
|
|
|
import Application from '/imports/ui/components/settings/submenus/application/container';
|
|
|
|
import Participants from '/imports/ui/components/settings/submenus/participants/container';
|
|
|
|
|
|
|
|
import Button from '../button/component';
|
|
|
|
import Icon from '../icon/component';
|
|
|
|
import styles from './styles';
|
|
|
|
import cx from 'classnames';
|
|
|
|
|
|
|
|
const propTypes = {
|
|
|
|
navbar: PropTypes.element,
|
|
|
|
sidebar: PropTypes.element,
|
|
|
|
sidebarRight: PropTypes.element,
|
|
|
|
media: PropTypes.element,
|
|
|
|
actionsbar: PropTypes.element,
|
|
|
|
captions: PropTypes.element,
|
|
|
|
modal: PropTypes.element,
|
|
|
|
};
|
2016-05-06 05:14:39 +08:00
|
|
|
|
2017-01-27 23:41:11 +08:00
|
|
|
export default class App extends Component {
|
2016-05-06 05:14:39 +08:00
|
|
|
constructor(props) {
|
|
|
|
super(props);
|
2017-01-27 23:41:11 +08:00
|
|
|
this.state = {
|
|
|
|
current: {
|
|
|
|
audio: {},
|
|
|
|
cc: {},
|
|
|
|
},
|
|
|
|
selectedTab: 4,
|
|
|
|
|
|
|
|
// handleSettingsApply: Service.updateSetting(),
|
2016-05-06 05:14:39 +08:00
|
|
|
};
|
|
|
|
|
2017-01-27 23:41:11 +08:00
|
|
|
this.handleUpdateSettings = this.handleUpdateSettings.bind(this);
|
|
|
|
this.handleSelect = this.handleSelect.bind(this);
|
2016-07-12 01:43:42 +08:00
|
|
|
}
|
|
|
|
|
2016-09-01 21:56:41 +08:00
|
|
|
render() {
|
2016-05-06 05:14:39 +08:00
|
|
|
return (
|
2016-09-01 21:56:41 +08:00
|
|
|
<Modal
|
|
|
|
title="Settings"
|
|
|
|
confirm={{
|
|
|
|
callback: (() => {
|
2017-01-27 23:41:11 +08:00
|
|
|
// this.commit(this.state.current);
|
|
|
|
// this.setState({ activeSubmenu: 0, focusSubmenu: 0 });
|
|
|
|
// console.log('SHOULD APPLY SETTINGS CHANGES');
|
|
|
|
// this.props.handleSaveFontState();
|
2016-09-01 21:56:41 +08:00
|
|
|
}),
|
2016-12-14 23:40:13 +08:00
|
|
|
label: 'Save',
|
2016-09-01 21:56:41 +08:00
|
|
|
description: 'Saves the changes and close the settings menu',
|
|
|
|
}}
|
|
|
|
dismiss={{
|
|
|
|
callback: (() => {
|
2017-01-27 23:41:11 +08:00
|
|
|
// this.setState({ activeSubmenu: 0, focusSubmenu: 0 });
|
|
|
|
// console.log('SHOULD DISCART SETTINGS CHANGES');
|
|
|
|
// this.props.handleRevertFontState();
|
2016-09-01 21:56:41 +08:00
|
|
|
}),
|
|
|
|
label: 'Cancel',
|
|
|
|
description: 'Discart the changes and close the settings menu',
|
|
|
|
}}>
|
2017-01-27 23:41:11 +08:00
|
|
|
{this.renderModalContent()}
|
2016-09-01 21:56:41 +08:00
|
|
|
</Modal>
|
2016-05-06 05:14:39 +08:00
|
|
|
);
|
|
|
|
}
|
2016-05-07 01:46:14 +08:00
|
|
|
|
2017-01-27 23:41:11 +08:00
|
|
|
handleUpdateSettings(key, newSettings) {
|
|
|
|
let settings = {
|
|
|
|
current: {},
|
|
|
|
};
|
|
|
|
settings.current[key] = newSettings;
|
|
|
|
this.setState(settings, () => console.log(this.state));
|
|
|
|
}
|
|
|
|
|
|
|
|
handleSelect(tab) {
|
|
|
|
this.setState({
|
|
|
|
selectedTab: tab,
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
|
|
|
renderModalContent() {
|
|
|
|
return (
|
|
|
|
<Tabs
|
|
|
|
className={styles.tabs}
|
|
|
|
onSelect={this.handleSelect}
|
|
|
|
selectedIndex={this.state.selectedTab}
|
|
|
|
>
|
|
|
|
<TabList className={styles.tabList}>
|
|
|
|
<Tab className={styles.tabSelector}>
|
|
|
|
<Icon iconName='audio' className={styles.icon}/>
|
|
|
|
<span>Audio</span>
|
|
|
|
</Tab>
|
|
|
|
<Tab className={styles.tabSelector}>
|
|
|
|
<Icon iconName='video' className={styles.icon}/>
|
|
|
|
Video
|
|
|
|
</Tab>
|
|
|
|
<Tab className={styles.tabSelector}>
|
|
|
|
<Icon iconName='application' className={styles.icon}/>
|
|
|
|
Application
|
|
|
|
</Tab>
|
|
|
|
<Tab className={styles.tabSelector}>
|
|
|
|
<Icon iconName='user' className={styles.icon}/>
|
|
|
|
Closed Captions
|
|
|
|
</Tab>
|
|
|
|
<Tab className={styles.tabSelector}>
|
|
|
|
<Icon iconName='user' className={styles.icon}/>
|
|
|
|
Participants
|
|
|
|
</Tab>
|
|
|
|
</TabList>
|
|
|
|
<TabPanel className={styles.tabPanel}>
|
|
|
|
<Audio handleUpdateSettings={this.handleUpdateSettings}/>
|
|
|
|
</TabPanel>
|
|
|
|
<TabPanel className={styles.tabPanel}>
|
|
|
|
<h2>Hello from Video</h2>
|
|
|
|
</TabPanel>
|
|
|
|
<TabPanel className={styles.tabPanel}>
|
|
|
|
<Application />
|
|
|
|
</TabPanel>
|
|
|
|
<TabPanel className={styles.tabPanel}>
|
|
|
|
<ClosedCaptions/>
|
|
|
|
</TabPanel>
|
|
|
|
<TabPanel className={styles.tabPanel}>
|
|
|
|
<Participants/>
|
|
|
|
</TabPanel>
|
|
|
|
</Tabs>
|
|
|
|
);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
App.propTypes = propTypes;
|