Feature/게시글 수정하기 버튼 활성화 안 됨 #880 #889
Merged
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
연관 이슈
작업 요약
작업 상세 설명
getQueryData
로 데이터를 로드하던 방식을useGetPostFilesQuery
함수를 사용하여 데이터를 받아오는 방식으로 수정하였습니다.getQueryData
함수를 사용하면 새로 고침시, 캐싱된 데이터가 날라가기때문에 기존에 저장되어있는 값을 가져오지 못하는 문제가 발생합니다.useGetPostFilesQuery
함수를 사용하여 새로 고침하더라도 페이지에서 API 함수를 호출해서 데이터를 가져오는 방식으로 변경하여 해결하였습니다.BoardView
페이지 로딩시fileOpen
변수의 초기값이 false로 설정되어 있어 첨부파일 목록을 펼치지 않으면 파일 데이터를 받아오지 않아 수정버튼을 눌러도 데이터가 전달되지 않았습니다.fileOpen
의 변수 초기값을 true로 설정하고useEffect()
함수를 사용하여 페이지 로딩시 첨부파일 목록을 닫게 만들어 사용자가 보기엔 똑같이 첨부파일이 닫혀보이는 상태이지만 데이터는 불러온 상태가 되도록 수정하였습니다.리뷰 요구사항