mirror of
https://github.com/mue/mue.git
synced 2026-07-13 20:13:47 +02:00
feat: new settings tab header, update keybinds and widget order ui
Co-authored-by: Alex Sparkes <turbomarshmello@gmail.com>
This commit is contained in:
22
src/components/modals/main/settings/Header.jsx
Normal file
22
src/components/modals/main/settings/Header.jsx
Normal file
@@ -0,0 +1,22 @@
|
||||
import variables from 'modules/variables';
|
||||
|
||||
import { PureComponent } from 'react';
|
||||
|
||||
import Slider from './Slider';
|
||||
import Switch from './Switch';
|
||||
|
||||
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='%' category={this.props.category} /><br/><br/></>
|
||||
: null}
|
||||
</>
|
||||
);
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user