Better handling of failures

Some mastodon instances are getting hit hard
This commit is contained in:
Lim Chee Aun 2023-01-01 15:28:07 +08:00
parent 951c93a070
commit 2031e88d87
3 changed files with 149 additions and 104 deletions

View file

@ -276,7 +276,19 @@ function Home({ hidden }) {
</ul>
)}
{uiState === 'error' && (
<p class="ui-state">Error loading statuses</p>
<p class="ui-state">
Unable to load statuses
<br />
<br />
<button
type="button"
onClick={() => {
loadStatuses(true);
}}
>
Try again
</button>
</p>
)}
</>
)}

View file

@ -402,7 +402,14 @@ function Notifications() {
</>
)}
{uiState === 'error' && (
<p class="ui-state">Error loading notifications</p>
<p class="ui-state">
Unable to load notifications
<br />
<br />
<button type="button" onClick={() => loadNotifications(true)}>
Try again
</button>
</p>
)}
</>
)}

View file

@ -103,7 +103,6 @@ function StatusPage({ id }) {
} catch (e) {
console.error(e);
setUIState('error');
alert('Error fetching status');
return;
}
}
@ -345,6 +344,7 @@ function StatusPage({ id }) {
</Link>
</div>
</header>
{!!statuses.length && heroStatus ? (
<ul
class={`timeline flat contextual grow ${
uiState === 'loading' ? 'loading' : ''
@ -453,6 +453,32 @@ function StatusPage({ id }) {
</li>
)}
</ul>
) : (
<>
{uiState === 'loading' && (
<ul class="timeline flat contextual grow loading">
<li>
<Status skeleton size="l" />
</li>
</ul>
)}
{uiState === 'error' && (
<p class="ui-state">
Unable to load status
<br />
<br />
<button
type="button"
onClick={() => {
states.reloadStatusPage++;
}}
>
Try again
</button>
</p>
)}
</>
)}
</div>
</div>
);