import OthersRelayList from '@/components/OthersRelayList' import { RefreshButton } from '@/components/RefreshButton' import { useFetchProfile } from '@/hooks' import SecondaryPageLayout from '@/layouts/SecondaryPageLayout' import { usePrimaryNoteView } from '@/contexts/primary-note-view-context' import { forwardRef, useCallback, useEffect, useState } from 'react' import { useTranslation } from 'react-i18next' const RelaySettingsPage = forwardRef(({ id, index, hideTitlebar = false }: { id?: string; index?: number; hideTitlebar?: boolean }, ref) => { const { t } = useTranslation() const { registerPrimaryPanelRefresh } = usePrimaryNoteView() const { profile } = useFetchProfile(id) const [listKey, setListKey] = useState(0) const bumpList = useCallback(() => setListKey((k) => k + 1), []) useEffect(() => { if (!hideTitlebar) { registerPrimaryPanelRefresh(null) return } registerPrimaryPanelRefresh(bumpList) return () => registerPrimaryPanelRefresh(null) }, [hideTitlebar, registerPrimaryPanelRefresh, bumpList]) if (!id || !profile) { return null } return ( } >
) }) RelaySettingsPage.displayName = 'RelaySettingsPage' export default RelaySettingsPage