Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

컴포넌트 리렌더링 최적화 #24

Open
wants to merge 3 commits into
base: master
Choose a base branch
from

Conversation

cychann
Copy link
Owner

@cychann cychann commented Nov 26, 2024

📝 설명

컴포넌트의 불필요한 리렌더링을 방지하고, 최적화합니다. #21

✅ PR 유형

  • 코드 리팩토링

💻 작업 내용

  • 컴포넌트 책임 분리를 통한 리렌더링 범위 최소화
  • children props 패턴을 활용한 효율적인 컴포넌트 구조 설계
  • Zustand 상태 관리 최적화를 통한 전반적인 성능 향상

- TitleSection 컴포넌트 책임 분리
  - 배경 관련 로직을 TitleBackground 컴포넌트로 분리 및 children props를 활용한 유용한 컴포넌트 구조 개선
  - 각 컴포넌트가 필요한 상태만 구독하도록 개선

- TitleStore 상태 관리 개선
  - hasTitleBackground 상태 추가로 배경 변경 관련 로직 개선
  - 저장 로직에서 getState() 사용하도록 수정
- EditorToolbar 구조 개선
  - 툴바 위치 관련 로직을 ToolbarPosition 컴포넌트로 분리
  - 스크롤 이벤트에 따른 불필요한 리렌더링 방지
- EditorToolIcons 컴포넌트 분리
  - 블록 관련 로직을 별도 컴포넌트로 분리
- 객체 구조분해할당 방식에서 개별 selector 방식으로 변경
@cychann cychann added the enhancement New feature or request label Nov 26, 2024
@cychann cychann self-assigned this Nov 26, 2024
Copy link

vercel bot commented Nov 26, 2024

The latest updates on your projects. Learn more about Vercel for Git ↗︎

Name Status Preview Comments Updated (UTC)
react-editor-js ✅ Ready (Inspect) Visit Preview 💬 Add feedback Nov 26, 2024 0:37am

@cychann cychann linked an issue Nov 26, 2024 that may be closed by this pull request
3 tasks
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
enhancement New feature or request
Projects
None yet
Development

Successfully merging this pull request may close these issues.

컴포넌트 리렌더링 최적화
1 participant