Browse Source

비행계획서 지도-버그수정

feature/auth
sanguu 2 years ago
parent
commit
da62397996
  1. 9
      src/assets/css/custom.css
  2. 4
      src/components/basis/flight/plan/FlightPlanAreaMap.js
  3. 133
      src/components/basis/flight/plan/FlightPlanForm.js

9
src/assets/css/custom.css

@ -744,3 +744,12 @@ background-size: 75% auto;
.layer-content-box .history-btn:hover{border-radius:4px;background:#00cfe8;border-color:#00cfe8;transition: 0.3s ease;-webkit-transition: 0.3s ease;}
.historyModal .drone-ti span{font-weight:500;margin-top:6px}
.historyModal .drone-name{color:#00cfe8;margin:0 10px 0 0;}
.search-info-box-del-btn{display: flex; align-items: center;}
.search-info-box-del-btn button{cursor: pointer;margin-top:10px}
@media (max-width: 992px){
.search-info-box-del-btn button {
margin-bottom:1rem;
margin-top:0px;
}
}

4
src/components/basis/flight/plan/FlightPlanAreaMap.js

@ -44,8 +44,8 @@ const FlightPlanAreaMap = (props) => {
const ModeInit = () => {
setMode(mapControl.drawType)
}
console.log(areaCoordList);
const NaverMapInit = () => {
const center = {};
const bufferzoom ={};
@ -81,7 +81,7 @@ const FlightPlanAreaMap = (props) => {
};
setMap(new naver.maps.Map('map', mapOptions2));
}
}
const handlerDrawType = val => {
dispatch(drawTypeChangeAction(val));
};

133
src/components/basis/flight/plan/FlightPlanForm.js

@ -1,4 +1,4 @@
import React, { useEffect } from 'react';
import React, { useEffect, useState } from 'react';
import {
Card,
CardBody,
@ -24,6 +24,33 @@ import { useDispatch, useSelector } from 'react-redux';
const FlightPlanForm = ({data, handleModal, handleChange, handleSave, handleDelete, modal, handleDeleteArray }) => {
const {areaList, pilotList, arcrftList} = data;
const { detail } = useSelector(state => state.flightState);
const [date ,setDate] = useState();
const [isFlightDone, setIsFlightDone] = useState();
useEffect(() => {
if(detail.createDt) {
setDate(detail.schFltStDt);
}
}, [detail])
useEffect(() => {
setDate('');
}, [])
useEffect(() => {
if(date) {
let cTime = new Date();
let pTime = new Date(date)
if(cTime > pTime) {
setIsFlightDone(true);
} else {
setIsFlightDone(false);
}
}
}, [date])
return (
<Row>
<Col sm='12'>
@ -69,6 +96,7 @@ const FlightPlanForm = ({data, handleModal, handleChange, handleSave, handleDele
bsSize='sm'
placeholder=''
{ ...(isFlightDone ? {readOnly:true} : {}) }
/>
</FormGroup>
</Col>
@ -115,6 +143,7 @@ const FlightPlanForm = ({data, handleModal, handleChange, handleSave, handleDele
})
}}
placeholder='010-0000-0000'
{ ...(isFlightDone ? {readOnly:true} : {}) }
/>
</div>
</FormGroup>
@ -140,6 +169,7 @@ const FlightPlanForm = ({data, handleModal, handleChange, handleSave, handleDele
}}
// innerRef={props.data}
placeholder=''
{ ...(isFlightDone ? {readOnly:true} : {}) }
/>
</FormGroup>
</Col>
@ -157,7 +187,23 @@ const FlightPlanForm = ({data, handleModal, handleChange, handleSave, handleDele
<Label for='test'>
<span className='necessary'>*</span>
</Label>
<Flatpickr size='sm'
{
(isFlightDone) ?
(
<Input
type='text'
id='groupNm'
name='groupNm'
value={data.schFltStDt}
bsSize='sm'
placeholder=''
readOnly
/>
)
:
(
<Flatpickr
size='sm'
className='form-control calendar-flat'
type='text'
id='schFltStDt'
@ -173,7 +219,11 @@ const FlightPlanForm = ({data, handleModal, handleChange, handleSave, handleDele
value
})
}}
placeholder='비행 시작일자 선택(클릭)'/>
placeholder='비행 시작일자 선택(클릭)'
{...{options:{minDate: "today"}}}
/>
)
}
</FormGroup>
</Col>
@ -182,12 +232,29 @@ const FlightPlanForm = ({data, handleModal, handleChange, handleSave, handleDele
<Label for='test'>
<span className='necessary'>*</span>
</Label>
<Flatpickr size='sm'
{
(isFlightDone) ?
(
<Input
type='text'
id='groupNm'
name='groupNm'
value={data.schFltEndDt}
bsSize='sm'
placeholder=''
readOnly
/>
)
:
(
<Flatpickr
size='sm'
className='form-control calendar-flat'
type='text'
id='schFltEndDt'
name='schFltEndDt'
data-enable-time
// defaultValue={data.schFltEndDt}
value={data.schFltEndDt}
onChange={(date) => {
const value = moment(date[0]).format('YYYY-MM-DD HH:mm:ss') || '';
@ -197,8 +264,11 @@ const FlightPlanForm = ({data, handleModal, handleChange, handleSave, handleDele
value
})
}}
placeholder='비행 종료일자 선택(클릭)'/>
placeholder='비행 종료일자 선택(클릭)'
{...{options:{minDate: "today"}}}
/>
)
}
</FormGroup>
</Col>
<Col className='list-input' lg={4} md={4} sm={12}>
@ -207,7 +277,7 @@ const FlightPlanForm = ({data, handleModal, handleChange, handleSave, handleDele
<span className='necessary'>*</span>
</Label>
<Input
type='select'
{...(isFlightDone? {type:'text'} : {type:'select'})}
id='fltPurpose'
name='fltPurpose'
value={data.fltPurpose}
@ -220,12 +290,17 @@ const FlightPlanForm = ({data, handleModal, handleChange, handleSave, handleDele
value,
})
}}
{...(isFlightDone? {readOnly:true} : {})}
// innerRef={props.data}
// className={classnames({
// 'is-invalid': props.errors.arcrftTypeCd
// })}
>
{/* TODO CDNOT 코드연동 필요 */}
{ isFlightDone ?
<></>
:
<>
<option value=''>= 선택 =</option>
<option value='시험비행'>= 시험비행 =</option>
<option value='교육비행'>= 교육비행 =</option>
@ -233,6 +308,8 @@ const FlightPlanForm = ({data, handleModal, handleChange, handleSave, handleDele
<option value='비행훈련'>= 비행훈련 =</option>
<option value='비행교육'>= 비행교육 =</option>
<option value='비행실기시험'>= 비행실기시험 =</option>
</>
}
</Input>
</FormGroup>
@ -249,6 +326,7 @@ const FlightPlanForm = ({data, handleModal, handleChange, handleSave, handleDele
onClick={(e) => {
handleModal({target: 'area', isOpen: true})
}}
{...(isFlightDone)? {disabled:true} : {} }
>
비행 구역 설정
</Button.Ripple>
@ -268,6 +346,7 @@ const FlightPlanForm = ({data, handleModal, handleChange, handleSave, handleDele
onClick={(e) => {
handleModal({target: 'pilot', isOpen: true})
}}
{...(isFlightDone)? {disabled:true} : {} }
>
조종사 조회
</Button.Ripple>
@ -278,7 +357,9 @@ const FlightPlanForm = ({data, handleModal, handleChange, handleSave, handleDele
index={i}
data={item}
handleChange={handleChange}
handleDeleteArray ={handleDeleteArray}/>)
handleDeleteArray ={handleDeleteArray}
isFlightDone={isFlightDone}
/>)
: <PilotForm data={initFlightBas.pilot}
handleChange={handleChange}/>}
</dt>
@ -290,6 +371,7 @@ const FlightPlanForm = ({data, handleModal, handleChange, handleSave, handleDele
onClick={(e) => {
handleModal({target: 'arcrft', isOpen: true});
}}
{...(isFlightDone)? {disabled:true} : {} }
>
기체 조회
</Button.Ripple>
@ -300,7 +382,9 @@ const FlightPlanForm = ({data, handleModal, handleChange, handleSave, handleDele
index={i}
data={item}
handleChange={handleChange}
handleDeleteArray ={handleDeleteArray}/>)
handleDeleteArray ={handleDeleteArray}
isFlightDone={isFlightDone}
/>)
: <ArcrftForm data={initFlightBas.arcrft}
handleChange={handleChange}/>}
@ -312,6 +396,7 @@ const FlightPlanForm = ({data, handleModal, handleChange, handleSave, handleDele
color='primary'
size='sm'
onClick={handleSave}
{...(isFlightDone)? {disabled:true} : {} }
>
저장
</Button.Ripple>
@ -319,6 +404,7 @@ const FlightPlanForm = ({data, handleModal, handleChange, handleSave, handleDele
color='danger'
size='sm'
onClick={handleDelete}
{...(isFlightDone)? {disabled:true} : {} }
>
삭제
</Button.Ripple>
@ -517,7 +603,7 @@ const AreaForm = ({data, handleChange, index}) => {
</Row>
</div>)
}
const PilotForm = ({data, handleChange, index, handleDeleteArray}) => {
const PilotForm = ({data, handleChange, index, handleDeleteArray, isFlightDone}) => {
return (<div className='search-info-box'>
<Row>
<Col className='list-input' lg={4} md={6} sm={12}>
@ -597,7 +683,7 @@ const PilotForm = ({data, handleChange, index, handleDeleteArray}) => {
</div>
</FormGroup>
</Col>
<Col className='list-input' lg={4} md={6} sm={12}>
<Col className='list-input' lg={3} md={6} sm={12}>
<FormGroup>
<Label for='test'>
<span className='necessary'>*</span>
@ -624,33 +710,33 @@ const PilotForm = ({data, handleChange, index, handleDeleteArray}) => {
/>
</FormGroup>
</Col>
<Col className='search-info-box-del-btn' lg={1} md={6} sm={12}>
{data.groupNm?
(
<Col className='pilot-del-btn' xs={12} md={2} xl={2} >
<Button.Ripple
color='danger'
className='text-nowrap px-2'
className='btn-icon'
onClick={() =>
handleDeleteArray({ type: 'pilot', index })
}
outline
{...(isFlightDone)? {disabled:true} : {} }
>
<X size={14} className='mr-50' />
<span>삭제</span>
<X size={14} />
</Button.Ripple>
</Col>
)
:
(
<></>
)
}
</Col>
</Row>
</div>)
}
const ArcrftForm = ({data, handleChange, index, handleDeleteArray}) => {
const ArcrftForm = ({data, handleChange, index, handleDeleteArray, isFlightDone}) => {
return (<div className='search-info-box'>
<Row>
<Col className='list-input' lg={3} md={6} sm={12}>
@ -734,7 +820,7 @@ const ArcrftForm = ({data, handleChange, index, handleDeleteArray}) => {
/>
</FormGroup>
</Col>
<Col className='list-input' lg={3} md={6} sm={12}>
<Col className='list-input' lg={2} md={6} sm={12}>
<FormGroup>
<Label for='test'>
<span className='necessary'>*</span>
@ -783,17 +869,16 @@ const ArcrftForm = ({data, handleChange, index, handleDeleteArray}) => {
} */}
{data.groupNm?
(
<Col className='arcrft-del-btn' xs={12} md={2} xl={2} >
<Col className='search-info-box-del-btn' lg={1} md={6} sm={12}>
<Button.Ripple
color='danger'
className='text-nowrap px-1'
className='btn-icon'
onClick={() =>
handleDeleteArray({ type: 'arcrft', index })
}
outline
{...(isFlightDone)? {disabled:true} : {} }
>
<X size={14} className='mr-50' />
<span>삭제</span>
<X size={14} />
</Button.Ripple>
</Col>
)

Loading…
Cancel
Save