diff --git a/src/components/status.jsx b/src/components/status.jsx index 046725f8..bc52ccce 100644 --- a/src/components/status.jsx +++ b/src/components/status.jsx @@ -60,7 +60,7 @@ function Status({ ); } - const { masto, instance } = api({ instance: propInstance }); + const { masto, instance, authenticated } = api({ instance: propInstance }); const { instance: currentInstance } = api(); const sameInstance = instance === currentInstance; @@ -388,7 +388,7 @@ function Status({ { states.statuses[sKey].poll = newPoll; }} @@ -517,7 +517,7 @@ function Status({ icon="comment" count={repliesCount} onClick={() => { - if (!sameInstance) { + if (!sameInstance || !authenticated) { return alert(unauthInteractionErrorMessage); } states.showCompose = { @@ -537,7 +537,7 @@ function Status({ icon="rocket" count={reblogsCount} onClick={async () => { - if (!sameInstance) { + if (!sameInstance || !authenticated) { return alert(unauthInteractionErrorMessage); } try { @@ -580,7 +580,7 @@ function Status({ icon="heart" count={favouritesCount} onClick={async () => { - if (!sameInstance) { + if (!sameInstance || !authenticated) { return alert(unauthInteractionErrorMessage); } try { @@ -616,7 +616,7 @@ function Status({ class="bookmark-button" icon="bookmark" onClick={async () => { - if (!sameInstance) { + if (!sameInstance || !authenticated) { return alert(unauthInteractionErrorMessage); } try { diff --git a/src/pages/status.css b/src/pages/status.css index c812723a..0805628e 100644 --- a/src/pages/status.css +++ b/src/pages/status.css @@ -36,21 +36,20 @@ pointer-events: none; } -.status-deck footer { +.post-status-banner { position: sticky; bottom: 16px; bottom: max(16px, env(safe-area-inset-bottom)); font-size: 90%; - background-color: var(--bg-faded-blur-color); - backdrop-filter: blur(16px); + background-color: var(--bg-faded-color); padding: 16px; - margin: 16px; + margin: 0 16px; border-radius: 16px; white-space: pre-wrap; line-height: 1.2; max-width: var(--main-width); } -.status-deck footer > p:first-of-type { +.post-status-banner > p:first-of-type { margin-top: 0; padding-top: 0; } diff --git a/src/pages/status.jsx b/src/pages/status.jsx index 5ae5304a..312f8b02 100644 --- a/src/pages/status.jsx +++ b/src/pages/status.jsx @@ -40,7 +40,7 @@ function resetScrollPosition(id) { function StatusPage() { const { id, ...params } = useParams(); - const { masto, instance } = api({ instance: params.instance }); + const { masto, instance, authenticated } = api({ instance: params.instance }); const { masto: currentMasto, instance: currentInstance } = api(); const sameInstance = instance === currentInstance; const navigate = useNavigate(); @@ -609,19 +609,70 @@ function StatusPage() { } ${thread ? 'thread' : ''} ${isHero ? 'hero' : ''}`} > {isHero ? ( - - - + <> + + + + {!sameInstance && uiState !== 'loading' && ( +
+

+ This post is from another instance ( + {instance}). Interactions (reply, boost, etc) + are not possible. +

+ +
+ )} + {sameInstance && + !authenticated && + uiState !== 'loading' && ( +
+

+ You're not logged in. Interactions (reply, boost, + etc) are not possible. +

+ + Log in + +
+ )} + ) : ( )} - {!sameInstance && uiState !== 'loading' && ( - - )} );