-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Feat: 에러바운더리 디자인 수정 (#183) * 마이페이지 관련 수정 (버튼 동작 및 ui 수정) (#185) * feat: 마이페이지에서 행성 만들기 버튼 동작 수정 * refactor: icon에 fill 제거 * refactor: 주민증없는 경우 ui 수정 * Fix/comment 3 (#192) * Fix: response type 수정 * Fix: comment error 수정 #159 * 404 페이지 (#194) * feat: error-ufo * feat: not-found page * Community route (#195) * feat: 행성 만들기 routing #170 * feat: #172 행성 id 기본값, communityTitle 제거 * refactor: switchCommunity 타입변경 반영 * style: cspell 추가 * feat: 마이페이지 행성 분기 로직 * feat: 행성 목록 user id * fix: coverImageUrl type null 처리 * feat: 행성 로고 기본 이미지 적용 * feat: 행성 기본 이미지 * feat: 행성 꾸미기 페이지 * feat: community -> planet 경로 수정 * feat: community -> planet 경로 수정 * feat: 행성 꾸미기 후 라우팅 * feat: 행성 꾸미기 설명 추가 * Add routing logic (#196) * Feat: Add routing logic when planet is created * Fix: Fix dev command * Feat: 행성 홈에서 주민증을 만드는 버튼 routing 로직 추가 * Feat: 주민증 생성 완료한 후 routing 로직 추가 * Feat: 행성 관리에서 수정 버튼 routing 로직 추가 --------- Co-authored-by: hyehyeon-moon <[email protected]> * Feat: 서비스 전체 에러페이지 (#197) * Feat/husky pre push (#201) * refactor: CommentInput 스토리 Props에러 * feat: pre-push build * Issue#189 (#206) * feat: gear icon * feat: 행성 관리 페이지로 이동 * refactor: AdminCommunityEditPage 서버 컴포넌트로 변경 * refactor: 행성 꾸미기 기본값 누락 * 7월 3일 flow 수정 작업 (#209) * refactor: getInvitationCodeIsValid(public -> private) * refactor: TemplateWrapper h-screen 높이 제거 * refactor: InvitationCodeValidationModel 스키마 수정 coummunityId -> id * refactor: middleware private api 관련 이슈 주석 * feat: root 경로 route로 처리 * refactor : UserInfoResponse 타입 수정 (dto) * refactor: 주민증 수정 mock profileImageUrl제거 * feat: mypage home root로 라우팅 * refactor: my-page:id -> my-page:communityId * feat: root url 변경 * refactor: CharacterCompleteStep에 useGetUserInfo타입 수정 --------- Co-authored-by: darae07 <[email protected]> --------- Co-authored-by: 강지영 <[email protected]> Co-authored-by: darae lee <[email protected]> Co-authored-by: 문혜현 <[email protected]> Co-authored-by: hyehyeon-moon <[email protected]> Co-authored-by: darae07 <[email protected]>
- Loading branch information
1 parent
70bfd8c
commit 776228e
Showing
59 changed files
with
466 additions
and
195 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
#!/usr/bin/env sh | ||
. "$(dirname -- "$0")/_/husky.sh" | ||
|
||
pnpm build |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,2 @@ | ||
export const ROOT_API_URL = process.env.ROOT_API_URL ?? 'http://43.201.214.187/api'; | ||
export const ROOT_URL = process.env.ROOT_API_URL ?? 'http://43.201.214.187'; | ||
export const ROOT_API_URL = process.env.ROOT_API_URL ?? 'https://ding-dong-planet.com/api'; | ||
export const ROOT_URL = process.env.ROOT_API_URL ?? 'https://ding-dong-planet.com/'; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
import 'server-only'; | ||
|
||
import { getCommunityDetailServer } from '~/api/domain/community.api.server'; | ||
import { CommunityAdminEdit } from '~/modules/CommunityAdmin/CommunityAdminEdit.client'; | ||
|
||
type AdminCommunityEditPageProps = { | ||
params: { | ||
id: number; | ||
}; | ||
}; | ||
|
||
const AdminCommunityEditPage = async ({ params: { id } }: AdminCommunityEditPageProps) => { | ||
const { communityDetailsDto } = await getCommunityDetailServer(Number(id)); | ||
|
||
return <CommunityAdminEdit {...communityDetailsDto} />; | ||
}; | ||
|
||
export default AdminCommunityEditPage; |
2 changes: 2 additions & 0 deletions
2
src/app/admin/community/[id]/page.tsx → src/app/admin/planet/[id]/page.tsx
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.
7 changes: 5 additions & 2 deletions
7
.../admin/community/create/result/layout.tsx → ...app/admin/planet/create/result/layout.tsx
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.
Oops, something went wrong.