feat(reply modal): show alert before posting if subplebbit might be offline

This commit is contained in:
Tom (plebeius.eth)
2024-06-08 21:33:56 +02:00
parent a2c1ec441f
commit d71889a3de
3 changed files with 30 additions and 6 deletions
+7 -5
View File
@@ -278,11 +278,13 @@ const PostForm = () => {
const offlineAlert = const offlineAlert =
showForm && showForm &&
(updatedAt (updatedAt ? (
? isBoardOffline && ( isBoardOffline && (
<div className={styles.offlineBoard}>{`Posts last synced ${getFormattedTimeAgo(updatedAt)}, the subplebbit might be offline and publishing might fail.`}</div> <div className={styles.offlineBoard}>{`Posts last synced ${getFormattedTimeAgo(updatedAt)}, the subplebbit might be offline and publishing might fail.`}</div>
) )
: `The subplebbit might be offline and publishing might fail.`); ) : (
<div className={styles.offlineBoard}>{`The subplebbit might be offline and publishing might fail.`}</div>
));
return ( return (
<> <>
@@ -91,6 +91,16 @@
top: 1px; top: 1px;
} }
.offlineBoard {
width: 292px;
font-family: monospace;
background-color: #E62020;
font-size: 12px;
color: white;
padding: 3px 7px 3px 5px;
text-shadow: 0 1px rgba(0, 0, 0, 0.20);
}
@media (max-width: 640px) { @media (max-width: 640px) {
.container { .container {
position: absolute; position: absolute;
+13 -1
View File
@@ -2,8 +2,9 @@ import { useEffect, useRef, useState } from 'react';
import { useParams } from 'react-router-dom'; import { useParams } from 'react-router-dom';
import { useTranslation } from 'react-i18next'; import { useTranslation } from 'react-i18next';
import Draggable from 'react-draggable'; import Draggable from 'react-draggable';
import { setAccount, useAccount, useSubplebbit } from '@plebbit/plebbit-react-hooks';
import Plebbit from '@plebbit/plebbit-js/dist/browser/index.js'; import Plebbit from '@plebbit/plebbit-js/dist/browser/index.js';
import { setAccount, useAccount } from '@plebbit/plebbit-react-hooks'; import { getFormattedTimeAgo } from '../../lib/utils/time-utils';
import { isValidURL } from '../../lib/utils/url-utils'; import { isValidURL } from '../../lib/utils/url-utils';
import useReply from '../../hooks/use-reply'; import useReply from '../../hooks/use-reply';
import useIsMobile from '../../hooks/use-is-mobile'; import useIsMobile from '../../hooks/use-is-mobile';
@@ -75,6 +76,15 @@ const ReplyModal = ({ closeModal, parentCid, scrollY }: ReplyModalProps) => {
} }
}, [parentCid]); }, [parentCid]);
const subplebbit = useSubplebbit({ subplebbitAddress });
const { updatedAt } = subplebbit || {};
const isBoardOffline = subplebbit?.updatedAt && subplebbit.updatedAt < Date.now() / 1000 - 60 * 60;
const offlineAlert = updatedAt
? isBoardOffline && (
<div className={styles.offlineBoard}>{`Posts last synced ${getFormattedTimeAgo(updatedAt)}, the subplebbit might be offline and publishing might fail.`}</div>
)
: `The subplebbit might be offline and publishing might fail.`;
const modalContent = ( const modalContent = (
<div className={styles.container} ref={nodeRef}> <div className={styles.container} ref={nodeRef}>
<div className={`replyModalHandle ${styles.title}`}> <div className={`replyModalHandle ${styles.title}`}>
@@ -124,6 +134,8 @@ const ReplyModal = ({ closeModal, parentCid, scrollY }: ReplyModalProps) => {
autoFocus={!isMobile} // autofocus causes auto scroll to top on mobile autoFocus={!isMobile} // autofocus causes auto scroll to top on mobile
/> />
</div> </div>
{offlineAlert}
<div className={styles.offlineAlert}></div>
<div className={styles.footer}> <div className={styles.footer}>
{url && ( {url && (
<> <>