Skip to content

Commit 348daed

Browse files
authored
Merge pull request #574 from velopert/fix/post-remove
게시글 삭제 UE 개선
2 parents f27a24f + 72208d1 commit 348daed

File tree

3 files changed

+19
-4
lines changed

3 files changed

+19
-4
lines changed

src/components/post/PostHead.tsx

+1
Original file line numberDiff line numberDiff line change
@@ -176,6 +176,7 @@ const PostHead: React.FC<PostHeadProps> = ({
176176
toggleAskRemove();
177177
onRemove();
178178
};
179+
179180
return (
180181
<PostHeadBlock>
181182
<div className="head-wrapper">

src/containers/post/PostViewer.tsx

+17-4
Original file line numberDiff line numberDiff line change
@@ -101,6 +101,7 @@ const PostViewer: React.FC<PostViewerProps> = ({
101101
);
102102
const prefetched = useRef(false);
103103

104+
const [isRemoveLoading, setIsRemoveLoading] = useState(false);
104105
const [removePost] = useMutation(REMOVE_POST);
105106
const [postView] = useMutation(POST_VIEW);
106107
const [likePost, { loading: loadingLike }] = useMutation(LIKE_POST);
@@ -252,15 +253,27 @@ const PostViewer: React.FC<PostViewerProps> = ({
252253

253254
const onRemove = async () => {
254255
if (!data || !data.post) return;
256+
setIsRemoveLoading(true);
255257
try {
256258
await removePost({
257259
variables: {
258260
id: data.post.id,
259261
},
260262
});
261-
history.push('/');
262-
await client.resetStore();
263-
} catch (e) {}
263+
264+
toast.success('게시글이 성공적으로 삭제되었습니다.', {
265+
autoClose: 800,
266+
onClose: () => {
267+
const redirect = `${process.env
268+
.REACT_APP_CLIENT_V3_HOST!}/@${username}/posts`;
269+
window.location.href = redirect;
270+
},
271+
});
272+
} catch (e) {
273+
toast.error('게시글 삭제 실패');
274+
console.error('Post deletion failed:', e);
275+
setIsRemoveLoading(false);
276+
}
264277
};
265278

266279
if (error) {
@@ -377,7 +390,7 @@ const PostViewer: React.FC<PostViewerProps> = ({
377390
}
378391
};
379392

380-
if (!data || !data.post) return <PostSkeleton />;
393+
if (!data || !data.post || isRemoveLoading) return <PostSkeleton />;
381394

382395
const { post } = data;
383396

src/containers/velog/SeriesPosts.tsx

+1
Original file line numberDiff line numberDiff line change
@@ -81,6 +81,7 @@ const SeriesPosts: React.FC<SeriesPostsProps> = ({ username, urlSlug }) => {
8181
});
8282
} catch (e) {
8383
toast.error('시리즈 삭제 실패');
84+
console.error('Series deletion failed:', e);
8485
}
8586
};
8687

0 commit comments

Comments
 (0)