-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* New : 시간 포맷 스펙 작성 * New : 시간 포맷함수 구현 * Refactor : 인터페이스 변경 * Refactor : 변경된 시간 표기 적용 * Minor : 사용하지 않는 모듈 제거 * Refactor : 해시태그리스트 중복제거 로직 추가, wrap 속성 추가
- Loading branch information
1 parent
2e939f3
commit de5b272
Showing
5 changed files
with
80 additions
and
24 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,26 @@ | ||
import formatTime from "@/utils/formatTime"; | ||
|
||
describe("인스타그램 스타일 시간 포매팅 함수", () => { | ||
const MOCK_NOW = "Thu Dec 14 2023 00:50:25 GMT+0900 (한국 표준시)"; | ||
const THREE_DAYS_AGO = "Thu Dec 11 2023 00:50:25 GMT+0900 (한국 표준시)"; | ||
const EIGHT_DAYS_AGO = "Thu Dec 6 2023 00:50:25 GMT+0900 (한국 표준시)"; | ||
const ONE_MONTH_AGO = "Thu Nov 11 2023 00:50:25 GMT+0900 (한국 표준시)"; | ||
const THREE_MONTH_AGO = "Thu Sep 11 2023 00:50:25 GMT+0900 (한국 표준시)"; | ||
const ONE_YEAR_AGO = "Thu Dec 14 2022 00:50:25 GMT+0900 (한국 표준시)"; | ||
|
||
it("3일 전이 입력되었을때 '3일 전' 이 출력되는지", () => { | ||
expect(formatTime(THREE_DAYS_AGO, MOCK_NOW)).toEqual("3일 전"); | ||
}); | ||
it("8일 전이 입력되었을때 '1주 전' 이 출력되는지", () => { | ||
expect(formatTime(EIGHT_DAYS_AGO, MOCK_NOW)).toEqual("1주 전"); | ||
}); | ||
it("1달전 이 입력되었을때 '1달 전'이 출력되는지 Trim 하는지 여부", () => { | ||
expect(formatTime(ONE_MONTH_AGO, MOCK_NOW)).toEqual("1달 전"); | ||
}); | ||
it("3달전 이 입력되었을때 '3달 전'이 출력되는지 Trim 하는지 여부", () => { | ||
expect(formatTime(THREE_MONTH_AGO, MOCK_NOW)).toEqual("3달 전"); | ||
}); | ||
it("1년전 이 입력되었을때 '1년 전'이 출력되는지 Trim 하는지 여부", () => { | ||
expect(formatTime(ONE_YEAR_AGO, MOCK_NOW)).toEqual("1년 전"); | ||
}); | ||
}); |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,37 @@ | ||
import dayjs from "dayjs"; | ||
import "dayjs/locale/ko"; | ||
import relativeTime from "dayjs/plugin/relativeTime"; | ||
|
||
// 상대적인 시간을 표시하기 위해 플러그인 추가 | ||
dayjs.extend(relativeTime); | ||
dayjs.locale("ko"); // 로캘을 한국어로 설정 | ||
|
||
/** | ||
* Instagram 스타일의 작성 시간 포맷 함수 | ||
*/ | ||
const formatTime = (timestamp: string, now?: string) => { | ||
const postTime = dayjs(timestamp); | ||
const currentTime = dayjs(now || new Date()); | ||
|
||
// 1주 ~ 1달 까지는 n주 전 으로 표기 | ||
if ( | ||
currentTime.diff(postTime, "day") >= 7 && | ||
currentTime.diff(postTime, "month") < 1 | ||
) { | ||
return `${currentTime.diff(postTime, "week")}주 전`; | ||
} | ||
|
||
// 1년전을 일 년 전 이 아닌 1년 전 으로 표기 | ||
if (currentTime.diff(postTime, "year") === 1) { | ||
return `${currentTime.diff(postTime, "year")}년 전`; | ||
} | ||
// 1년 전을 일 년 전 이 아닌 1년 전 으로 표기 | ||
if (currentTime.diff(postTime, "month") === 1) { | ||
return `${currentTime.diff(postTime, "month")}달 전`; | ||
} | ||
|
||
// 그 외의 경우에는 상대적인 시간 표시 | ||
return postTime.fromNow(); | ||
}; | ||
|
||
export default formatTime; |