Новичок, чтобы Реагировать & Реактировать крючки.Я пытаюсь понять, почему мое состояние перезаписывается initialState.
Когда я ввожу значение, все работает как положено.Однако, когда я изменяю размер окна, оно сбрасывает его в initialState, и я не уверен почему.После ввода значений во входные данные updateBox
отображает правильные значения.
Может кто-нибудь объяснить мне, что происходит?
https://stackblitz.com/edit/react-hdf3sg
import React,{useState,useEffect,useRef} from 'react';
import './Layout.scss';
const initLayout = {
size:{
width: 16,
height: 16,
}
}
const clone = (obj) => {
return JSON.parse(JSON.stringify(obj));
}
const Layout = ({props}) => {
const boxContainer = useRef(null);
const [layoutState,setLayoutState] = useState(initLayout)
const [boxStyle,setBoxStyle] = useState({
"height": "100%",
"width": "90%",
})
useEffect(() =>{
// State did update
console.log("useEffect:State did update:",layoutState.size.width,":",layoutState.size.height)
// updateBox()
});
useEffect(() =>{
// Component did mount
console.log("Component did mount")
window.addEventListener("resize", updateBox);
return () => {
window.removeEventListener("resize", updateBox);
};
}, []);
useEffect(() => {
// This state did update
console.log("layoutState did update",layoutState)
updateBox()
}, [layoutState]);
const updateBox = () => {
console.log("updateBox",layoutState.size.width,":",layoutState.size.height)
let percentage = (layoutState.size.height/layoutState.size.width) * 100
if(percentage > 100){
percentage = 100
}
percentage = percentage+"%"
// console.log("percentage",percentage)
const cloneBoxStyle = clone(boxStyle)
cloneBoxStyle.width = "100%"
cloneBoxStyle.height = percentage
setBoxStyle(cloneBoxStyle)
// console.log("boxContainer",boxContainer)
// console.log("height",boxContainer.current.clientHeight)
// console.log("width",boxContainer.current.clientWidth)
}
const sizeRatioOnChange = (widthArg,heightArg) => {
let width = (widthArg === null) ? layoutState.size.width : widthArg;
let height = (heightArg === null) ? layoutState.size.height : heightArg;
const cloneLayoutState = clone(layoutState);
cloneLayoutState.size.width = width
cloneLayoutState.size.height = height
setLayoutState(cloneLayoutState)
}
const render = () => {
console.log("render",layoutState.size.width,":",layoutState.size.height)
// updateBox()
// const enlargeClass = (true) ? " enlarge" : "" ;
return (
<div className={"layout"} >
<div className="layout-tools-top">
Layout Size Ratio
<input
type="number"
value={layoutState.size.width}
onChange={(e) => {sizeRatioOnChange(e.target.value,null)}}/>
by
<input
type="number"
value={layoutState.size.height}
onChange={(e) => {sizeRatioOnChange(null,e.target.value)}}/>
<button className="button close">
Close
</button>
</div>
<div className="layout-container">
<div className="layout-tools-side">
<h2>Header</h2>
<ul>
</ul>
<form>
<input type="text" placeholder="Add Item" />
</form>
</div>
<div className="layout-box-container" ref={boxContainer}>
<div className="layout-box" style={boxStyle}>
{/* {boxStyle.height} x {boxStyle.width} */}
</div>
</div>
</div>
</div>
);
}
return render();
};
export default Layout;
![enter image description here](https://i.stack.imgur.com/H7WgM.png)