5
5
AccordionIcon ,
6
6
AccordionItem ,
7
7
AccordionPanel ,
8
- Alert ,
9
- AlertIcon ,
10
8
Box ,
11
9
Button ,
12
10
Card ,
@@ -42,8 +40,6 @@ import { Link } from "react-router-dom";
42
40
import { DiscordMessageFormData } from "../../../../types/discord" ;
43
41
import { notifyError } from "../../../../utils/notifyError" ;
44
42
import { useUserFeedArticles } from "../../../feed/hooks" ;
45
- import { UserFeedArticleRequestStatus } from "../../../feed/types" ;
46
- import { getErrorMessageForArticleRequestStatus } from "../../../feed/utils" ;
47
43
import { ArticlePlaceholderTable } from "../ArticlePlaceholderTable" ;
48
44
import { DiscordMessageForm } from "../DiscordMessageForm" ;
49
45
import { ArticleSelectDialog } from "../../../feed/components" ;
@@ -52,6 +48,7 @@ import { pages } from "../../../../constants";
52
48
import { UserFeedConnectionTabSearchParam } from "../../../../constants/userFeedConnectionTabSearchParam" ;
53
49
import { UserFeedTabSearchParam } from "../../../../constants/userFeedTabSearchParam" ;
54
50
import { useUserFeedConnectionContext } from "../../../../contexts/UserFeedConnectionContext" ;
51
+ import { useGetUserFeedArticlesError } from "../../hooks" ;
55
52
56
53
interface Props {
57
54
onMessageUpdated : ( data : DiscordMessageFormData ) => Promise < void > ;
@@ -69,6 +66,7 @@ export const MessageTabSection = ({ onMessageUpdated, guildId }: Props) => {
69
66
refetch : refetchUserFeedArticle ,
70
67
fetchStatus : userFeedArticlesFetchStatus ,
71
68
status : userFeedArticlesStatus ,
69
+ error,
72
70
} = useUserFeedArticles ( {
73
71
feedId : userFeed . id ,
74
72
data : {
@@ -83,8 +81,13 @@ export const MessageTabSection = ({ onMessageUpdated, guildId }: Props) => {
83
81
} ,
84
82
} ) ;
85
83
84
+ const { alertComponent } = useGetUserFeedArticlesError ( {
85
+ getUserFeedArticlesStatus : userFeedArticlesStatus ,
86
+ getUserFeedArticlesError : error ,
87
+ getUserFeedArticlesOutput : userFeedArticles ,
88
+ } ) ;
89
+
86
90
const firstArticle = userFeedArticles ?. result . articles [ 0 ] ;
87
- const requestStatus = userFeedArticles ?. result . requestStatus ;
88
91
89
92
const { t } = useTranslation ( ) ;
90
93
@@ -101,37 +104,6 @@ export const MessageTabSection = ({ onMessageUpdated, guildId }: Props) => {
101
104
setSelectedArticleId ( articleId ) ;
102
105
} ;
103
106
104
- const fetchErrorAlert = userFeedArticlesStatus === "error" && (
105
- < Alert status = "error" >
106
- < AlertIcon />
107
- { t ( "common.errors.somethingWentWrong" ) }
108
- </ Alert >
109
- ) ;
110
-
111
- const alertStatus =
112
- requestStatus && requestStatus !== UserFeedArticleRequestStatus . Success
113
- ? getErrorMessageForArticleRequestStatus (
114
- requestStatus ,
115
- userFeedArticles ?. result ?. response ?. statusCode
116
- )
117
- : null ;
118
-
119
- const parseErrorAlert = alertStatus && (
120
- < Alert status = { alertStatus . status || "error" } >
121
- < AlertIcon />
122
- { t ( alertStatus . ref ) }
123
- </ Alert >
124
- ) ;
125
-
126
- const noArticlesAlert = userFeedArticles ?. result . articles . length === 0 && (
127
- < Alert status = "info" >
128
- < AlertIcon />
129
- { t ( "features.feedConnections.components.articlePlaceholderTable.noArticles" ) }
130
- </ Alert >
131
- ) ;
132
-
133
- const hasAlert = ! ! ( fetchErrorAlert || parseErrorAlert || noArticlesAlert ) ;
134
-
135
107
const firstArticleTitle = ( firstArticle as Record < string , string > ) ?. title ;
136
108
const firstArticleDate = ( firstArticle as Record < string , string > ) ?. date ;
137
109
@@ -176,7 +148,7 @@ export const MessageTabSection = ({ onMessageUpdated, guildId }: Props) => {
176
148
</ Text >
177
149
</ Stack >
178
150
) }
179
- { ! hasAlert && firstArticle && (
151
+ { ! alertComponent && firstArticle && (
180
152
< ArticlePlaceholderTable
181
153
asPlaceholders
182
154
article = { userFeedArticles . result . articles [ 0 ] }
@@ -225,13 +197,13 @@ export const MessageTabSection = ({ onMessageUpdated, guildId }: Props) => {
225
197
corresponding article content.
226
198
</ Text >
227
199
</ Stack >
228
- { fetchErrorAlert || parseErrorAlert || noArticlesAlert }
200
+ { alertComponent }
229
201
{ userFeedArticlesStatus === "loading" && (
230
202
< Center mt = { 6 } >
231
203
< Spinner />
232
204
</ Center >
233
205
) }
234
- { ! hasAlert && firstArticle && (
206
+ { ! alertComponent && firstArticle && (
235
207
< Card size = "md" >
236
208
< CardHeader padding = { 0 } margin = { 5 } >
237
209
< Heading size = "xs" as = "h4" textTransform = "uppercase" >
0 commit comments