48 lines
1.7 KiB
JavaScript
48 lines
1.7 KiB
JavaScript
import { useMessage } from '@/hooks/useMessage'
|
|
import WithDraggable from '@/components/common/draggable/WithDraggable'
|
|
import { globalPitchState } from '@/store/canvasAtom'
|
|
import { useRecoilState } from 'recoil'
|
|
import { useRef } from 'react'
|
|
|
|
export default function Slope({ setShowSlopeSettingModal }) {
|
|
const { getMessage } = useMessage()
|
|
const [globalPitch, setGlobalPitch] = useRecoilState(globalPitchState)
|
|
const inputRef = useRef()
|
|
return (
|
|
<WithDraggable isShow={true} pos={{ x: 50, y: -950 }}>
|
|
<div className={`modal-pop-wrap xxxm`}>
|
|
<div className="modal-head">
|
|
<h1 className="title">{getMessage('plan.menu.placement.surface.slope.setting')} </h1>
|
|
<button className="modal-close" onClick={() => setShowSlopeSettingModal(false)}>
|
|
닫기
|
|
</button>
|
|
</div>
|
|
<div className="modal-body">
|
|
<div className="slope-wrap">
|
|
<div className="outline-form">
|
|
<span className="mr10" style={{ width: 'auto' }}>
|
|
{getMessage('slope')}
|
|
</span>
|
|
<div className="input-grid mr5">
|
|
<input type="text" className="input-origin block" defaultValue={globalPitch} ref={inputRef} />
|
|
</div>
|
|
<span className="thin">{getMessage('size.angle')}</span>
|
|
</div>
|
|
</div>
|
|
<div className="grid-btn-wrap">
|
|
<button
|
|
className="btn-frame modal act"
|
|
onClick={() => {
|
|
setGlobalPitch(inputRef.current.value)
|
|
setShowSlopeSettingModal(false)
|
|
}}
|
|
>
|
|
{getMessage('modal.common.save')}
|
|
</button>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</WithDraggable>
|
|
)
|
|
}
|