mirror of
https://github.com/mue/mue.git
synced 2026-06-12 11:38:53 +02:00
25 lines
932 B
JavaScript
25 lines
932 B
JavaScript
import variables from 'modules/variables';
|
|
|
|
import { PureComponent } from 'react';
|
|
|
|
import Slider from './Slider';
|
|
import Switch from './Switch';
|
|
|
|
import { values } from 'modules/helpers/settings/modals';
|
|
|
|
export default class Header extends PureComponent {
|
|
render() {
|
|
const getMessage = (text) => variables.language.getMessage(variables.languagecode, text);
|
|
|
|
return (
|
|
<>
|
|
<h2>{this.props.title}</h2>
|
|
<Switch name={this.props.setting} text={getMessage('modals.main.settings.enabled')} category={this.props.category} element={this.props.element || null} />
|
|
{this.props.zoomSetting ?
|
|
<><Slider title={getMessage('modals.main.settings.sections.appearance.accessibility.widget_zoom')} name={this.props.zoomSetting} min='10' max='400' default='100' display='%' marks={values('zoom')} category={this.props.zoomCategory || this.props.category}/></>
|
|
: <br/>}
|
|
</>
|
|
);
|
|
}
|
|
}
|