Fix setting menu movement (#602)

main
Sean 6 years ago committed by Michael Fix
parent f6f0adee6b
commit 0934186ce9

@ -26,7 +26,9 @@ const WindowSettings = React.memo(
windowControls,
lineNumbers,
widthAdjustment,
watermark
watermark,
onWidthChanging,
onWidthChanged
}) => {
return (
<div className="settings-content">
@ -45,6 +47,8 @@ const WindowSettings = React.memo(
label="Padding (horiz)"
value={paddingHorizontal}
onChange={onChange.bind(null, 'paddingHorizontal')}
onMouseDown={onWidthChanging}
onMouseUp={onWidthChanged}
/>
</div>
<Toggle
@ -102,7 +106,8 @@ const WindowSettings = React.memo(
}
)
const TypeSettings = React.memo(({ onChange, font, size, lineHeight }) => {
const TypeSettings = React.memo(
({ onChange, font, size, lineHeight, onWidthChanging, onWidthChanged }) => {
return (
<div className="settings-content">
<FontSelect selected={font} onChange={onChange.bind(null, 'fontFamily')} />
@ -113,6 +118,8 @@ const TypeSettings = React.memo(({ onChange, font, size, lineHeight }) => {
maxValue={18}
step={0.5}
onChange={onChange.bind(null, 'fontSize')}
onMouseDown={onWidthChanging}
onMouseUp={onWidthChanged}
/>
<Slider
label="Line height"
@ -124,7 +131,8 @@ const TypeSettings = React.memo(({ onChange, font, size, lineHeight }) => {
/>
</div>
)
})
}
)
const MiscSettings = React.memo(({ format, reset }) => {
return (
@ -411,9 +419,12 @@ class Settings extends React.PureComponent {
isVisible: false,
selectedMenu: 'Window',
showPresets: false,
previousSettings: null
previousSettings: null,
widthChanging: false
}
settingsRef = React.createRef()
presetContentRef = React.createRef()
componentDidMount() {
@ -431,40 +442,14 @@ class Settings extends React.PureComponent {
selectMenu = selectedMenu => () => this.setState({ selectedMenu })
renderContent = () => {
switch (this.state.selectedMenu) {
case 'Window':
return (
<WindowSettings
onChange={this.handleChange}
windowTheme={this.props.windowTheme}
paddingHorizontal={this.props.paddingHorizontal}
paddingVertical={this.props.paddingVertical}
dropShadow={this.props.dropShadow}
dropShadowBlurRadius={this.props.dropShadowBlurRadius}
dropShadowOffsetY={this.props.dropShadowOffsetY}
windowControls={this.props.windowControls}
lineNumbers={this.props.lineNumbers}
widthAdjustment={this.props.widthAdjustment}
watermark={this.props.watermark}
/>
)
case 'Type':
return (
<TypeSettings
onChange={this.handleChange}
font={this.props.fontFamily}
size={this.props.fontSize}
lineHeight={this.props.lineHeight}
/>
)
case 'Misc':
return <MiscSettings format={this.props.format} reset={this.handleReset} />
default:
return null
}
handleWidthChanging = () => {
const rect = this.settingsRef.current.getBoundingClientRect()
this.settingPosition = { top: rect.bottom + 12, left: rect.left }
this.setState({ widthChanging: true })
}
handleWidthChanged = () => this.setState({ widthChanging: false })
handleChange = (key, value) => {
this.props.onChange(key, value)
this.setState({ previousSettings: null })
@ -533,12 +518,50 @@ class Settings extends React.PureComponent {
savePresets = () => savePresets(localStorage, this.state.presets.filter(p => p.custom))
renderContent = () => {
switch (this.state.selectedMenu) {
case 'Window':
return (
<WindowSettings
onChange={this.handleChange}
onWidthChanging={this.handleWidthChanging}
onWidthChanged={this.handleWidthChanged}
windowTheme={this.props.windowTheme}
paddingHorizontal={this.props.paddingHorizontal}
paddingVertical={this.props.paddingVertical}
dropShadow={this.props.dropShadow}
dropShadowBlurRadius={this.props.dropShadowBlurRadius}
dropShadowOffsetY={this.props.dropShadowOffsetY}
windowControls={this.props.windowControls}
lineNumbers={this.props.lineNumbers}
widthAdjustment={this.props.widthAdjustment}
watermark={this.props.watermark}
/>
)
case 'Type':
return (
<TypeSettings
onChange={this.handleChange}
onWidthChanging={this.handleWidthChanging}
onWidthChanged={this.handleWidthChanged}
font={this.props.fontFamily}
size={this.props.fontSize}
lineHeight={this.props.lineHeight}
/>
)
case 'Misc':
return <MiscSettings format={this.props.format} reset={this.handleReset} />
default:
return null
}
}
render() {
const { isVisible, selectedMenu, showPresets, presets, previousSettings } = this.state
const { isVisible, selectedMenu, showPresets, presets, previousSettings, widthChanging } = this.state
const { preset } = this.props
return (
<div className="settings-container">
<div className="settings-container" ref={this.settingsRef}>
<div
className={`settings-display ${isVisible ? 'is-visible' : ''}`}
onClick={this.toggleVisible}
@ -610,9 +633,9 @@ class Settings extends React.PureComponent {
.settings-settings {
display: none;
position: absolute;
top: 52px;
left: 0;
position: ${widthChanging ? 'fixed' : 'absolute'};
top: ${widthChanging ? this.settingPosition.top : 52}px;
left: ${widthChanging ? this.settingPosition.left : 0}px;
border: 2px solid ${COLORS.SECONDARY};
width: 324px;
border-radius: 3px;

@ -3,12 +3,12 @@ import React from 'react'
import { COLORS } from '../lib/constants'
class Slider extends React.Component {
constructor(props) {
super(props)
this.handleChange = this.handleChange.bind(this)
static defaultProps = {
onMouseDown: () => {},
onMouseUp: () => {}
}
handleChange(e) {
handleChange = e => {
this.props.onChange(`${e.target.value}${this.props.usePercentage ? '%' : 'px'}`)
}
@ -32,6 +32,8 @@ class Slider extends React.Component {
type="range"
defaultValue={this.props.value}
onChange={this.handleChange}
onMouseDown={this.props.onMouseDown}
onMouseUp={this.props.onMouseUp}
min={minValue}
max={maxValue}
step={step}

Loading…
Cancel
Save