Skip to content

Commit b388e62

Browse files
authored
convertUTCToKoreanTime 적용 해제 (#476)
* fix: 채팅 UTC time 적용해제 * fix: 알림 UTC time 적용해제
1 parent 6647ca3 commit b388e62

File tree

7 files changed

+14
-35
lines changed

7 files changed

+14
-35
lines changed

src/components/NotificationItem/NotificationItem.tsx

+1-2
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
import { Flex } from '@components/shared/Flex';
22
import { Text } from '@components/shared/Text';
33

4-
import { convertUTCToKoreanTime } from '@utils/convertUTCToKoreanTime';
54
import { createdAtToString } from '@utils/createdAtToString';
65

76
import {
@@ -38,7 +37,7 @@ const NotificationItem = ({
3837
{title}
3938
</Text>
4039
<AgoText size={8} weight={300} nowrap>
41-
{createdAtToString(new Date(convertUTCToKoreanTime(createdAt)))}
40+
{createdAtToString(new Date(createdAt))}
4241
{!read && <Badge />}
4342
</AgoText>
4443
</Flex>

src/pages/ChatRoomListPage/components/ChatRoomItem.tsx

+1-4
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,6 @@ import { ChatRoom } from '@type/models/ChatRoom.ts';
66

77
import { CHAT_ROOM_TAB_TITLE } from '@constants/chat.ts';
88

9-
import { convertUTCToKoreanTime } from '@utils/convertUTCToKoreanTime.ts';
109
import { createdAtToString } from '@utils/createdAtToString.ts';
1110

1211
import {
@@ -53,8 +52,6 @@ export const ChatRoomItem = ({
5352
playTimeMinutes,
5453
} = chatRoomItem;
5554

56-
const lastTime = convertUTCToKoreanTime(lastMessageCreatedAt);
57-
5855
return (
5956
<Flex justify="space-between" onClick={onClickChatRoomItem}>
6057
<Flex gap={8}>
@@ -80,7 +77,7 @@ export const ChatRoomItem = ({
8077
</MessageContainer>
8178
</Flex>
8279
<DateText size={8} color={theme.PALETTE.GRAY_500} nowrap>
83-
{createdAtToString(new Date(lastTime))}
80+
{createdAtToString(new Date(lastMessageCreatedAt))}
8481
</DateText>
8582
</Flex>
8683
);

src/pages/ChattingPage/components/Chat.tsx

+1-3
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,6 @@ import { ChatMessage } from '@type/models/ChatMessage';
88

99
import { CHAT_TYPE } from '@constants/chat';
1010

11-
import { convertUTCToKoreanTime } from '@utils/convertUTCToKoreanTime';
12-
1311
import {
1412
BalloonContainer,
1513
BalloonInfo,
@@ -59,7 +57,7 @@ export const Chat = ({
5957
{}
6058
</Text>
6159
<Text size={10} weight={300}>
62-
{String(convertUTCToKoreanTime(createdAt)).slice(11, 16)}
60+
{String(createdAt).slice(11, 16)}
6361
</Text>
6462
</BalloonInfo>
6563
</Flex>

src/pages/ChattingPage/hooks/useChattingPage.ts

+7-5
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ import { CHAT_TYPE } from '@constants/chat';
1919
import { PATH_NAME } from '@constants/pathName';
2020

2121
import { MODAL_CONTENTS } from '../constants/modalContents';
22-
import { formatDateString, getKoreanDay } from '../services/formatDate';
22+
import { formatDateString, getSlicedTime } from '../services/formatDate';
2323
import { useQuitCondition } from '../services/quitChatCondition';
2424
import {
2525
connect,
@@ -75,8 +75,10 @@ export const useChattingPage = () => {
7575
return [...prevChats, dateSystemMessage, chat];
7676
}
7777

78-
const prevCreatedAt = getKoreanDay(prevChatMessages[idx - 1].createdAt);
79-
const curCreatedAt = getKoreanDay(chat.createdAt);
78+
const prevCreatedAt = getSlicedTime(
79+
prevChatMessages[idx - 1].createdAt
80+
);
81+
const curCreatedAt = getSlicedTime(chat.createdAt);
8082

8183
if (prevCreatedAt !== curCreatedAt) {
8284
const dateSystemMessage = createDateSystemMessage(chat);
@@ -115,11 +117,11 @@ export const useChattingPage = () => {
115117
roomId,
116118
subscribeEvent: (received: ChatMessage) =>
117119
setChatMessages((prev: ChatMessage[]) => {
118-
const prevCreatedAt = getKoreanDay(
120+
const prevCreatedAt = getSlicedTime(
119121
prev[prev.length - 1].createdAt
120122
);
121123

122-
const curCreatedAt = getKoreanDay(received.createdAt);
124+
const curCreatedAt = getSlicedTime(received.createdAt);
123125

124126
if (prevCreatedAt !== curCreatedAt) {
125127
const dateSystemMessage = createDateSystemMessage(received);
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,5 @@
11
import { WEEKDAY } from '@constants/weekday';
22

3-
import { convertUTCToKoreanTime } from '@utils/convertUTCToKoreanTime';
4-
53
export const formatDateString = (created: Date) => {
64
const date = new Date(created);
75
const year = date.getFullYear();
@@ -12,5 +10,4 @@ export const formatDateString = (created: Date) => {
1210
return `${year}${month}${day}${daysOfWeek}요일`;
1311
};
1412

15-
export const getKoreanDay = (date: Date) =>
16-
String(convertUTCToKoreanTime(date)).slice(0, 10);
13+
export const getSlicedTime = (date: Date) => String(date).slice(0, 10);

src/pages/NotificationPage/components/GameNotificationItem/getGameNotificationTitle.ts

+3-1
Original file line numberDiff line numberDiff line change
@@ -2,5 +2,7 @@ export const getGameNotificationTitle = (
22
playDate: string,
33
mainAddress: string
44
) => {
5-
return `${playDate.split('-').slice(1)} ${mainAddress.split(' ')[0]}`;
5+
return `${playDate.split('-').slice(1).join('.')} ${
6+
mainAddress.split(' ')[0]
7+
}`;
68
};

src/utils/convertUTCToKoreanTime.ts

-16
This file was deleted.

0 commit comments

Comments
 (0)