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

static 데이터 정리 #32

Merged
merged 3 commits into from
Sep 20, 2024
Merged

static 데이터 정리 #32

merged 3 commits into from
Sep 20, 2024

Conversation

flareseek
Copy link
Owner

PR 설명

�푸드트럭과 부스 리스트들을 데이터화 시켰습니다

부스 타입은

{
  id: string (unique한 )
  order: number (부스 번호)
  name: string (부스 이름)
  description: string (부스 설명)
  saleItems: {item: string (아이템 이름), price: { min: number | null , max: number | null} (가격, 최솟값 최댓값)}
  place: BoothPlaceType (부스 위치)
  visible:boolean (표시 할것인지)
  date: number[] (언제 열리는지)
  image: string (이미지 주소)
}

푸드트럭 타입은

{
  id: string (unique한 )
  order: number (부스 번호)
  name: string (부스 이름)
  menu: string[] (판매 음색)
  place: FoodtruckPlaceType (푸드트럭 위치)
  visible:boolean (표시 할것인지)
  date: number[] (언제 열리는지)
}

기타사항

데이터가 일정하지 않아서 어떻게 구조를 짜야할지 고민을 많이 했습니다.
특히 부스 한 곳에 날마다 이용하는 팀이 다른 곳도 있어서 날에 맞춰서 데이터를 제공해줘야 했네요

이미지도 동적으로 로드를 해야되는데 동적 import를 사용하자니 import 되기전에 사용하면 null 값을 표현하고
이걸 해결하자니 상태관리 라이브러리 써야되고
그래서 new URL() 방식을 사용하니 잘못된 경로처리를 못하고
좀 골치 아팠습니다.

일관적이지 않은 데이터 가공은 처음하다보니 감이 안잡혀서 시간이 오래 걸렸네요...

코드가 상당히 더러운데 코드리뷰 부탁드립니다

@flareseek flareseek added the feature 기능 추가 label Sep 18, 2024
Copy link

vercel bot commented Sep 18, 2024

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

Name Status Preview Comments Updated (UTC)
knuland ✅ Ready (Inspect) Visit Preview 💬 Add feedback Sep 18, 2024 2:05pm

@flareseek
Copy link
Owner Author

  • 추가로 부스 이미지중에 크기가 1mb 넘어가는것도 있습니다. 이거는 나중에 리사이징 같은거 해서 크기를 좀 줄여야 할 것 같아요

Copy link
Collaborator

@dandamdandam dandamdandam left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

데이터가 생각보다 많이 지저분했었네요.. 정리하느라 고생하셨습니다. 확인했습니다!

Copy link
Collaborator

@jjh4450 jjh4450 left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

order이 idx가 아닌 학생회에서 지정한 부스 번호임을 조심하면 상관없을 거 같습니다.

Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

이 메서드의 목적을 구체적으로 명시해 주시면 더 좋을 거 같습니다!

@dandamdandam dandamdandam merged commit 71a1b2e into develop Sep 20, 2024
3 checks passed
@dandamdandam dandamdandam deleted the feat/asset-info branch September 20, 2024 14:56
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
feature 기능 추가
Projects
None yet
Development

Successfully merging this pull request may close these issues.

3 participants