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

306 lines
10 KiB
React
Raw Normal View History

2020-03-19 22:19:40 +08:00
import React from 'react';
2017-01-27 23:41:11 +08:00
import cx from 'classnames';
import Button from '/imports/ui/components/button/component';
2017-01-27 23:41:11 +08:00
import Toggle from '/imports/ui/components/switch/component';
2017-04-11 05:11:48 +08:00
import { defineMessages, injectIntl } from 'react-intl';
2017-10-06 03:18:30 +08:00
import BaseMenu from '../base/component';
2018-01-08 14:17:18 +08:00
import { styles } from '../styles';
const MIN_FONTSIZE = 0;
2017-04-11 05:11:48 +08:00
const intlMessages = defineMessages({
applicationSectionTitle: {
id: 'app.submenu.application.applicationSectionTitle',
description: 'Application section title',
},
animationsLabel: {
id: 'app.submenu.application.animationsLabel',
description: 'animations label',
},
2017-04-11 05:11:48 +08:00
fontSizeControlLabel: {
id: 'app.submenu.application.fontSizeControlLabel',
2017-04-11 05:21:54 +08:00
description: 'label for font size ontrol',
2017-04-11 05:11:48 +08:00
},
increaseFontBtnLabel: {
id: 'app.submenu.application.increaseFontBtnLabel',
2017-04-11 05:21:54 +08:00
description: 'label for button to increase font size',
2017-04-11 05:11:48 +08:00
},
increaseFontBtnDesc: {
id: 'app.submenu.application.increaseFontBtnDesc',
2017-04-11 05:21:54 +08:00
description: 'adds descriptive context to increase font size button',
2017-04-11 05:11:48 +08:00
},
decreaseFontBtnLabel: {
id: 'app.submenu.application.decreaseFontBtnLabel',
2017-04-11 05:21:54 +08:00
description: 'label for button to reduce font size',
2017-04-11 05:11:48 +08:00
},
decreaseFontBtnDesc: {
id: 'app.submenu.application.decreaseFontBtnDesc',
2017-04-11 05:21:54 +08:00
description: 'adds descriptive context to decrease font size button',
2017-04-11 05:11:48 +08:00
},
languageLabel: {
id: 'app.submenu.application.languageLabel',
description: 'displayed label for changing application locale',
},
currentValue: {
id: 'app.submenu.application.currentSize',
description: 'current value label',
},
2017-06-03 03:25:02 +08:00
languageOptionLabel: {
id: 'app.submenu.application.languageOptionLabel',
description: 'default change language option when locales are available',
},
noLocaleOptionLabel: {
id: 'app.submenu.application.noLocaleOptionLabel',
description: 'default change language option when no locales available',
},
2017-04-11 05:11:48 +08:00
});
class ApplicationMenu extends BaseMenu {
static setHtmlFontSize(size) {
document.getElementsByTagName('html')[0].style.fontSize = size;
}
2016-05-06 05:14:39 +08:00
constructor(props) {
super(props);
2018-01-31 00:41:45 +08:00
this.state = {
settingsName: 'application',
settings: props.settings,
isLargestFontSize: false,
isSmallestFontSize: false,
2020-05-14 01:05:59 +08:00
showSelect: false,
fontSizes: [
'12px',
'14px',
'16px',
'18px',
'20px',
],
};
}
componentDidMount() {
this.setInitialFontSize();
}
2020-05-14 01:05:59 +08:00
componentDidUpdate() {
const { availableLocales } = this.props;
if (availableLocales && availableLocales.length > 0) {
// I used setTimout to create a smooth animation transition
setTimeout(() => this.setState({
showSelect: true,
}), 100);
2020-05-14 01:05:59 +08:00
}
}
componentWillUnmount() {
// fix Warning: Can't perform a React state update on an unmounted component
this.setState = (state, callback) => {
};
}
setInitialFontSize() {
const { fontSizes } = this.state;
const clientFont = document.getElementsByTagName('html')[0].style.fontSize;
const hasFont = fontSizes.includes(clientFont);
if (!hasFont) {
fontSizes.push(clientFont);
fontSizes.sort();
}
const fontIndex = fontSizes.indexOf(clientFont);
this.changeFontSize(clientFont);
this.setState({
isSmallestFontSize: fontIndex <= MIN_FONTSIZE,
isLargestFontSize: fontIndex >= (fontSizes.length - 1),
fontSizes,
});
}
handleUpdateFontSize(size) {
2017-06-03 03:25:02 +08:00
const obj = this.state;
obj.settings.fontSize = size;
this.handleUpdateSettings(this.state.settingsName, obj.settings);
}
changeFontSize(size) {
2017-06-03 03:25:02 +08:00
const obj = this.state;
obj.settings.fontSize = size;
this.setState(obj, () => {
ApplicationMenu.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.state.fontSizes;
const maxFontSize = availableFontSizes.length - 1;
const canIncreaseFontSize = availableFontSizes.indexOf(currentFontSize) < maxFontSize;
const fs = canIncreaseFontSize ? availableFontSizes.indexOf(currentFontSize) + 1 : maxFontSize;
this.changeFontSize(availableFontSizes[fs]);
if (fs === maxFontSize) this.setState({ isLargestFontSize: true });
this.setState({ isSmallestFontSize: false });
2017-06-03 03:25:02 +08:00
}
handleDecreaseFontSize() {
const currentFontSize = this.state.settings.fontSize;
const availableFontSizes = this.state.fontSizes;
const canDecreaseFontSize = availableFontSizes.indexOf(currentFontSize) > MIN_FONTSIZE;
2018-01-30 19:20:51 +08:00
const fs = canDecreaseFontSize ? availableFontSizes.indexOf(currentFontSize) - 1 : MIN_FONTSIZE;
this.changeFontSize(availableFontSizes[fs]);
if (fs === MIN_FONTSIZE) this.setState({ isSmallestFontSize: true });
this.setState({ isLargestFontSize: false });
2017-06-03 03:25:02 +08:00
}
2017-04-06 20:36:59 +08:00
handleSelectChange(fieldname, options, e) {
2017-06-03 03:25:02 +08:00
const 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() {
2018-01-30 19:20:51 +08:00
const { availableLocales, intl } = this.props;
const {
isLargestFontSize, isSmallestFontSize, settings, showSelect,
} = this.state;
2019-05-08 23:11:55 +08:00
// conversions can be found at http://pxtoem.com
const pixelPercentage = {
2019-05-08 23:11:55 +08:00
'12px': '75%',
// 14px is actually 87.5%, rounding up to show more friendly value
'14px': '90%',
'16px': '100%',
// 18px is actually 112.5%, rounding down to show more friendly value
'18px': '110%',
'20px': '125%',
};
2017-04-06 20:36:59 +08:00
const ariaValueLabel = intl.formatMessage(intlMessages.currentValue, { 0: `${pixelPercentage[settings.fontSize]}` });
2016-05-06 05:14:39 +08:00
return (
2018-12-06 01:42:31 +08:00
<div>
<div>
2017-04-19 03:14:39 +08:00
<h3 className={styles.title}>
{intl.formatMessage(intlMessages.applicationSectionTitle)}
</h3>
2017-01-27 23:41:11 +08:00
</div>
<div className={styles.form}>
<div className={styles.row}>
<div className={styles.col} aria-hidden="true">
<div className={styles.formElement}>
<label className={styles.label}>
{intl.formatMessage(intlMessages.animationsLabel)}
</label>
</div>
</div>
<div className={styles.col}>
<div className={cx(styles.formElement, styles.pullContentRight)}>
<Toggle
icons={false}
defaultChecked={this.state.settings.animations}
onChange={() => this.handleToggle('animations')}
ariaLabel={intl.formatMessage(intlMessages.animationsLabel)}
/>
</div>
</div>
</div>
2017-04-06 20:36:59 +08:00
<div className={styles.row}>
<div className={styles.col} aria-hidden="true">
2017-04-06 20:36:59 +08:00
<div className={styles.formElement}>
<label
className={styles.label}
htmlFor="langSelector"
aria-label={intl.formatMessage(intlMessages.languageLabel)}
>
{intl.formatMessage(intlMessages.languageLabel)}
2017-04-06 20:36:59 +08:00
</label>
</div>
</div>
<div className={styles.col}>
<span className={cx(styles.formElement, styles.pullContentRight)}>
2020-05-14 01:05:59 +08:00
{showSelect ? (
2017-11-25 04:26:03 +08:00
<select
id="langSelector"
defaultValue={this.state.settings.locale}
lang={this.state.settings.locale}
2017-11-25 04:26:03 +08:00
className={styles.select}
onChange={this.handleSelectChange.bind(this, 'locale', availableLocales)}
>
2018-01-30 19:20:51 +08:00
<option disabled>{intl.formatMessage(intlMessages.languageOptionLabel)}</option>
{availableLocales.map((locale, index) => (
<option key={index} value={locale.locale} lang={locale.locale}>
2017-11-25 04:26:03 +08:00
{locale.name}
2018-01-30 19:20:51 +08:00
</option>
))}
2017-11-25 04:26:03 +08:00
</select>
2020-05-14 01:05:59 +08:00
)
: (
<div className={styles.spinnerOverlay}>
<div className={styles.bounce1} />
<div className={styles.bounce2} />
<div />
</div>
)
}
</span>
2017-04-06 20:36:59 +08:00
</div>
</div>
2017-06-03 03:25:02 +08:00
<hr className={styles.separator} />
2017-01-27 23:41:11 +08:00
<div className={styles.row}>
<div className={styles.col}>
<div className={styles.formElement}>
<label className={styles.label}>
2017-04-11 05:11:48 +08:00
{intl.formatMessage(intlMessages.fontSizeControlLabel)}
2017-01-27 23:41:11 +08:00
</label>
</div>
</div>
<div className={styles.col}>
<div aria-hidden className={cx(styles.formElement, styles.pullContentCenter)}>
2017-01-27 23:41:11 +08:00
<label className={cx(styles.label, styles.bold)}>
{`${pixelPercentage[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.handleDecreaseFontSize()}
color="primary"
icon="substract"
2017-06-03 03:25:02 +08:00
circle
hideLabel
label={intl.formatMessage(intlMessages.decreaseFontBtnLabel)}
aria-label={`${intl.formatMessage(intlMessages.decreaseFontBtnLabel)}, ${ariaValueLabel}`}
disabled={isSmallestFontSize}
2017-03-09 22:34:33 +08:00
/>
</div>
<div className={styles.col}>
<Button
onClick={() => this.handleIncreaseFontSize()}
color="primary"
icon="add"
2017-06-03 03:25:02 +08:00
circle
hideLabel
label={intl.formatMessage(intlMessages.increaseFontBtnLabel)}
aria-label={`${intl.formatMessage(intlMessages.increaseFontBtnLabel)}, ${ariaValueLabel}`}
disabled={isLargestFontSize}
2017-03-09 22:34:33 +08:00
/>
</div>
</div>
2017-01-27 23:41:11 +08:00
</div>
</div>
2016-05-06 05:14:39 +08:00
</div>
</div>
</div>
);
}
2017-06-03 03:25:02 +08:00
}
2017-04-11 05:11:48 +08:00
export default injectIntl(ApplicationMenu);