import FormControlLabel from '@mui/material/FormControlLabel'; import Slider from '@mui/material/Slider'; import Switch from '@mui/material/Switch'; import Tab from '@mui/material/Tab'; import Tabs from '@mui/material/Tabs'; import Typography from '@mui/material/Typography'; import ColorIcon from '@mui/icons-material/ColorLens'; import GradientIcon from '@mui/icons-material/Gradient'; import ImageIcon from '@mui/icons-material/Landscape'; import React from 'react'; import type { BackgroundApi } from '../types/api'; import type { BackgroundControlsProps } from '../types/controls'; import { ModeEnum } from '../types/ModeEnum'; import ColorComponent from './sub/Color'; import ImageComponent from './sub/Image'; import LinearGradientComponent from './sub/LinearGradient'; interface BackgroundDefaultControlsState { mode?: ModeEnum; } class Inner extends React.Component< BackgroundControlsProps & BackgroundApi, BackgroundDefaultControlsState > { constructor(props: BackgroundControlsProps & BackgroundApi) { super(props); this.state = { mode: props.defaultMode, }; } public render() { const { data: { hasPadding = this.props.defaultHasPadding, modeFlag = this.props.defaultModeFlag, darken = this.props.defaultDarken, lighten = this.props.defaultLighten, }, } = this.props; const darkenFinal = this.props.darkenPreview !== undefined ? this.props.darkenPreview : darken ?? 0; const lightenFinal = this.props.lightenPreview !== undefined ? this.props.lightenPreview : lighten ?? 0; const tabs = this.props.enabledModes ? [ ...((this.props.enabledModes & ModeEnum.IMAGE_MODE_FLAG) > 0 ? [ 0 ? 'secondary' : undefined } /> } label={this.props.translations?.imageMode} value={ModeEnum.IMAGE_MODE_FLAG} key={ModeEnum.IMAGE_MODE_FLAG} />, ] : []), ...((this.props.enabledModes & ModeEnum.COLOR_MODE_FLAG) > 0 ? [ 0 ? 'secondary' : undefined } /> } label={this.props.translations?.colorMode} value={ModeEnum.COLOR_MODE_FLAG} key={ModeEnum.COLOR_MODE_FLAG} />, ] : []), (this.props.enabledModes & ModeEnum.GRADIENT_MODE_FLAG) > 0 ? [ 0 ? 'secondary' : undefined } /> } label={this.props.translations?.gradientMode} value={ModeEnum.GRADIENT_MODE_FLAG} key={ModeEnum.GRADIENT_MODE_FLAG} />, ] : [], ] : []; return (
{this.props.enabledModes ? ( {tabs} ) : null} {/* Render one of the panels here - image / mono color / gradient */} {this.renderUI()}
{/* Render the common UI here for each tab - darken / lighten / padding */}
{this.props.translations?.darken} ( {(darkenFinal * 100).toFixed(0)} %) this.props.handleChangeDarkenPreview( value instanceof Array ? value[0] : value ) } onChangeCommitted={this.props.handleChangeDarken} step={0.01} min={0} max={1} />
{this.props.translations?.lighten} ( {(lightenFinal * 100).toFixed(0)} %) this.props.handleChangeLightenPreview( value instanceof Array ? value[0] : value ) } onChangeCommitted={this.props.handleChangeLighten} step={0.01} min={0} max={1} />
} label={this.props.translations?.usePadding} />
); } renderModeSwitch = () => { const { data: { modeFlag = this.props.defaultModeFlag }, } = this.props; return ( } label={this.props.translations?.onOff} /> ); }; renderUI = () => { switch (this.state.mode) { case ModeEnum.COLOR_MODE_FLAG: return ( <> {/* Render the on/off switch for the panel */} {this.renderModeSwitch()} {/* Render the Background mono color controls */} ); case ModeEnum.GRADIENT_MODE_FLAG: return ( {/* Render the on/off switch for the panel */} {this.renderModeSwitch()} {/* Render the Background gradient color controls */} ); case ModeEnum.IMAGE_MODE_FLAG: default: return ( {/* Render the on/off switch for the panel */} {this.renderModeSwitch()} {/* Render the Background image controls */} ); } }; ensureModeOn = (mode: ModeEnum) => () => { const { data: { modeFlag = this.props.defaultModeFlag }, } = this.props; if (modeFlag && (modeFlag & mode) === 0) { this.props.handleChangeModeSwitch(mode, modeFlag)(); } }; // eslint-disable-next-line @typescript-eslint/no-explicit-any handleChangeMode = (e: React.ChangeEvent, mode: number) => { this.setState({ mode }); }; } export default Inner;