bigbluebutton-Github/bigbluebutton-html5/imports/ui/components/settings/submenus/application/component.jsx

195 lines
6.9 KiB
React
Raw Normal View History

2016-05-06 05:14:39 +08:00
import React from 'react';
import Modal from 'react-modal';
import Icon from '/imports/ui/components/icon/component';
import Button from '/imports/ui/components/button/component';
import BaseMenu from '../base/component';
2016-05-06 05:14:39 +08:00
import ReactDOM from 'react-dom';
2017-01-27 23:41:11 +08:00
import cx from 'classnames';
import styles from '../styles.scss';
2017-01-27 23:41:11 +08:00
import Toggle from '/imports/ui/components/switch/component';
const MIN_FONTSIZE = 0;
const MAX_FONTSIZE = 4;
2016-05-06 05:14:39 +08:00
export default class ApplicationMenu extends BaseMenu {
constructor(props) {
super(props);
this.state = {
settingsName: 'application',
settings: props.settings,
};
}
handleUpdateFontSize(size) {
let obj = this.state;
obj.settings.fontSize = size;
this.handleUpdateSettings(this.state.settingsName, obj.settings);
}
setHtmlFontSize(size) {
document.getElementsByTagName('html')[0].style.fontSize = size;
};
changeFontSize(size) {
let obj = this.state;
obj.settings.fontSize = size;
this.setState(obj, () => {
this.setHtmlFontSize(this.state.settings.fontSize);
this.handleUpdateFontSize(this.state.settings.fontSize);
});
2016-05-06 05:14:39 +08:00
}
handleIncreaseFontSize() {
const currentFontSize = this.state.settings.fontSize;
const availableFontSizes = this.props.fontSizes;
const canIncreaseFontSize = availableFontSizes.indexOf(currentFontSize) < MAX_FONTSIZE;
let fs = (canIncreaseFontSize) ? availableFontSizes.indexOf(currentFontSize) + 1 : MAX_FONTSIZE;
this.changeFontSize(availableFontSizes[fs]);
};
handleDecreaseFontSize() {
const currentFontSize = this.state.settings.fontSize;
const availableFontSizes = this.props.fontSizes;
const canDecreaseFontSize = availableFontSizes.indexOf(currentFontSize) > MIN_FONTSIZE;
let fs = (canDecreaseFontSize) ? availableFontSizes.indexOf(currentFontSize) - 1 : MIN_FONTSIZE;
this.changeFontSize(availableFontSizes[fs]);
};
2017-04-06 20:36:59 +08:00
handleSelectChange(fieldname, options, e) {
let obj = this.state;
obj.settings[fieldname] = e.target.value.toLowerCase().replace('_', '-');
2017-04-06 20:36:59 +08:00
this.handleUpdateSettings('application', obj.settings);
}
2017-01-27 23:41:11 +08:00
render() {
2017-04-06 20:36:59 +08:00
const {
availableLocales,
} = this.props;
2016-05-06 05:14:39 +08:00
return (
2017-01-27 23:41:11 +08:00
<div className={styles.tabContent}>
<div className={styles.header}>
<h3 className={styles.title}>Application</h3>
</div>
<div className={styles.form}>
<div className={styles.row}>
<div className={styles.col}>
<div className={styles.formElement}>
<label className={styles.label}>
Audio notifications for chat
</label>
</div>
</div>
<div className={styles.col}>
<div className={cx(styles.formElement, styles.pullContentRight)}>
<Toggle
icons={false}
defaultChecked={this.state.settings.chatAudioNotifications}
onChange={() => this.handleToggle('chatAudioNotifications')} />
2017-01-27 23:41:11 +08:00
</div>
</div>
</div>
2017-01-27 23:41:11 +08:00
<div className={styles.row}>
<div className={styles.col}>
<div className={styles.formElement}>
<label className={styles.label}>
Push notifications for chat
</label>
</div>
</div>
<div className={styles.col}>
<div className={cx(styles.formElement, styles.pullContentRight)}>
<Toggle
icons={false}
defaultChecked={this.state.settings.chatPushNotifications}
onChange={() => this.handleToggle('chatPushNotifications')} />
2017-01-27 23:41:11 +08:00
</div>
</div>
</div>
2017-04-06 20:36:59 +08:00
<div className={styles.row}>
<div className={styles.col}>
<div className={styles.formElement}>
<label className={styles.label}>
Application Language
</label>
</div>
</div>
<div className={styles.col}>
<div className={cx(styles.formElement, styles.pullContentRight)}>
<select
defaultValue={this.state.settings.locale}
className={styles.select}
onChange={this.handleSelectChange.bind(this, 'locale', availableLocales)}>
<option>
{ availableLocales &&
availableLocales.length ?
'Choose language' :
'No active locales' }
</option>
{availableLocales ? availableLocales.map((locale, index) =>
<option key={index} value={locale.locale}>
{locale.name}
</option>
) : null }
</select>
</div>
</div>
</div>
2017-01-27 23:41:11 +08:00
<hr className={styles.separator}/>
<div className={styles.row}>
<div className={styles.col}>
<div className={styles.formElement}>
<label className={styles.label}>
Font size
</label>
</div>
</div>
<div className={styles.col}>
<div className={cx(styles.formElement, styles.pullContentCenter)}>
<label className={cx(styles.label, styles.bold)}>
{this.state.settings.fontSize}
2017-01-27 23:41:11 +08:00
</label>
</div>
</div>
<div className={styles.col}>
<div className={cx(styles.formElement, styles.pullContentRight)}>
2017-03-09 22:34:33 +08:00
<div className={styles.pullContentRight}>
<div className={styles.col}>
<Button
onClick={() => this.handleIncreaseFontSize()}
color={'success'}
2017-03-10 00:49:28 +08:00
icon={'add'}
2017-03-09 22:34:33 +08:00
circle={true}
tabIndex='0'
hideLabel={true}
label={'Increase Font'}
aria-labelledby={'sizeUpLabel'}
aria-describedby={'sizeUpDesc'}
/>
<div id='sizeUpLabel' hidden>Font size up</div>
</div>
<div className={styles.col}>
<Button
onClick={() => this.handleDecreaseFontSize()}
color={'success'}
2017-03-10 00:49:28 +08:00
icon={'substract'}
2017-03-09 22:34:33 +08:00
circle={true}
tabIndex='0'
hideLabel={true}
label={'Decrease Font'}
aria-labelledby={'sizeDownLabel'}
aria-describedby={'sizeDownDesc'}
/>
<div id='sizeUpDesc' hidden>Increases the font size of the application.</div>
</div>
</div>
2017-01-27 23:41:11 +08:00
</div>
</div>
2016-05-06 05:14:39 +08:00
</div>
</div>
</div>
);
}
};