데이터 유지 초기화 작업
This commit is contained in:
parent
81fb5ffcc1
commit
dfc67cb7dd
@ -38,7 +38,7 @@ export default function BasicSetting({ id, pos = { x: 50, y: 230 } }) {
|
|||||||
const [isClosePopup, setIsClosePopup] = useState({ close: false, id: 0 })
|
const [isClosePopup, setIsClosePopup] = useState({ close: false, id: 0 })
|
||||||
|
|
||||||
// const { initEvent } = useContext(EventContext)
|
// const { initEvent } = useContext(EventContext)
|
||||||
const { manualModuleSetup, autoModuleSetup, manualFlatroofModuleSetup, autoFlatroofModuleSetup } = useModuleBasicSetting(1)
|
const { manualModuleSetup, autoModuleSetup, manualFlatroofModuleSetup, autoFlatroofModuleSetup } = useModuleBasicSetting(tabNum)
|
||||||
const { updateObjectDate } = useMasterController()
|
const { updateObjectDate } = useMasterController()
|
||||||
const handleBtnNextStep = () => {
|
const handleBtnNextStep = () => {
|
||||||
if (tabNum === 1) {
|
if (tabNum === 1) {
|
||||||
|
|||||||
@ -58,8 +58,8 @@ export default function Module({ setTabNum }) {
|
|||||||
useEffect(() => {
|
useEffect(() => {
|
||||||
if (tempModuleSelectionData.roofConstructions.length > 0) {
|
if (tempModuleSelectionData.roofConstructions.length > 0) {
|
||||||
if (tempModuleSelectionData.common.moduleItemId && isObjectNotEmpty(tempModuleSelectionData.module)) {
|
if (tempModuleSelectionData.common.moduleItemId && isObjectNotEmpty(tempModuleSelectionData.module)) {
|
||||||
setModuleSelectionData(tempModuleSelectionData)
|
|
||||||
//저장된 temp데이터가 지붕재(addedRoofs) 개수와 같으면 모듈 선택 저장
|
//저장된 temp데이터가 지붕재(addedRoofs) 개수와 같으면 모듈 선택 저장
|
||||||
|
setModuleSelectionData(tempModuleSelectionData)
|
||||||
if (tempModuleSelectionData.roofConstructions.length === addedRoofs.length) {
|
if (tempModuleSelectionData.roofConstructions.length === addedRoofs.length) {
|
||||||
moduleSelectedDataTrigger(tempModuleSelectionData)
|
moduleSelectedDataTrigger(tempModuleSelectionData)
|
||||||
}
|
}
|
||||||
@ -83,7 +83,7 @@ export default function Module({ setTabNum }) {
|
|||||||
header: [
|
header: [
|
||||||
{ name: getMessage('module'), width: 150, prop: 'module', type: 'color-box' },
|
{ name: getMessage('module'), width: 150, prop: 'module', type: 'color-box' },
|
||||||
{
|
{
|
||||||
name: `${getMessage('높이')} (mm)`,
|
name: `${getMessage('height')} (mm)`,
|
||||||
prop: 'height',
|
prop: 'height',
|
||||||
},
|
},
|
||||||
{ name: `${getMessage('width')} (mm)`, prop: 'width' },
|
{ name: `${getMessage('width')} (mm)`, prop: 'width' },
|
||||||
|
|||||||
@ -64,6 +64,9 @@ export function useModuleBasicSetting(tabNum) {
|
|||||||
if (canvasSetting.roofSizeSet !== '3') {
|
if (canvasSetting.roofSizeSet !== '3') {
|
||||||
const common = moduleSelectionData.common
|
const common = moduleSelectionData.common
|
||||||
const roofConstructions = moduleSelectionData.roofConstructions
|
const roofConstructions = moduleSelectionData.roofConstructions
|
||||||
|
|
||||||
|
console.log('moduleSelectionData', moduleSelectionData)
|
||||||
|
|
||||||
const listParams = roofConstructions.map((item) => {
|
const listParams = roofConstructions.map((item) => {
|
||||||
return {
|
return {
|
||||||
...common,
|
...common,
|
||||||
@ -78,6 +81,7 @@ export function useModuleBasicSetting(tabNum) {
|
|||||||
inclCd: String(item.addRoof.pitch),
|
inclCd: String(item.addRoof.pitch),
|
||||||
roofIndex: item.addRoof.index,
|
roofIndex: item.addRoof.index,
|
||||||
workingWidth: item.addRoof.lenBase,
|
workingWidth: item.addRoof.lenBase,
|
||||||
|
raftBaseCd: item.trestle.raftBaseCd,
|
||||||
}
|
}
|
||||||
})
|
})
|
||||||
setTrestleDetailParams(listParams)
|
setTrestleDetailParams(listParams)
|
||||||
@ -142,174 +146,176 @@ export function useModuleBasicSetting(tabNum) {
|
|||||||
const makeModuleInstArea = (roof, trestleDetail) => {
|
const makeModuleInstArea = (roof, trestleDetail) => {
|
||||||
//지붕 객체 반환
|
//지붕 객체 반환
|
||||||
|
|
||||||
if (!roof) {
|
if (tabNum == 3) {
|
||||||
return
|
if (!roof) {
|
||||||
}
|
|
||||||
|
|
||||||
//도머등 오브젝트 객체가 있으면 아웃라인 낸다
|
|
||||||
const batchObjects = canvas
|
|
||||||
?.getObjects()
|
|
||||||
.filter(
|
|
||||||
(obj) =>
|
|
||||||
obj.name === BATCH_TYPE.OPENING ||
|
|
||||||
obj.name === BATCH_TYPE.SHADOW ||
|
|
||||||
obj.name === BATCH_TYPE.TRIANGLE_DORMER ||
|
|
||||||
obj.name === BATCH_TYPE.PENTAGON_DORMER,
|
|
||||||
) //도머s 객체
|
|
||||||
|
|
||||||
//도머도 외곽을 따야한다
|
|
||||||
const batchObjectOptions = {
|
|
||||||
stroke: 'red',
|
|
||||||
fill: 'transparent',
|
|
||||||
strokeDashArray: [10, 4],
|
|
||||||
strokeWidth: 1,
|
|
||||||
lockMovementX: true,
|
|
||||||
lockMovementY: true,
|
|
||||||
lockRotation: true,
|
|
||||||
lockScalingX: true,
|
|
||||||
lockScalingY: true,
|
|
||||||
selectable: true,
|
|
||||||
name: POLYGON_TYPE.OBJECT_SURFACE,
|
|
||||||
originX: 'center',
|
|
||||||
originY: 'center',
|
|
||||||
}
|
|
||||||
|
|
||||||
//도머등 오브젝트 객체가 있으면 아웃라인 낸다
|
|
||||||
batchObjects.forEach((obj) => {
|
|
||||||
//도머일때
|
|
||||||
if (obj.name === BATCH_TYPE.TRIANGLE_DORMER || obj.name === BATCH_TYPE.PENTAGON_DORMER) {
|
|
||||||
const groupPoints = obj.groupPoints
|
|
||||||
const offsetObjects = offsetPolygon(groupPoints, 10)
|
|
||||||
const dormerOffset = new QPolygon(offsetObjects, batchObjectOptions)
|
|
||||||
dormerOffset.setViewLengthText(false)
|
|
||||||
canvas.add(dormerOffset) //모듈설치면 만들기
|
|
||||||
} else {
|
|
||||||
//개구, 그림자일때
|
|
||||||
const points = obj.points
|
|
||||||
const offsetObjects = offsetPolygon(points, 10)
|
|
||||||
const offset = new QPolygon(offsetObjects, batchObjectOptions)
|
|
||||||
offset.setViewLengthText(false)
|
|
||||||
canvas.add(offset) //모듈설치면 만들기
|
|
||||||
}
|
|
||||||
})
|
|
||||||
|
|
||||||
const isExistSurface = canvas.getObjects().find((obj) => obj.name === POLYGON_TYPE.MODULE_SETUP_SURFACE && obj.parentId === roof.id)
|
|
||||||
canvas.remove(isExistSurface)
|
|
||||||
|
|
||||||
let offsetLength = canvasSetting.roofSizeSet === '3' ? -30 : (trestleDetail.eaveIntvl / 10) * -1
|
|
||||||
setSurfaceShapePattern(roof, roofDisplay.column, true) //패턴 변경
|
|
||||||
const offsetPoints = offsetPolygon(roof.points, offsetLength) //안쪽 offset
|
|
||||||
//모듈설치영역?? 생성
|
|
||||||
|
|
||||||
const surfaceId = uuidv4()
|
|
||||||
let isNorth = false
|
|
||||||
|
|
||||||
if (canvasSetting.roofSizeSet !== '3') {
|
|
||||||
//북면이 있지만
|
|
||||||
if (roof.directionText && roof.directionText.indexOf('北') > -1) {
|
|
||||||
//북쪽일때 해당 서북서, 동북동은 제외한다고 한다
|
|
||||||
if (!(roof.directionText.indexOf('西北西') > -1 || roof.directionText.indexOf('東北東') > -1)) {
|
|
||||||
isNorth = true
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
//모듈설치면 생성
|
|
||||||
let setupSurface = new QPolygon(offsetPoints, {
|
|
||||||
stroke: 'red',
|
|
||||||
fill: 'rgba(255,255,255,0.1)',
|
|
||||||
strokeDashArray: [10, 4],
|
|
||||||
strokeWidth: 1,
|
|
||||||
lockMovementX: true,
|
|
||||||
lockMovementY: true,
|
|
||||||
lockRotation: true,
|
|
||||||
lockScalingX: true,
|
|
||||||
lockScalingY: true,
|
|
||||||
selectable: true,
|
|
||||||
parentId: roof.id, //가대 폴리곤의 임시 인덱스를 넣어줌
|
|
||||||
name: POLYGON_TYPE.MODULE_SETUP_SURFACE,
|
|
||||||
flowDirection: roof.direction,
|
|
||||||
direction: roof.direction,
|
|
||||||
flipX: roof.flipX,
|
|
||||||
flipY: roof.flipY,
|
|
||||||
surfaceId: surfaceId,
|
|
||||||
originX: 'center',
|
|
||||||
originY: 'center',
|
|
||||||
modules: [],
|
|
||||||
roofMaterial: roof.roofMaterial,
|
|
||||||
trestleDetail: trestleDetail,
|
|
||||||
isNorth: isNorth,
|
|
||||||
perPixelTargetFind: true,
|
|
||||||
// angle: -compasDeg,
|
|
||||||
})
|
|
||||||
|
|
||||||
setupSurface.setViewLengthText(false)
|
|
||||||
canvas.add(setupSurface) //모듈설치면 만들기
|
|
||||||
|
|
||||||
//지붕면 선택 금지
|
|
||||||
roof.set({
|
|
||||||
selectable: false, //선택 금지
|
|
||||||
// evented: false, //클릭 이벤트도 금지
|
|
||||||
})
|
|
||||||
|
|
||||||
canvas.renderAll()
|
|
||||||
|
|
||||||
//바로 들어올때
|
|
||||||
const setupModules = canvas.getObjects().filter((obj) => obj.name === POLYGON_TYPE.MODULE)
|
|
||||||
setupModules.forEach((obj) => {
|
|
||||||
canvas.bringToFront(obj)
|
|
||||||
})
|
|
||||||
|
|
||||||
//모듈설치면 클릭이벤트
|
|
||||||
addTargetMouseEventListener('mousedown', setupSurface, function () {
|
|
||||||
toggleSelection(setupSurface)
|
|
||||||
})
|
|
||||||
}
|
|
||||||
|
|
||||||
let selectedModuleInstSurfaceArray = []
|
|
||||||
|
|
||||||
//설치 범위 지정 클릭 이벤트
|
|
||||||
const toggleSelection = (setupSurface) => {
|
|
||||||
const isExist = selectedModuleInstSurfaceArray.some((obj) => obj.parentId === setupSurface.parentId)
|
|
||||||
//최초 선택일때
|
|
||||||
if (!isExist) {
|
|
||||||
//설치면이 북면이고 북면설치 허용점이 아니면
|
|
||||||
if (setupSurface.isNorth && !saleStoreNorthFlg) {
|
|
||||||
swalFire({ text: getMessage('module.not.batch.north'), icon: 'warning' })
|
|
||||||
return
|
return
|
||||||
}
|
}
|
||||||
|
|
||||||
//기본 선택이랑 스트로크 굵기가 같으면 선택 안됨으로 봄
|
//도머등 오브젝트 객체가 있으면 아웃라인 낸다
|
||||||
setupSurface.set({
|
const batchObjects = canvas
|
||||||
...setupSurface,
|
?.getObjects()
|
||||||
strokeWidth: 3,
|
.filter(
|
||||||
strokeDashArray: [0],
|
(obj) =>
|
||||||
fill: 'rgba(255,255,255,0.1)',
|
obj.name === BATCH_TYPE.OPENING ||
|
||||||
})
|
obj.name === BATCH_TYPE.SHADOW ||
|
||||||
canvas.discardActiveObject() // 객체의 활성 상태 해제
|
obj.name === BATCH_TYPE.TRIANGLE_DORMER ||
|
||||||
//중복으로 들어가는걸 방지하기 위한 코드
|
obj.name === BATCH_TYPE.PENTAGON_DORMER,
|
||||||
|
) //도머s 객체
|
||||||
|
|
||||||
canvas?.renderAll()
|
//도머도 외곽을 따야한다
|
||||||
selectedModuleInstSurfaceArray.push(setupSurface)
|
const batchObjectOptions = {
|
||||||
setCurrentObject({ name: 'moduleSetupSurface', arrayData: [...selectedModuleInstSurfaceArray] })
|
stroke: 'red',
|
||||||
} else {
|
fill: 'transparent',
|
||||||
//선택후 재선택하면 선택안됨으로 변경
|
strokeDashArray: [10, 4],
|
||||||
setupSurface.set({
|
strokeWidth: 1,
|
||||||
...setupSurface,
|
lockMovementX: true,
|
||||||
|
lockMovementY: true,
|
||||||
|
lockRotation: true,
|
||||||
|
lockScalingX: true,
|
||||||
|
lockScalingY: true,
|
||||||
|
selectable: true,
|
||||||
|
name: POLYGON_TYPE.OBJECT_SURFACE,
|
||||||
|
originX: 'center',
|
||||||
|
originY: 'center',
|
||||||
|
}
|
||||||
|
|
||||||
|
//도머등 오브젝트 객체가 있으면 아웃라인 낸다
|
||||||
|
batchObjects.forEach((obj) => {
|
||||||
|
//도머일때
|
||||||
|
if (obj.name === BATCH_TYPE.TRIANGLE_DORMER || obj.name === BATCH_TYPE.PENTAGON_DORMER) {
|
||||||
|
const groupPoints = obj.groupPoints
|
||||||
|
const offsetObjects = offsetPolygon(groupPoints, 10)
|
||||||
|
const dormerOffset = new QPolygon(offsetObjects, batchObjectOptions)
|
||||||
|
dormerOffset.setViewLengthText(false)
|
||||||
|
canvas.add(dormerOffset) //모듈설치면 만들기
|
||||||
|
} else {
|
||||||
|
//개구, 그림자일때
|
||||||
|
const points = obj.points
|
||||||
|
const offsetObjects = offsetPolygon(points, 10)
|
||||||
|
const offset = new QPolygon(offsetObjects, batchObjectOptions)
|
||||||
|
offset.setViewLengthText(false)
|
||||||
|
canvas.add(offset) //모듈설치면 만들기
|
||||||
|
}
|
||||||
|
})
|
||||||
|
|
||||||
|
const isExistSurface = canvas.getObjects().find((obj) => obj.name === POLYGON_TYPE.MODULE_SETUP_SURFACE && obj.parentId === roof.id)
|
||||||
|
canvas.remove(isExistSurface)
|
||||||
|
|
||||||
|
let offsetLength = canvasSetting.roofSizeSet === '3' ? -30 : (trestleDetail.eaveIntvl / 10) * -1
|
||||||
|
setSurfaceShapePattern(roof, roofDisplay.column, true) //패턴 변경
|
||||||
|
const offsetPoints = offsetPolygon(roof.points, offsetLength) //안쪽 offset
|
||||||
|
//모듈설치영역?? 생성
|
||||||
|
|
||||||
|
const surfaceId = uuidv4()
|
||||||
|
let isNorth = false
|
||||||
|
|
||||||
|
if (canvasSetting.roofSizeSet !== '3') {
|
||||||
|
//북면이 있지만
|
||||||
|
if (roof.directionText && roof.directionText.indexOf('北') > -1) {
|
||||||
|
//북쪽일때 해당 서북서, 동북동은 제외한다고 한다
|
||||||
|
if (!(roof.directionText.indexOf('西北西') > -1 || roof.directionText.indexOf('東北東') > -1)) {
|
||||||
|
isNorth = true
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
//모듈설치면 생성
|
||||||
|
let setupSurface = new QPolygon(offsetPoints, {
|
||||||
|
stroke: 'red',
|
||||||
fill: 'rgba(255,255,255,0.1)',
|
fill: 'rgba(255,255,255,0.1)',
|
||||||
strokeDashArray: [10, 4],
|
strokeDashArray: [10, 4],
|
||||||
strokeWidth: 1,
|
strokeWidth: 1,
|
||||||
|
lockMovementX: true,
|
||||||
|
lockMovementY: true,
|
||||||
|
lockRotation: true,
|
||||||
|
lockScalingX: true,
|
||||||
|
lockScalingY: true,
|
||||||
|
selectable: true,
|
||||||
|
parentId: roof.id, //가대 폴리곤의 임시 인덱스를 넣어줌
|
||||||
|
name: POLYGON_TYPE.MODULE_SETUP_SURFACE,
|
||||||
|
flowDirection: roof.direction,
|
||||||
|
direction: roof.direction,
|
||||||
|
flipX: roof.flipX,
|
||||||
|
flipY: roof.flipY,
|
||||||
|
surfaceId: surfaceId,
|
||||||
|
originX: 'center',
|
||||||
|
originY: 'center',
|
||||||
|
modules: [],
|
||||||
|
roofMaterial: roof.roofMaterial,
|
||||||
|
trestleDetail: trestleDetail,
|
||||||
|
isNorth: isNorth,
|
||||||
|
perPixelTargetFind: true,
|
||||||
|
// angle: -compasDeg,
|
||||||
})
|
})
|
||||||
canvas.discardActiveObject() // 객체의 활성 상태 해제
|
|
||||||
|
|
||||||
//폴리곤에 커스텀 인덱스를 가지고 해당 배열 인덱스를 찾아 삭제함
|
setupSurface.setViewLengthText(false)
|
||||||
const removeIndex = setupSurface.parentId
|
canvas.add(setupSurface) //모듈설치면 만들기
|
||||||
const removeArrayIndex = selectedModuleInstSurfaceArray.findIndex((obj) => obj.parentId === removeIndex)
|
|
||||||
selectedModuleInstSurfaceArray.splice(removeArrayIndex, 1)
|
//지붕면 선택 금지
|
||||||
setCurrentObject({ name: 'moduleSetupSurface', arrayData: [...selectedModuleInstSurfaceArray] })
|
roof.set({
|
||||||
|
selectable: false, //선택 금지
|
||||||
|
// evented: false, //클릭 이벤트도 금지
|
||||||
|
})
|
||||||
|
|
||||||
|
canvas.renderAll()
|
||||||
|
|
||||||
|
//바로 들어올때
|
||||||
|
const setupModules = canvas.getObjects().filter((obj) => obj.name === POLYGON_TYPE.MODULE)
|
||||||
|
setupModules.forEach((obj) => {
|
||||||
|
canvas.bringToFront(obj)
|
||||||
|
})
|
||||||
|
|
||||||
|
//모듈설치면 클릭이벤트
|
||||||
|
addTargetMouseEventListener('mousedown', setupSurface, function () {
|
||||||
|
toggleSelection(setupSurface)
|
||||||
|
})
|
||||||
}
|
}
|
||||||
|
|
||||||
canvas?.renderAll()
|
let selectedModuleInstSurfaceArray = []
|
||||||
setModuleSetupSurface([...selectedModuleInstSurfaceArray])
|
|
||||||
|
//설치 범위 지정 클릭 이벤트
|
||||||
|
const toggleSelection = (setupSurface) => {
|
||||||
|
const isExist = selectedModuleInstSurfaceArray.some((obj) => obj.parentId === setupSurface.parentId)
|
||||||
|
//최초 선택일때
|
||||||
|
if (!isExist) {
|
||||||
|
//설치면이 북면이고 북면설치 허용점이 아니면
|
||||||
|
if (setupSurface.isNorth && !saleStoreNorthFlg) {
|
||||||
|
swalFire({ text: getMessage('module.not.batch.north'), icon: 'warning' })
|
||||||
|
return
|
||||||
|
}
|
||||||
|
|
||||||
|
//기본 선택이랑 스트로크 굵기가 같으면 선택 안됨으로 봄
|
||||||
|
setupSurface.set({
|
||||||
|
...setupSurface,
|
||||||
|
strokeWidth: 3,
|
||||||
|
strokeDashArray: [0],
|
||||||
|
fill: 'rgba(255,255,255,0.1)',
|
||||||
|
})
|
||||||
|
canvas.discardActiveObject() // 객체의 활성 상태 해제
|
||||||
|
//중복으로 들어가는걸 방지하기 위한 코드
|
||||||
|
|
||||||
|
canvas?.renderAll()
|
||||||
|
selectedModuleInstSurfaceArray.push(setupSurface)
|
||||||
|
setCurrentObject({ name: 'moduleSetupSurface', arrayData: [...selectedModuleInstSurfaceArray] })
|
||||||
|
} else {
|
||||||
|
//선택후 재선택하면 선택안됨으로 변경
|
||||||
|
setupSurface.set({
|
||||||
|
...setupSurface,
|
||||||
|
fill: 'rgba(255,255,255,0.1)',
|
||||||
|
strokeDashArray: [10, 4],
|
||||||
|
strokeWidth: 1,
|
||||||
|
})
|
||||||
|
canvas.discardActiveObject() // 객체의 활성 상태 해제
|
||||||
|
|
||||||
|
//폴리곤에 커스텀 인덱스를 가지고 해당 배열 인덱스를 찾아 삭제함
|
||||||
|
const removeIndex = setupSurface.parentId
|
||||||
|
const removeArrayIndex = selectedModuleInstSurfaceArray.findIndex((obj) => obj.parentId === removeIndex)
|
||||||
|
selectedModuleInstSurfaceArray.splice(removeArrayIndex, 1)
|
||||||
|
setCurrentObject({ name: 'moduleSetupSurface', arrayData: [...selectedModuleInstSurfaceArray] })
|
||||||
|
}
|
||||||
|
|
||||||
|
canvas?.renderAll()
|
||||||
|
setModuleSetupSurface([...selectedModuleInstSurfaceArray])
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
//모듈,회로에서 다른메뉴 -> 배치면으로 갈 경수 초기화
|
//모듈,회로에서 다른메뉴 -> 배치면으로 갈 경수 초기화
|
||||||
|
|||||||
@ -114,7 +114,9 @@ export function useModuleSelection(props) {
|
|||||||
}
|
}
|
||||||
|
|
||||||
//데이터가 있으면 모듈 자동 선택
|
//데이터가 있으면 모듈 자동 선택
|
||||||
|
//1번 모듈 리스트 조회
|
||||||
useEffect(() => {
|
useEffect(() => {
|
||||||
|
//모듈리스트의 데이터가 변경 되면 모듈 선택으로 이벤트
|
||||||
if (moduleList.length > 0 && isObjectNotEmpty(moduleSelectionData.module)) {
|
if (moduleList.length > 0 && isObjectNotEmpty(moduleSelectionData.module)) {
|
||||||
handleChangeModule(moduleSelectionData.module)
|
handleChangeModule(moduleSelectionData.module)
|
||||||
}
|
}
|
||||||
|
|||||||
@ -29,7 +29,7 @@ export function useModuleTabContents({ tabIndex, addRoof, setAddedRoofs, roofTab
|
|||||||
const [roofBaseParams, setRoofBaseParams] = useState({}) //지붕밑바탕 관련 api호출 파라메터
|
const [roofBaseParams, setRoofBaseParams] = useState({}) //지붕밑바탕 관련 api호출 파라메터
|
||||||
|
|
||||||
const moduleSelectionInitParams = useRecoilValue(moduleSelectionInitParamsState) //모듈 기본 데이터 ex) 면조도, 높이등등
|
const moduleSelectionInitParams = useRecoilValue(moduleSelectionInitParamsState) //모듈 기본 데이터 ex) 면조도, 높이등등
|
||||||
const moduleSelectionInitOriginData = useRef(moduleSelectionInitParams)
|
const moduleSelectionInitOriginData = useRef({})
|
||||||
|
|
||||||
const { getTrestleList, getConstructionList } = useMasterController()
|
const { getTrestleList, getConstructionList } = useMasterController()
|
||||||
|
|
||||||
@ -95,8 +95,6 @@ export function useModuleTabContents({ tabIndex, addRoof, setAddedRoofs, roofTab
|
|||||||
})
|
})
|
||||||
setRaftCodes(raftCodeList)
|
setRaftCodes(raftCodeList)
|
||||||
|
|
||||||
console.log('addRoof', addRoof)
|
|
||||||
|
|
||||||
if (addRoof.raft) {
|
if (addRoof.raft) {
|
||||||
setSelectedRaftBase({
|
setSelectedRaftBase({
|
||||||
...selectedRaftBase,
|
...selectedRaftBase,
|
||||||
@ -155,6 +153,7 @@ export function useModuleTabContents({ tabIndex, addRoof, setAddedRoofs, roofTab
|
|||||||
useEffect(() => {
|
useEffect(() => {
|
||||||
//lengbase는 무조건 있다고 가정 하고 최초에 실행 방지
|
//lengbase는 무조건 있다고 가정 하고 최초에 실행 방지
|
||||||
if (selectedModules) {
|
if (selectedModules) {
|
||||||
|
//여기서부터 시작
|
||||||
//가대메이커 파라메터 만들기
|
//가대메이커 파라메터 만들기
|
||||||
setTrestleParams({
|
setTrestleParams({
|
||||||
moduleTpCd: selectedModules.itemTp,
|
moduleTpCd: selectedModules.itemTp,
|
||||||
@ -174,6 +173,7 @@ export function useModuleTabContents({ tabIndex, addRoof, setAddedRoofs, roofTab
|
|||||||
|
|
||||||
//가대메이커 변경 함수
|
//가대메이커 변경 함수
|
||||||
const handleChangeTrestle = (option) => {
|
const handleChangeTrestle = (option) => {
|
||||||
|
option.raftBaseCd = selectedRaftBase.raftBaseCd
|
||||||
setSelectedTrestle(option) //선택값 저장
|
setSelectedTrestle(option) //선택값 저장
|
||||||
setConstructionParams({ ...trestleParams, trestleMkrCd: option.trestleMkrCd, constMthdCd: '', roofBaseCd: '' })
|
setConstructionParams({ ...trestleParams, trestleMkrCd: option.trestleMkrCd, constMthdCd: '', roofBaseCd: '' })
|
||||||
}
|
}
|
||||||
@ -266,32 +266,30 @@ export function useModuleTabContents({ tabIndex, addRoof, setAddedRoofs, roofTab
|
|||||||
//공법 선택시 이후 프로세스
|
//공법 선택시 이후 프로세스
|
||||||
useEffect(() => {
|
useEffect(() => {
|
||||||
if (isObjectNotEmpty(selectedRoofBase) && isObjectNotEmpty(selectedConstruction)) {
|
if (isObjectNotEmpty(selectedRoofBase) && isObjectNotEmpty(selectedConstruction)) {
|
||||||
if (tabIndex === roofTab) {
|
const common = { ...moduleSelectionInitParams }
|
||||||
const common = { ...moduleSelectionInitParams }
|
const module = { ...selectedModules }
|
||||||
const module = { ...selectedModules }
|
const newRoofConstructions = {
|
||||||
const newRoofConstructions = {
|
roofIndex: tabIndex,
|
||||||
roofIndex: tabIndex,
|
addRoof: addRoof,
|
||||||
addRoof: addRoof,
|
trestle: selectedRoofBase,
|
||||||
trestle: selectedRoofBase,
|
construction: selectedConstruction,
|
||||||
construction: selectedConstruction,
|
}
|
||||||
}
|
|
||||||
|
|
||||||
const index = tempModuleSelectionData.roofConstructions.findIndex((obj) => obj.roofIndex === tabIndex)
|
const index = tempModuleSelectionData.roofConstructions.findIndex((obj) => obj.roofIndex === tabIndex)
|
||||||
|
|
||||||
if (index > -1) {
|
if (index > -1) {
|
||||||
const newArray = [
|
const newArray = [
|
||||||
...tempModuleSelectionData.roofConstructions.slice(0, index),
|
...tempModuleSelectionData.roofConstructions.slice(0, index),
|
||||||
newRoofConstructions,
|
newRoofConstructions,
|
||||||
...tempModuleSelectionData.roofConstructions.slice(index + 1),
|
...tempModuleSelectionData.roofConstructions.slice(index + 1),
|
||||||
]
|
]
|
||||||
setTempModuleSelectionData({ common: common, module: module, roofConstructions: newArray })
|
setTempModuleSelectionData({ common: common, module: module, roofConstructions: newArray })
|
||||||
} else {
|
} else {
|
||||||
setTempModuleSelectionData({
|
setTempModuleSelectionData({
|
||||||
common: common,
|
common: common,
|
||||||
module: module,
|
module: module,
|
||||||
roofConstructions: [...tempModuleSelectionData.roofConstructions, { ...newRoofConstructions }],
|
roofConstructions: [...tempModuleSelectionData.roofConstructions, { ...newRoofConstructions }],
|
||||||
})
|
})
|
||||||
}
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}, [selectedConstruction])
|
}, [selectedConstruction])
|
||||||
@ -299,8 +297,6 @@ export function useModuleTabContents({ tabIndex, addRoof, setAddedRoofs, roofTab
|
|||||||
//거대메이커, 공법, 지붕밑바탕 api 조회
|
//거대메이커, 공법, 지붕밑바탕 api 조회
|
||||||
const getModuleOptionsListData = async (params, type) => {
|
const getModuleOptionsListData = async (params, type) => {
|
||||||
const optionsList = await getTrestleList(params)
|
const optionsList = await getTrestleList(params)
|
||||||
console.log('optionsList', optionsList)
|
|
||||||
|
|
||||||
if (optionsList.data.length > 0) {
|
if (optionsList.data.length > 0) {
|
||||||
if (type === 'trestle') {
|
if (type === 'trestle') {
|
||||||
//가대 메이커일때
|
//가대 메이커일때
|
||||||
@ -340,6 +336,10 @@ export function useModuleTabContents({ tabIndex, addRoof, setAddedRoofs, roofTab
|
|||||||
resetSelected()
|
resetSelected()
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
if (moduleSelectionInitParams.moduleItemId && moduleSelectionInitParams.moduleTpCd) {
|
||||||
|
moduleSelectionInitOriginData.current = moduleSelectionInitParams
|
||||||
|
}
|
||||||
}, [moduleSelectionInitParams])
|
}, [moduleSelectionInitParams])
|
||||||
|
|
||||||
const handleHajebichiAndLength = (e, type) => {
|
const handleHajebichiAndLength = (e, type) => {
|
||||||
|
|||||||
@ -26,7 +26,7 @@ export function useObjectBatch({ isHidden, setIsHidden }) {
|
|||||||
|
|
||||||
useEffect(() => {
|
useEffect(() => {
|
||||||
if (canvas) {
|
if (canvas) {
|
||||||
dbClickEvent()
|
// dbClickEvent()
|
||||||
}
|
}
|
||||||
|
|
||||||
return () => {
|
return () => {
|
||||||
|
|||||||
@ -85,6 +85,10 @@ export function useSurfaceShapeBatch({ isHidden, setIsHidden }) {
|
|||||||
canvas?.remove(...canvas?.getObjects().filter((obj) => obj.name === MENU.BATCH_CANVAS.SURFACE_SHAPE_BATCH_TEMP))
|
canvas?.remove(...canvas?.getObjects().filter((obj) => obj.name === MENU.BATCH_CANVAS.SURFACE_SHAPE_BATCH_TEMP))
|
||||||
points = getSurfaceShape(surfaceId, pointer, { length1, length2, length3, length4, length5 })
|
points = getSurfaceShape(surfaceId, pointer, { length1, length2, length3, length4, length5 })
|
||||||
|
|
||||||
|
console.log('surfaceRefs.xInversion', surfaceRefs.xInversion)
|
||||||
|
console.log('surfaceRefs.yInversion', surfaceRefs.yInversion)
|
||||||
|
console.log('surfaceRefs.rotate', surfaceRefs.rotate)
|
||||||
|
|
||||||
const options = {
|
const options = {
|
||||||
fill: 'transparent',
|
fill: 'transparent',
|
||||||
stroke: 'black',
|
stroke: 'black',
|
||||||
@ -100,7 +104,7 @@ export function useSurfaceShapeBatch({ isHidden, setIsHidden }) {
|
|||||||
name: MENU.BATCH_CANVAS.SURFACE_SHAPE_BATCH_TEMP,
|
name: MENU.BATCH_CANVAS.SURFACE_SHAPE_BATCH_TEMP,
|
||||||
flipX: surfaceRefs.yInversion,
|
flipX: surfaceRefs.yInversion,
|
||||||
flipY: surfaceRefs.xInversion,
|
flipY: surfaceRefs.xInversion,
|
||||||
angle: surfaceRefs.rotate,
|
angle: Math.abs(surfaceRefs.rotate),
|
||||||
originX: 'center',
|
originX: 'center',
|
||||||
originY: 'center',
|
originY: 'center',
|
||||||
pitch: globalPitch,
|
pitch: globalPitch,
|
||||||
|
|||||||
@ -858,6 +858,7 @@
|
|||||||
"surface.shape.validate.size.1to2": "①길이는 ②보다 큰 값을 넣어주세요.",
|
"surface.shape.validate.size.1to2": "①길이는 ②보다 큰 값을 넣어주세요.",
|
||||||
"surface.shape.validate.size.1to3": "①길이는 ③보다 큰 값을 넣어주세요.",
|
"surface.shape.validate.size.1to3": "①길이는 ③보다 큰 값을 넣어주세요.",
|
||||||
"surface.shape.validate.size.1to23": "①길이는 ②+③보다 큰 값을 넣어주세요.",
|
"surface.shape.validate.size.1to23": "①길이는 ②+③보다 큰 값을 넣어주세요.",
|
||||||
|
"surface.shape.validate.size.1to23low": "②+③길이는 ①보다 큰 값을 넣어주세요.",
|
||||||
"surface.shape.validate.size.2to3": "②길이는 ③보다 큰 값을 넣어주세요.",
|
"surface.shape.validate.size.2to3": "②길이는 ③보다 큰 값을 넣어주세요.",
|
||||||
"surface.shape.validate.size.3to2": "③길이는 ②보다 큰 값을 넣어주세요.",
|
"surface.shape.validate.size.3to2": "③길이는 ②보다 큰 값을 넣어주세요.",
|
||||||
"surface.shape.validate.size.3to4": "③길이는 ④보다 큰 값을 넣어주세요.",
|
"surface.shape.validate.size.3to4": "③길이는 ④보다 큰 값을 넣어주세요.",
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user