Skip to content

Commit

Permalink
ui(footer): improve label and colors of websocket indicator
Browse files Browse the repository at this point in the history
  • Loading branch information
theborakompanioni committed Oct 13, 2023
1 parent 5900a8c commit 1a86f40
Show file tree
Hide file tree
Showing 2 changed files with 15 additions and 10 deletions.
20 changes: 12 additions & 8 deletions src/components/Footer.tsx
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
import { useState, useEffect, useMemo } from 'react'
import classNames from 'classnames'
import * as rb from 'react-bootstrap'
import { Trans, useTranslation } from 'react-i18next'
import { useSettings, useSettingsDispatch } from '../context/SettingsContext'
Expand All @@ -24,17 +25,11 @@ export default function Footer() {
const websocketState = useWebsocketState()
const currentWallet = useCurrentWallet()

const [websocketConnected, setWebsocketConnected] = useState(false)
const [showBetaWarning, setShowBetaWarning] = useState(false)
const [showCheatsheet, setShowCheatsheet] = useState(false)

const cheatsheetEnabled = useMemo(() => !!currentWallet, [currentWallet])

// update the connection indicator based on the websocket connection state
useEffect(() => {
setWebsocketConnected(websocketState === WebSocket.OPEN)
}, [websocketState])

useEffect(() => {
let timer: NodeJS.Timeout
// show the cheatsheet once after the first wallet has been created
Expand Down Expand Up @@ -142,12 +137,21 @@ export default function Footer() {
placement="top"
overlay={(props) => (
<rb.Tooltip {...props}>
{websocketConnected ? t('footer.connected') : t('footer.disconnected')}
{websocketState === WebSocket.OPEN ? (
<>{t('footer.websocket_connected')}</>
) : websocketState === WebSocket.CONNECTING ? (
<>{t('footer.websocket_connecting')}</>
) : (
<>{t('footer.websocket_disconnected')}</>
)}
</rb.Tooltip>
)}
>
<span
className={`mx-1 ${websocketConnected ? 'text-success' : 'text-danger'}`}
className={classNames('mx-1', {
'text-success': websocketState === WebSocket.OPEN,
'text-warning': websocketState === WebSocket.CONNECTING,
})}
data-testid="connection-indicator-icon"
>
<Sprite symbol="node" width="24px" height="24px" />
Expand Down
5 changes: 3 additions & 2 deletions src/i18n/locales/en/translation.json
Original file line number Diff line number Diff line change
Expand Up @@ -51,8 +51,9 @@
"warning_alert_text": "While JoinMarket is tried and tested, Jam is not. It is in a beta stage, so use with caution.",
"warning_alert_button_ok": "Fine with me.",
"cheatsheet": "Cheatsheet",
"connected": "Connected",
"disconnected": "Disconnected"
"websocket_connecting": "Websocket connecting...",
"websocket_connected": "Websocket connected",
"websocket_disconnected": "Websocket disconnected"
},
"onboarding": {
"splashscreen_title": "Jam",
Expand Down

0 comments on commit 1a86f40

Please sign in to comment.