BasicStringInput now undos un Escape

This commit is contained in:
Aria Minaei 2021-11-14 13:10:55 +01:00
parent 786f645d0c
commit 4d7a4d7f25

View file

@ -1,7 +1,8 @@
import styled from 'styled-components' import styled from 'styled-components'
import type {MutableRefObject} from 'react' import type {MutableRefObject} from 'react'
import React, {useMemo, useRef, useState} from 'react' import React, {useMemo, useRef} from 'react'
import mergeRefs from 'react-merge-refs' import mergeRefs from 'react-merge-refs'
import useRefAndState from '@theatre/studio/utils/useRefAndState'
const Input = styled.input.attrs({type: 'text'})` const Input = styled.input.attrs({type: 'text'})`
background: transparent; background: transparent;
@ -62,12 +63,12 @@ const BasicStringInput: React.FC<{
* before this, so use this for UI purposes such as closing a popover. * before this, so use this for UI purposes such as closing a popover.
*/ */
onBlur?: () => void onBlur?: () => void
}> = (propsA) => { }> = (props) => {
const [stateA, setState] = useState<IState>({mode: 'noFocus'}) const [stateRef] = useRefAndState<IState>({mode: 'noFocus'})
const isValid = propsA.isValid ?? alwaysValid const isValid = props.isValid ?? alwaysValid
const refs = useRef({state: stateA, props: propsA}) const propsRef = useRef(props)
refs.current = {state: stateA, props: propsA} propsRef.current = props
const inputRef = useRef<HTMLInputElement | null>(null) const inputRef = useRef<HTMLInputElement | null>(null)
@ -75,41 +76,42 @@ const BasicStringInput: React.FC<{
const inputChange = (e: React.ChangeEvent) => { const inputChange = (e: React.ChangeEvent) => {
const target = e.target as HTMLInputElement const target = e.target as HTMLInputElement
const {value} = target const {value} = target
const curState = refs.current.state as IState_EditingViaKeyboard const curState = stateRef.current as IState_EditingViaKeyboard
setState({...curState, currentEditedValueInString: value}) stateRef.current = {...curState, currentEditedValueInString: value}
if (!isValid(value)) return if (!isValid(value)) return
refs.current.props.temporarilySetValue(value) propsRef.current.temporarilySetValue(value)
} }
const onBlur = () => { const onBlur = () => {
if (refs.current.state.mode === 'editingViaKeyboard') { if (stateRef.current.mode === 'editingViaKeyboard') {
commitKeyboardInput() commitKeyboardInput()
setState({mode: 'noFocus'}) stateRef.current = {mode: 'noFocus'}
} }
if (propsA.onBlur) propsA.onBlur() propsRef.current.onBlur?.()
} }
const commitKeyboardInput = () => { const commitKeyboardInput = () => {
const curState = refs.current.state as IState_EditingViaKeyboard const curState = stateRef.current as IState_EditingViaKeyboard
const value = curState.currentEditedValueInString const value = curState.currentEditedValueInString
if (!isValid(value)) { if (!isValid(value)) {
refs.current.props.discardTemporaryValue() propsRef.current.discardTemporaryValue()
} else { } else {
if (curState.valueBeforeEditing === value) { if (curState.valueBeforeEditing === value) {
refs.current.props.discardTemporaryValue() propsRef.current.discardTemporaryValue()
} else { } else {
refs.current.props.permenantlySetValue(value) propsRef.current.permenantlySetValue(value)
} }
} }
} }
const onInputKeyDown = (e: React.KeyboardEvent) => { const onInputKeyDown = (e: React.KeyboardEvent) => {
if (e.key === 'Escape') { if (e.key === 'Escape') {
refs.current.props.discardTemporaryValue() propsRef.current.discardTemporaryValue()
stateRef.current = {mode: 'noFocus'}
inputRef.current!.blur() inputRef.current!.blur()
} else if (e.key === 'Enter' || e.key === 'Tab') { } else if (e.key === 'Enter' || e.key === 'Tab') {
commitKeyboardInput() commitKeyboardInput()
@ -118,7 +120,7 @@ const BasicStringInput: React.FC<{
} }
const onClick = (e: React.MouseEvent) => { const onClick = (e: React.MouseEvent) => {
if (refs.current.state.mode === 'noFocus') { if (stateRef.current.mode === 'noFocus') {
const c = inputRef.current! const c = inputRef.current!
c.focus() c.focus()
e.preventDefault() e.preventDefault()
@ -129,19 +131,19 @@ const BasicStringInput: React.FC<{
} }
const onFocus = () => { const onFocus = () => {
if (refs.current.state.mode === 'noFocus') { if (stateRef.current.mode === 'noFocus') {
transitionToEditingViaKeyboardMode() transitionToEditingViaKeyboardMode()
} else if (refs.current.state.mode === 'editingViaKeyboard') { } else if (stateRef.current.mode === 'editingViaKeyboard') {
} }
} }
const transitionToEditingViaKeyboardMode = () => { const transitionToEditingViaKeyboardMode = () => {
const curValue = refs.current.props.value const curValue = propsRef.current.value
setState({ stateRef.current = {
mode: 'editingViaKeyboard', mode: 'editingViaKeyboard',
currentEditedValueInString: String(curValue), currentEditedValueInString: String(curValue),
valueBeforeEditing: curValue, valueBeforeEditing: curValue,
}) }
setTimeout(() => { setTimeout(() => {
inputRef.current!.focus() inputRef.current!.focus()
@ -155,15 +157,15 @@ const BasicStringInput: React.FC<{
onClick, onClick,
onFocus, onFocus,
} }
}, [refs, setState, inputRef]) }, [])
let value = let value =
stateA.mode !== 'editingViaKeyboard' stateRef.current.mode !== 'editingViaKeyboard'
? format(propsA.value) ? format(props.value)
: stateA.currentEditedValueInString : stateRef.current.currentEditedValueInString
const _refs = [inputRef] const _refs = [inputRef]
if (propsA.inputRef) _refs.push(propsA.inputRef) if (props.inputRef) _refs.push(props.inputRef)
const theInput = ( const theInput = (
<Input <Input