From 2031e88d87ce6dc6847b09a7fd2ff01701d3bdc0 Mon Sep 17 00:00:00 2001 From: Lim Chee Aun Date: Sun, 1 Jan 2023 15:28:07 +0800 Subject: [PATCH] Better handling of failures Some mastodon instances are getting hit hard --- src/pages/home.jsx | 14 ++- src/pages/notifications.jsx | 9 +- src/pages/status.jsx | 230 ++++++++++++++++++++---------------- 3 files changed, 149 insertions(+), 104 deletions(-) diff --git a/src/pages/home.jsx b/src/pages/home.jsx index eb2e0af1..f6c2d96d 100644 --- a/src/pages/home.jsx +++ b/src/pages/home.jsx @@ -276,7 +276,19 @@ function Home({ hidden }) { )} {uiState === 'error' && ( -

Error loading statuses

+

+ Unable to load statuses +
+
+ +

)} )} diff --git a/src/pages/notifications.jsx b/src/pages/notifications.jsx index e5a9c59b..8597e073 100644 --- a/src/pages/notifications.jsx +++ b/src/pages/notifications.jsx @@ -402,7 +402,14 @@ function Notifications() { )} {uiState === 'error' && ( -

Error loading notifications

+

+ Unable to load notifications +
+
+ +

)} )} diff --git a/src/pages/status.jsx b/src/pages/status.jsx index 992891a6..a8e7ea50 100644 --- a/src/pages/status.jsx +++ b/src/pages/status.jsx @@ -103,7 +103,6 @@ function StatusPage({ id }) { } catch (e) { console.error(e); setUIState('error'); - alert('Error fetching status'); return; } } @@ -345,114 +344,141 @@ function StatusPage({ id }) { - + )} + + ) : ( + <> + {uiState === 'loading' && ( + + )} + {uiState === 'error' && ( +

+ Unable to load status +
+
+ +

+ )} + + )} );