Revert "Sometimes, a bracket makes a huge difference"

This reverts commit 45c872df28.
This commit is contained in:
Lim Chee Aun 2023-03-31 19:46:54 +08:00
parent c9e120b753
commit c8d582184f

View file

@ -653,63 +653,62 @@ function StatusPage() {
enableTranslate enableTranslate
/> />
</InView> </InView>
{uiState !== 'loading' && {uiState !== 'loading' && !authenticated ? (
(!authenticated ? ( <div class="post-status-banner">
<p>
You're not logged in. Interactions (reply, boost,
etc) are not possible.
</p>
<Link to="/login" class="button">
Log in
</Link>
</div>
) : (
!sameInstance && (
<div class="post-status-banner"> <div class="post-status-banner">
<p> <p>
You're not logged in. Interactions (reply, boost, This post is from another instance (
<b>{instance}</b>). Interactions (reply, boost,
etc) are not possible. etc) are not possible.
</p> </p>
<Link to="/login" class="button"> <button
Log in type="button"
</Link> disabled={uiState === 'loading'}
</div> onClick={() => {
) : ( setUIState('loading');
!sameInstance && ( (async () => {
<div class="post-status-banner"> try {
<p> const results =
This post is from another instance ( await currentMasto.v2.search({
<b>{instance}</b>). Interactions (reply, boost, q: heroStatus.url,
etc) are not possible. type: 'statuses',
</p> resolve: true,
<button limit: 1,
type="button" });
disabled={uiState === 'loading'} if (results.statuses.length) {
onClick={() => { const status = results.statuses[0];
setUIState('loading'); navigate(
(async () => { currentInstance
try { ? `/${currentInstance}/s/${status.id}`
const results = : `/s/${status.id}`,
await currentMasto.v2.search({ );
q: heroStatus.url, } else {
type: 'statuses', throw new Error('No results');
resolve: true,
limit: 1,
});
if (results.statuses.length) {
const status = results.statuses[0];
navigate(
currentInstance
? `/${currentInstance}/s/${status.id}`
: `/s/${status.id}`,
);
} else {
throw new Error('No results');
}
} catch (e) {
setUIState('default');
alert('Error: ' + e);
console.error(e);
} }
})(); } catch (e) {
}} setUIState('default');
> alert('Error: ' + e);
<Icon icon="transfer" /> Switch to my instance console.error(e);
to enable interactions }
</button> })();
</div> }}
) >
))} <Icon icon="transfer" /> Switch to my instance to
enable interactions
</button>
</div>
)
)}
</> </>
) : ( ) : (
<Link <Link