Compare commits

..
30 Commits
Author SHA1 Message Date
Chris Troutner d72d98a2d7 Merge pull request #77 from Permissionless-Software-Foundation/ct-unstable
fix(nft card): Seller link only works if npub is defined
2025-11-14 11:15:37 -08:00
Chris Troutner 7237cb6c6a fix(nft card): Seller link only works if npub is defined 2025-11-14 11:14:55 -08:00
Chris Troutner 93c8eb42d3 Merge pull request #76 from Permissionless-Software-Foundation/dh-seller-link
feat(sell): Added link to Seller profile
2025-11-14 08:43:01 -08:00
Daniel Gonzalez fa3c71f0a1 feat(sell): Added link to Seller profile 2025-11-13 17:07:41 -04:00
Chris Troutner 34a6adbf56 Merge pull request #75 from Permissionless-Software-Foundation/nostr-api
Nostr: Switching from websockets to API
2025-11-05 09:39:59 -08:00
Chris Troutner f303b95741 fix(nostr): Better subscript management and preventing race conditions 2025-11-05 09:38:06 -08:00
Chris Troutner 55054b4e51 Fixing merge conflicts 2025-11-05 07:44:43 -08:00
Chris Troutner 9f7b11fbc4 Merge pull request #74 from Permissionless-Software-Foundation/dh-filter-posts
feat(nostr): Filter out posts from deletedPosts database
2025-11-05 07:32:44 -08:00
Chris Troutner cffeb76603 feat(Nostr): Switching to use of API from websockets 2025-11-05 07:31:54 -08:00
Daniel Gonzalez 9f6c0d3fc7 feat(nostr): Filter out posts from deletedPosts database 2025-11-04 19:39:01 -04:00
Daniel Gonzalez dfb0bca2ec moved deleted chats requests from async load to nostr queries 2025-11-04 19:31:21 -04:00
Chris Troutner efdfb7971b Merge pull request #73 from Permissionless-Software-Foundation/dh-filter-chats
feat(chat): Filter out chat messages from deletedChat database
2025-11-04 08:48:22 -08:00
Daniel Gonzalez 8c59bdf6d8 feat(chat): Filter out chat messages from deletedChat database 2025-11-03 15:12:46 -04:00
Chris Troutner 143def9164 Merge pull request #72 from Permissionless-Software-Foundation/dh-update-btn
feat(update): Added update button
2025-10-25 11:23:40 -07:00
Daniel Gonzalez b58309d82a feat(update): Added update button 2025-10-24 19:59:48 -04:00
Chris Troutner 61a5ad7166 Merge pull request #71 from Permissionless-Software-Foundation/dh-load-nft-db
feat(nft): Load NFT card from bch-dex DB
2025-10-21 12:57:18 -07:00
Daniel Gonzalez 3b1b6248ab feat(nft): Load NFT card from bch-dex DB 2025-10-20 18:38:58 -04:00
Chris Troutner cd44f28f28 Merge pull request #70 from Permissionless-Software-Foundation/ct-unstable
Syncing with upstream bch-wallet-web-spa
2025-10-19 14:55:23 -07:00
Chris Troutner 5d7994cefe Syncing with upstream bch-wallet-web-spa 2025-10-19 14:53:01 -07:00
Chris Troutner ae4916e8df Merge pull request #18 from Permissionless-Software-Foundation/ct-unstable
Ct unstable
2025-10-19 14:48:30 -07:00
Chris Troutner fe108caf33 Merge branch 'master' into ct-unstable 2025-10-19 14:47:09 -07:00
Chris Troutner 131a41fcb4 Merge pull request #17 from Permissionless-Software-Foundation/dh-down-servers
fix(server): Web Wallet needs to handle down servers
2025-10-19 14:41:43 -07:00
Daniel Gonzalez f25ac56cdb fix(server): Web Wallet needs to handle down servers 2025-10-18 15:46:29 -04:00
Chris Troutner 0fb8bc586b Merge pull request #69 from Permissionless-Software-Foundation/ct-unstable
fix(category): Using Misc as default category
2025-10-14 07:47:39 -07:00
Chris Troutner 4f8a6540e5 fix(category): Using Misc as default category 2025-10-14 07:46:21 -07:00
Chris Troutner b29ff5fb1f Merge branch 'master' into ct-unstable 2025-10-14 07:17:47 -07:00
Chris Troutner 9e576cbe83 Merge pull request #16 from Permissionless-Software-Foundation/dh-load-times
fix(load): Load BCH & SLP info in the background
2025-10-14 07:13:20 -07:00
Daniel Gonzalez e3b3b76430 fix(load): Load BCH & SLP info in the background 2025-10-13 17:34:50 -04:00
Chris Troutner dc6e6d956c Merge branch 'master' into ct-unstable 2025-09-20 09:37:13 -07:00
Chris Troutner 360be9f875 Adding LLM file 2025-06-19 17:22:28 -07:00
30 changed files with 5655 additions and 597 deletions
File diff suppressed because it is too large Load Diff
+46 -9
View File
@@ -67,6 +67,44 @@ function App (props) {
return false
}, [appData, addToModal])
/**
* Run background process to get bch and slp balance.
* Also update the background state process.
* On error this function should trigger a info modal notifying the errors.
*/
const backgroundAsync = useCallback(async (asyncLoad, walletTemp) => {
try {
appData.setModalBody(['Getting BCH balance in background!.'])
// Get Wallet Balance
await asyncLoad.getWalletBchBalance(walletTemp, appData.updateBchWalletState, appData)
// Update Background state
appData.updateBackGroundInitState({ bchInitLoaded: true })
// Get SLP Balance
appData.setModalBody(['Getting SLP tokens in background!.'])
await asyncLoad.getSlpTokenBalances(walletTemp, appData.updateBchWalletState, appData)
// Update Background state
appData.updateBackGroundInitState({ slpInitLoaded: true, asyncBackgroundFinished: true })
} catch (err) {
console.log('App.js backgroundAsync() error!', err)
appData.updateBackGroundInitState({ asyncBackgroundFinished: true })
addToModal(`Error: ${err.message}`, appData)
addToModal('Try selecting a different back end server using the drop-down menu at the bottom of the app.\'', appData)
// Update Modal State
appData.setHideSpinner(true)
appData.setShowStartModal(true)
appData.setDenyClose(false)
// Update the startup state.
appData.setAsyncInitFinished(true)
appData.setAsyncInitSucceeded(false)
}
}, [appData, addToModal])
/** Load all required data before component start. */
useEffect(() => {
async function asyncEffect () {
@@ -99,14 +137,6 @@ function App (props) {
appData.setWallet(walletTemp)
// appData.updateBchWalletState({ walletObj: walletTemp.walletInfo, appData })
// Get the BCH balance of the wallet.
addToModal('Getting BCH balance', appData)
await asyncLoad.getWalletBchBalance(walletTemp, appData.updateBchWalletState, appData)
// Get the SLP tokens held by the wallet.
addToModal('Getting SLP tokens', appData)
await asyncLoad.getSlpTokenBalances(walletTemp, appData.updateBchWalletState, appData)
// Get the BCH spot price
addToModal('Getting BCH spot price in USD', appData)
await asyncLoad.getUSDExchangeRate(walletTemp, appData.updateBchWalletState, appData)
@@ -133,6 +163,13 @@ function App (props) {
appData.setAsyncInitFinished(true)
appData.setAsyncInitSucceeded(true)
console.log('App.js useEffect() startup finished successfully')
backgroundAsync(asyncLoad, walletTemp)
// Get the BCH balance of the wallet.
// addToModal('Getting BCH balance', appData)
// Get the SLP tokens held by the wallet.
// addToModal('Getting SLP tokens', appData)
} catch (err) {
const errModalBody = [
`Error: ${err.message}`,
@@ -152,7 +189,7 @@ function App (props) {
}
}
asyncEffect()
}, [appData, addToModal, isSignleView])
}, [appData, addToModal, isSignleView, backgroundAsync])
return (
<>
@@ -3,18 +3,39 @@
*/
// Global npm libraries
import React from 'react'
import { Container, Row, Col, Card } from 'react-bootstrap'
import React, { useEffect, useState } from 'react'
import { Container, Row, Col, Card, Spinner } from 'react-bootstrap'
import { FontAwesomeIcon } from '@fortawesome/react-fontawesome'
import { faCoins } from '@fortawesome/free-solid-svg-icons'
const BalanceCard = (props) => {
const { appData } = props
const [sats, setSats] = useState('')
const [bchBalance, setbchBalance] = useState('')
const [usdBalance, setusdBalance] = useState('')
const bchjs = appData.wallet.bchjs
const sats = appData.bchWalletState.bchBalance
const bchBalance = bchjs.BitcoinCash.toBitcoinCash(sats)
const usdBalance = bchjs.Util.floor2(bchBalance * appData.bchWalletState.bchUsdPrice)
const { bchInitLoaded, asyncBackgroundFinished } = appData.asyncBackGroundInitState
// Calculate balances if wallet is successfully loaded!
useEffect(() => {
try {
const bchjs = appData.wallet.bchjs
if (bchjs && appData.asyncInitSucceeded) {
const sats = appData.bchWalletState.bchBalance
const bchBalance = bchjs.BitcoinCash.toBitcoinCash(sats)
const usdBalance = bchjs.Util.floor2(bchBalance * appData.bchWalletState.bchUsdPrice)
setSats(sats)
setbchBalance(bchBalance)
setusdBalance(usdBalance)
}
} catch (error) {
// console.warn(error)
}
}, [appData])
// Background bch data loaded finished
const backgroundDataLoaded = bchInitLoaded || asyncBackgroundFinished
const backgroundDataError = !bchInitLoaded && asyncBackgroundFinished
return (
<>
@@ -25,25 +46,37 @@ const BalanceCard = (props) => {
</Card.Title>
<br />
<Container>
<Row>
<Col>
<b>USD</b>: ${usdBalance}
</Col>
</Row>
{bchInitLoaded && (
<Container>
<Row>
<Col>
<b>USD</b>: ${usdBalance}
</Col>
</Row>
<Row>
<Col>
<b>BCH</b>: {bchBalance}
</Col>
</Row>
<Row>
<Col>
<b>BCH</b>: {bchBalance}
</Col>
</Row>
<Row>
<Col>
<b>Satoshis</b>: {sats}
</Col>
</Row>
</Container>
<Row>
<Col>
<b>Satoshis</b>: {sats}
</Col>
</Row>
</Container>)}
{backgroundDataError && (
<Container>
<span style={{ color: 'red' }}>Balance could not be loaded!</span>
</Container>
)}
{!backgroundDataLoaded && appData.asyncInitSucceeded && (
<div className='balance-spinner-container'>
<Spinner animation='border' />
</div>
)}
</Card.Body>
</Card>
</>
@@ -50,6 +50,9 @@ export default function RefreshBchBalance (props) {
// Get the latest balance of the wallet.
const newBalance = await wallet.getBalance({ bchAddress: cashAddr })
// if bchInitLoaded is 'false', them set as true , to show the new balance.
appData.updateBackGroundInitState({ bchInitLoaded: true })
addToModal('Updating BCH per USD price...')
const bchUsdPrice = await wallet.getUsd()
@@ -16,6 +16,10 @@ import RefreshBchBalance from './refresh-balance'
function RefreshBchBalanceButton (props) {
// Dependency injections of props
const appData = props.appData
const { bchInitLoaded, asyncBackgroundFinished } = appData.asyncBackGroundInitState
// Background bch data loaded finished
const backgroundDataLoaded = bchInitLoaded || asyncBackgroundFinished
// Child function references
const refreshBchBalanceRef = useRef()
@@ -28,7 +32,7 @@ function RefreshBchBalanceButton (props) {
return (
<>
<Button variant='success' onClick={() => { handleButtonRefreshBalance(appData) }}>
<Button variant='success' onClick={() => { handleButtonRefreshBalance(appData) }} disabled={!backgroundDataLoaded}>
<FontAwesomeIcon icon={faRedo} size='lg' /> Refresh
</Button>
@@ -15,6 +15,7 @@ import RefreshBchBalance from './refresh-balance'
function SendCard (props) {
// Dependency injection through props
const appData = props.appData
const { bchInitLoaded, asyncBackgroundFinished } = appData.asyncBackGroundInitState
// Modal State
const [modalBody, setModalBody] = useState([])
@@ -29,6 +30,9 @@ function SendCard (props) {
const [oppositeUnits, setOppositeUnits] = useState('BCH')
const [oppositeQty, setOppositeQty] = useState(0)
// Background bch data loaded finished
const backgroundDataLoaded = bchInitLoaded || asyncBackgroundFinished
// Child function references
const refreshBchBalanceRef = useRef()
@@ -318,7 +322,7 @@ function SendCard (props) {
<Row>
<Col style={{ textAlign: 'center' }}>
<Button onClick={(e) => handleSendBch({ sendCardData, appData })}>Send</Button>
<Button onClick={(e) => handleSendBch({ sendCardData, appData })} disabled={!backgroundDataLoaded}>Send</Button>
</Col>
</Row>
@@ -18,6 +18,9 @@ function FilterDropdown (props) {
</Dropdown.Toggle>
<Dropdown.Menu>
<Dropdown.Item onClick={() => setSelectedFilter('Misc')}>
Misc
</Dropdown.Item>
<Dropdown.Item onClick={() => setSelectedFilter('Art')}>
Art
</Dropdown.Item>
@@ -30,9 +33,6 @@ function FilterDropdown (props) {
<Dropdown.Item onClick={() => setSelectedFilter('Download')}>
Download
</Dropdown.Item>
<Dropdown.Item onClick={() => setSelectedFilter('Misc')}>
Misc
</Dropdown.Item>
</Dropdown.Menu>
</Dropdown>
)
+64 -11
View File
@@ -11,7 +11,7 @@
*/
// Global npm libraries
import React, { useState, useEffect, useCallback } from 'react'
import React, { useState, useEffect, useCallback, useRef } from 'react'
import { Container, Row, Col, Button, Spinner } from 'react-bootstrap'
import axios from 'axios'
import { FontAwesomeIcon } from '@fortawesome/react-fontawesome'
@@ -35,8 +35,12 @@ function NftsForSale (props) {
const [iconsAreLoaded, setIconsAreLoaded] = useState(false)
const [dataAreLoaded, setDataAreLoaded] = useState(false)
const [currentPage, setCurrentPage] = useState(0)
const [lastLoadedPage, setLastLoadedPage] = useState(0)
const [totalPages, setTotalPages] = useState(0)
const [selectedFilter, setSelectedFilter] = useState('Art')
const [selectedFilter, setSelectedFilter] = useState('Misc')
// Flag to prevent load data multiple times on component mount!
const componentMountRef = useRef(false)
// Handler for previous page
const handlePreviousPage = () => {
@@ -70,6 +74,20 @@ function NftsForSale (props) {
return offer
}
}, [appData])
// Function to process token metadata (iconUrl , userData).
const processOfferMetadata = useCallback(async (offer) => {
try {
// Token icon
if (offer.tokenIconUrl) {
offer.icon = offer.tokenIconUrl
offer.iconAlreadyDownloaded = true
offer.userData = JSON.parse(offer.userDataStr)
}
return offer
} catch (error) {
return offer
}
}, [])
// Fetch offers
const getNftOffers = useCallback(async (page = 0) => {
@@ -86,7 +104,8 @@ function NftsForSale (props) {
for (let i = 0; i < rawOffers.length; i++) {
const offer = rawOffers[i]
const processedOffer = await processTokenData(offer)
processedOffers.push(processedOffer)
const processedOfferMetadata = await processOfferMetadata(processedOffer)
processedOffers.push(processedOfferMetadata)
}
setOffersAreLoaded(true)
@@ -97,7 +116,7 @@ function NftsForSale (props) {
setOffersAreLoaded(true)
throw err
}
}, [processTokenData])
}, [processTokenData, processOfferMetadata])
// This function loads the token data .
const lazyLoadTokenData = useCallback(async (tokens) => {
@@ -166,6 +185,7 @@ function NftsForSale (props) {
const thisToken = tokens[i]
// Incon does not need to be downloaded, so continue with the next one
console.log('Icon already downloaded ', thisToken.iconAlreadyDownloaded)
if (thisToken.iconAlreadyDownloaded) continue
// Try to get token icon url from mutable data.
@@ -174,7 +194,7 @@ function NftsForSale (props) {
if (iconUrl) {
// Set the icon url to the token , this can be used to display the icon in the token card component.
thisToken.icon = iconUrl
thisToken.tokenData.userData = userData
thisToken.userData = userData
}
// Mark token to prevent fetch token icon again.
@@ -246,17 +266,23 @@ function NftsForSale (props) {
// Effect to load NFTs on component mount
useEffect(() => {
console.log('loading nfts for sale')
loadNftOffers()
// Peevent to run multiple times
if (!componentMountRef.current) {
console.log('loading nfts for sale')
loadNftOffers()
componentMountRef.current = true
}
}, [loadNftOffers])
// Effect to reload data when page changes
useEffect(() => {
if (currentPage >= 0) {
// Validate to prevent load same page again
if (currentPage >= 0 && currentPage !== lastLoadedPage) {
console.log('page changed, reloading nfts for sale')
loadNftOffers(currentPage)
setLastLoadedPage(currentPage)
}
}, [currentPage, loadNftOffers])
}, [currentPage, loadNftOffers, lastLoadedPage])
// Handler for refresh button
const handleRefresh = useCallback(() => {
@@ -275,8 +301,34 @@ function NftsForSale (props) {
return url
}
const updateOffer = useCallback(async (offer) => {
try {
if (!offer) return
setOffersAreLoaded(false)
const processedOffer = await processTokenData(offer)
const processedOfferMetadata = await processOfferMetadata(processedOffer)
setOffers(offers => {
// find offer
const index = offers.findIndex((val) => { return val.tokenId === offer.tokenId })
// Save existing token data
processedOfferMetadata.tokenData = offers[index].tokenData
// replace with the new data
offers[index] = processedOfferMetadata
return offers
})
// Re-render tokens cards , to load the new data.
setTimeout(() => {
setOffersAreLoaded(true)
}, 500)
} catch (error) {
console.warn(error)
}
}, [processOfferMetadata, processTokenData])
// This function generates a Token Card for each token in the wallet.
function generateCards (offers) {
const generateCards = useCallback(() => {
console.log('generateCards() offerData: ', offers)
const tokens = offers
@@ -292,13 +344,14 @@ function NftsForSale (props) {
token={thisToken}
handleRefresh={handleRefresh}
key={`${thisToken.tokenId + i}`}
updateOffer={updateOffer}
/>
)
tokenCards.push(thisTokenCard)
}
return tokenCards
}
}, [offers, appData, handleRefresh, updateOffer])
return (
<Container>
@@ -7,11 +7,18 @@
// Global npm libraries
import React, { useEffect, useState } from 'react'
import { Button, Modal, Container, Row, Col } from 'react-bootstrap'
import { Button, Modal, Container, Row, Col, Spinner } from 'react-bootstrap'
import axios from 'axios'
// Local libraries
import config from '../../../config'
// Global variables and constants
const SERVER = config.dexServer
function InfoButton (props) {
const [show, setShow] = useState(false)
const [mutableDataCid, setMutableDataCid] = useState(null)
const [loading, setLoading] = useState(false)
const handleClose = () => {
console.log('handleClose()')
@@ -36,7 +43,7 @@ function InfoButton (props) {
// Get token user data if it exists and verify if it contains media or markdown
useEffect(() => {
try {
const userDataStr = props.token.tokenData.userData
const userDataStr = props.token.userData
if (userDataStr) {
const userData = JSON.parse(userDataStr)
@@ -50,6 +57,22 @@ function InfoButton (props) {
}
}, [props.token, show])
// Update offer data
const updateOffer = async () => {
try {
setLoading(true)
const inputObj = { tokenId: props.token.tokenId }
const result = await axios.post(`${SERVER}/offer/mutable/sync/`, inputObj)
const offerData = result.data
console.log('offerData: ', offerData)
if (props.updateOffer) await props.updateOffer(offerData)
setLoading(false)
} catch (error) {
setLoading(false)
}
}
// Replace with dummy button until token data is loaded.
if (!props.token.tokenData) {
return (
@@ -105,6 +128,7 @@ function InfoButton (props) {
href={`/user-data/${props.token.tokenId}#single-view`}
target='_blank'
rel='noopener noreferrer'
variant='success'
>
View User Data
</Button>
@@ -114,7 +138,10 @@ function InfoButton (props) {
</Container>
</Modal.Body>
<Modal.Footer />
<Modal.Footer style={{ justifyContent: 'center' }}>
{!loading && <Button style={{ width: '135px' }} onClick={updateOffer}>Update</Button>}
{loading && <Spinner />}
</Modal.Footer>
</Modal>
</>
)
@@ -0,0 +1,186 @@
/*
This component displays the seller's profile information for an NFT listing.
*/
// Global npm libraries
import React, { useState, useEffect } from 'react'
import { FontAwesomeIcon } from '@fortawesome/react-fontawesome'
import { faUser } from '@fortawesome/free-solid-svg-icons'
function SellerProfile (props) {
const { npub, appData } = props
const [profile, setProfile] = useState(null)
const [imageError, setImageError] = useState(false)
const [isLoading, setIsLoading] = useState(true)
const { nostrQueries } = appData
// Get profile if npub is provided.
useEffect(() => {
const start = async () => {
setIsLoading(true)
try {
const pubKey = nostrQueries.npubToHex(npub)
const profile = await nostrQueries.getProfile(pubKey)
setProfile(profile)
} catch (error) {
console.warn('Error fetching seller profile:', error)
} finally {
setIsLoading(false)
}
}
if (npub) {
start()
} else {
setIsLoading(false)
}
}, [npub, nostrQueries])
// handle img url errors
const handleImageError = (type) => {
setImageError(true)
}
// go to profile
const goToProfile = () => {
if (npub) {
const profileUrl = `${window.location.origin}/profile/${npub}#single-view`
window.open(profileUrl, '_blank')
}
}
// Get display name - use profile name, npub short form, or "Anonymous User"
const getDisplayName = () => {
if (profile?.name) return profile.name
if (npub) {
return npub.slice(0, 8) + '...' + npub.slice(-6)
}
return 'Anonymous User'
}
return (
<div
onClick={goToProfile}
className='seller-profile-container'
style={{
padding: '4px 8px',
backgroundColor: '#f8f9fa',
borderRadius: '6px',
border: '1px solid #e9ecef',
transition: 'all 0.2s ease',
cursor: 'pointer',
display: 'flex',
justifyContent: 'center',
width: '100%'
}}
onMouseEnter={(e) => {
e.currentTarget.style.backgroundColor = '#e9ecef'
e.currentTarget.style.borderColor = '#dee2e6'
}}
onMouseLeave={(e) => {
e.currentTarget.style.backgroundColor = '#f8f9fa'
e.currentTarget.style.borderColor = '#e9ecef'
}}
>
<div className='d-flex align-items-center justify-content-center gap-1'>
{/* Seller Label */}
<small
className='text-muted fw-semibold'
style={{
fontSize: '0.65rem',
textTransform: 'uppercase',
letterSpacing: '0.3px'
}}
>
Seller:
</small>
{/* Profile Picture or Placeholder */}
<div
className='d-flex align-items-center justify-content-center'
style={{
width: '24px',
height: '24px',
borderRadius: '50%',
backgroundColor: '#e9ecef',
border: '1.5px solid #dee2e6',
overflow: 'hidden',
flexShrink: 0,
cursor: 'pointer',
transition: 'transform 0.2s ease'
}}
onClick={(e) => {
e.stopPropagation()
goToProfile()
}}
onMouseEnter={(e) => {
e.currentTarget.style.transform = 'scale(1.1)'
}}
onMouseLeave={(e) => {
e.currentTarget.style.transform = 'scale(1)'
}}
>
{isLoading
? (
<FontAwesomeIcon
icon={faUser}
style={{
color: '#adb5bd',
fontSize: '12px',
opacity: 0.5
}}
/>
)
: (profile?.picture && !imageError)
? (
<img
src={profile.picture}
alt='Seller profile'
className='w-100 h-100'
style={{ objectFit: 'cover' }}
onError={() => handleImageError('picture')}
/>
)
: (
<FontAwesomeIcon
icon={faUser}
style={{
color: '#6c757d',
fontSize: '12px'
}}
/>
)}
</div>
{/* Seller Name */}
<span
onClick={(e) => {
e.stopPropagation()
goToProfile()
}}
className='cursor-pointer fw-medium'
style={{
color: '#495057',
fontSize: '0.8rem',
transition: 'color 0.2s ease',
maxWidth: '120px',
overflow: 'hidden',
textOverflow: 'ellipsis',
whiteSpace: 'nowrap'
}}
onMouseEnter={(e) => {
e.currentTarget.style.color = '#007bff'
}}
onMouseLeave={(e) => {
e.currentTarget.style.color = '#495057'
}}
title={profile?.name || npub}
>
{getDisplayName()}
</span>
</div>
</div>
)
}
export default SellerProfile
@@ -10,16 +10,15 @@ import Jdenticon from '@chris.troutner/react-jdenticon'
// Local libraries
import InfoButton from './info-button'
import BuyButton from './buy-button'
import SellerProfile from './seller-profile'
function TokenCard (props) {
const { token, appData, handleRefresh, hideBuyBtn } = props
const [icon, setIcon] = useState(token.icon)
const [tokenData, setTokenData] = useState(token.tokenData)
console.log('TokenCard() appData: ', appData)
// Update icon state every token.icon and token.tokenData changes
useEffect(() => {
console.log('setting icon')
setIcon(token.icon)
setTokenData(token.tokenData)
}, [token.icon, token.tokenData])
@@ -27,8 +26,14 @@ function TokenCard (props) {
return (
<>
<Col xs={12} sm={6} lg={4} style={{ padding: '25px' }}>
<Card>
<Card.Body style={{ textAlign: 'center' }}>
<Card className='shadow-sm'>
<Card.Body style={{ textAlign: 'center', padding: '10px' }}>
{/* Seller Profile Section */}
<Row className='mb-2'>
<Col className='text-center mb-2'>
<SellerProfile npub={token.makerNpub} appData={appData} />
</Col>
</Row>
{/** If the icon is loaded, display it */
icon && (
<Card.Img
@@ -49,7 +54,6 @@ function TokenCard (props) {
<Card.Title style={{ textAlign: 'center', marginTop: '10px' }}>
<h4>{token.ticker}</h4>
</Card.Title>
<Container>
<Row>
<Col>
@@ -66,7 +70,7 @@ function TokenCard (props) {
<Row className='text-center'>
<Col>
<InfoButton token={token} disabled={!token.tokenData} />
<InfoButton token={token} disabled={!token.tokenData} {...props} />
</Col>
{!hideBuyBtn && (
+186 -69
View File
@@ -5,16 +5,22 @@
// Global npm libraries
import React, { useCallback, useEffect, useState, useRef } from 'react'
import { Container, Row, Col } from 'react-bootstrap'
import { RelayPool } from 'nostr'
import NostrRestClient, { generateSubId } from '../../../services/nostr-rest-client.js'
// Local libraries
import ChatSidebar from './chat-sidebar'
import ChatMain from './chat-main'
import config from '../../../config'
// Global variables and constants
function NostrChat (props) {
const { appData } = props
const { nostrQueries, bchWalletState, startChannelChat } = appData
// Initialize REST client for SSE subscriptions
const restClient = useRef(new NostrRestClient())
// Track active subscriptions for cleanup
const subscriptionsRef = useRef({})
const [messages, setMessages] = useState([])
const [loadedMessages, setLoadedMessages] = useState(false)
@@ -28,6 +34,8 @@ function NostrChat (props) {
const [selectedChannel, setSelectedChannel] = useState(null)
const [selectedChannelIsDm, setSelectedChannelIsDm] = useState(false)
const [deletedChats] = useState(appData.nostrQueries.deletedChats)
const profilesRef = useRef({})
const dmChannelsRef = useRef([])
@@ -177,44 +185,90 @@ function NostrChat (props) {
}
}, [appData, onMsgRead])
// Handle nostr pool for group channels
// Handle SSE subscription for group channels
useEffect(() => {
// fetch messages when channel selected and channel metadata are loaded
if (!selectedChannel || !channelsLoaded || selectedChannelIsDm) return
// Load messages for group channel
const relays = nostrQueries.relays
if (relays.length === 0) {
return
}
// wait for deleted chats
if (!deletedChats || !Array.isArray(deletedChats)) return
const pool = RelayPool(relays)
// Create subscription for group channel messages
const subId = generateSubId(`group-${selectedChannel}`)
const filter = { limit: 10, kinds: [42], '#e': [selectedChannel] }
// const pool = RelayPool([config.nostrRelay])
pool.on('open', relay => {
relay.subscribe('REQ', { limit: 10, kinds: [42], '#e': [selectedChannel] })
})
// Track if EOSE has been called
let eoseCalled = false
let eoseTimeoutId = null
pool.on('eose', relay => {
if (!selectedChannelIsDm) {
setLoadedMessages(true)
const subscription = restClient.current.createSubscription(subId, filter, {
onEvent: (ev) => {
console.log('Group post retrieved from REST API', ev.content)
const onBlackList = nostrQueries.blackList.find((val) => { return val === ev.pubkey })
const isDeleted = deletedChats.find((val) => { return val.eventId === ev.id })
if (!onBlackList && !isDeleted) {
onMsgRead(ev)
}
},
onEose: () => {
eoseCalled = true
if (eoseTimeoutId) {
clearTimeout(eoseTimeoutId)
eoseTimeoutId = null
}
if (!selectedChannelIsDm) {
// Use setTimeout to ensure state updates from onEvent callbacks are processed
// before setting loadedMessages to true
setTimeout(() => {
setLoadedMessages(true)
}, 100)
}
},
onClosed: (message) => {
console.log('Group channel subscription closed:', message)
},
onError: (error) => {
console.warn('Group channel subscription error:', error)
}
})
pool.on('event', (relay, subId, ev) => {
console.log('Group post retrieved from ', relay.url, ev.content)
const onBlackList = nostrQueries.blackList.find((val) => { return val === ev.pubkey })
if (!onBlackList)onMsgRead(ev)
})
subscriptionsRef.current[subId] = subscription
// Set up EOSE timeout fallback - if EOSE doesn't arrive within 10 seconds, set loadedMessages anyway
const EOSE_TIMEOUT_MS = 10000 // 10 seconds
eoseTimeoutId = setTimeout(() => {
if (!eoseCalled && !selectedChannelIsDm) {
console.warn(`EOSE timeout reached for subscription ${subId} - setting loadedMessages to true`)
setLoadedMessages(true)
}
}, EOSE_TIMEOUT_MS)
// Capture values for cleanup
const subscriptionsRefValue = subscriptionsRef.current
const restClientValue = restClient.current
return () => {
// Close pool on component unmount or selected channel changes
console.log('Close existing pool for group channel')
pool.close()
// Clear EOSE timeout if it exists
if (eoseTimeoutId) {
clearTimeout(eoseTimeoutId)
}
// Close subscription on component unmount or selected channel changes
console.log('Close existing subscription for group channel')
if (subscriptionsRefValue[subId]) {
subscriptionsRefValue[subId].close()
delete subscriptionsRefValue[subId]
}
restClientValue.closeSubscription(subId).catch(err => {
// Subscription already closed is not an error - this is expected behavior
const errorMessage = err?.message || err?.toString() || ''
if (!errorMessage.includes('not found') && !errorMessage.includes('already closed')) {
console.warn('Error closing subscription:', err)
}
})
}
}, [onMsgRead, selectedChannel, selectedChannelIsDm, nostrQueries, channelsLoaded])
}, [onMsgRead, selectedChannel, selectedChannelIsDm, nostrQueries, channelsLoaded, deletedChats])
// Handle nostr pool for dm channels
// Handle SSE subscription for dm channels
useEffect(() => {
// fetch messages when channel selected and channel metadata are loaded
@@ -223,44 +277,85 @@ function NostrChat (props) {
const { nostrKeyPair } = bchWalletState
const dmPubKey = selectedChannel
// Load messages for group channel
const relays = nostrQueries.relays
if (relays.length === 0) {
return
}
// Create subscription for DM channel messages
const subId = generateSubId(`dm-${dmPubKey}`)
// Use array of filters for multiple conditions
const filters = [
{ limit: 10, kinds: [4], '#p': [nostrKeyPair.pubHex], authors: [dmPubKey] }, // received messages
{ limit: 10, kinds: [4], '#p': [dmPubKey], authors: [nostrKeyPair.pubHex] } // sent messages
]
const pool = RelayPool(relays)
// Track if EOSE has been called
let eoseCalled = false
let eoseTimeoutId = null
// const pool = RelayPool([config.nostrRelay])
pool.on('open', relay => {
relay.subscribe('REQ', [
{ limit: 10, kinds: [4], '#p': [nostrKeyPair.pubHex], authors: [dmPubKey] }, // received messages
{ limit: 10, kinds: [4], '#p': [dmPubKey], authors: [nostrKeyPair.pubHex] } // sent messages
])
const subscription = restClient.current.createSubscription(subId, filters, {
onEvent: (ev) => {
console.log('DM post retrieved from REST API', ev.content)
// decrypt message
if (ev.pubkey === nostrKeyPair.pubHex) {
// Sent messages
decryptMsg({ ev, pubKey: dmPubKey })
} else {
// Received messages
decryptMsg({ ev, pubKey: ev.pubkey })
}
},
onEose: () => {
eoseCalled = true
if (eoseTimeoutId) {
clearTimeout(eoseTimeoutId)
eoseTimeoutId = null
}
if (selectedChannelIsDm) {
// Use setTimeout to ensure state updates from onEvent callbacks are processed
// before setting loadedMessages to true
setTimeout(() => {
setLoadedMessages(true)
}, 100)
}
},
onClosed: (message) => {
console.log('DM channel subscription closed:', message)
},
onError: (error) => {
console.warn('DM channel subscription error:', error)
}
})
pool.on('eose', relay => {
if (selectedChannelIsDm) {
subscriptionsRef.current[subId] = subscription
// Set up EOSE timeout fallback - if EOSE doesn't arrive within 10 seconds, set loadedMessages anyway
const EOSE_TIMEOUT_MS = 10000 // 10 seconds
eoseTimeoutId = setTimeout(() => {
if (!eoseCalled && selectedChannelIsDm) {
console.warn(`EOSE timeout reached for subscription ${subId} - setting loadedMessages to true`)
setLoadedMessages(true)
}
})
}, EOSE_TIMEOUT_MS)
pool.on('event', (relay, subId, ev) => {
console.log('DM post retrieved from ', relay.url, ev.content)
// decrpt message
if (ev.pubkey === nostrKeyPair.pubHex) {
// Sent messages
decryptMsg({ ev, pubKey: dmPubKey })
} else {
// Received messages
decryptMsg({ ev, pubKey: ev.pubkey })
}
})
// Capture values for cleanup
const subscriptionsRefValue = subscriptionsRef.current
const restClientValue = restClient.current
return () => {
// Close pool on component unmount or selected channel changes
console.log('Close existing pool for private channel')
pool.close()
// Clear EOSE timeout if it exists
if (eoseTimeoutId) {
clearTimeout(eoseTimeoutId)
}
// Close subscription on component unmount or selected channel changes
console.log('Close existing subscription for private channel')
if (subscriptionsRefValue[subId]) {
subscriptionsRefValue[subId].close()
delete subscriptionsRefValue[subId]
}
restClientValue.closeSubscription(subId).catch(err => {
// Subscription already closed is not an error - this is expected behavior
const errorMessage = err?.message || err?.toString() || ''
if (!errorMessage.includes('not found') && !errorMessage.includes('already closed')) {
console.warn('Error closing subscription:', err)
}
})
}
}, [onMsgRead, selectedChannel, selectedChannelIsDm, nostrQueries, bchWalletState, decryptMsg])
@@ -299,30 +394,52 @@ function NostrChat (props) {
}
}, [nostrQueries, dmListLoaded])
// Keep live NPI04 for new dms
// Keep live subscription for new DMs
useEffect(() => {
if (!dmListLoaded || !channelsLoaded) return
const { bchWalletState } = appData
const { nostrKeyPair } = bchWalletState
const relays = nostrQueries.relays
const pool = RelayPool(relays)
// const pool = RelayPool([config.nostrRelay])
pool.on('open', relay => {
relay.subscribe('REQ', [
{ limit: 0, kinds: [4], '#p': [nostrKeyPair.pubHex] } // received messages
])
// Create subscription for new incoming DM notifications
const subId = generateSubId('dm-notify')
const filter = { limit: 0, kinds: [4], '#p': [nostrKeyPair.pubHex] } // received messages
const subscription = restClient.current.createSubscription(subId, filter, {
onEvent: (ev) => {
console.log('New message received from REST API', ev)
handleIncomingDms(ev.pubkey)
},
onEose: () => {
// EOSE received, subscription is active
},
onClosed: (message) => {
console.log('DM notification subscription closed:', message)
},
onError: (error) => {
console.warn('DM notification subscription error:', error)
}
})
pool.on('event', (relay, subId, ev) => {
console.log('New message received', ev)
handleIncomingDms(ev.pubkey)
})
subscriptionsRef.current[subId] = subscription
// Capture values for cleanup
const subscriptionsRefValue = subscriptionsRef.current
const restClientValue = restClient.current
return () => {
// Close pool on component unmount or selected channel changes
console.log('Close existing pool for private channel')
pool.close()
// Close subscription on component unmount
console.log('Close existing subscription for DM notifications')
if (subscriptionsRefValue[subId]) {
subscriptionsRefValue[subId].close()
delete subscriptionsRefValue[subId]
}
restClientValue.closeSubscription(subId).catch(err => {
// Subscription already closed is not an error - this is expected behavior
const errorMessage = err?.message || err?.toString() || ''
if (!errorMessage.includes('not found') && !errorMessage.includes('already closed')) {
console.warn('Error closing subscription:', err)
}
})
}
}, [handleIncomingDms, appData, nostrQueries, dmListLoaded, channelsLoaded])
@@ -9,11 +9,13 @@ import { FontAwesomeIcon } from '@fortawesome/react-fontawesome'
import { faPaperPlane } from '@fortawesome/free-solid-svg-icons'
import { finalizeEvent } from 'nostr-tools/pure'
import { hexToBytes } from '@noble/hashes/utils' // already an installed dependency
import { Relay } from 'nostr-tools/relay'
import NostrRestClient from '../../../services/nostr-rest-client.js'
function MessageInput (props) {
const { appData, selectedChannel, profiles } = props
const { bchWalletState, writeRelays, nostrQueries } = appData
const { bchWalletState, nostrQueries } = appData
// Initialize REST client for publishing
const restClient = new NostrRestClient()
const [isDm, setIsDm] = useState(false)
const [dmProfile, setDmProfile] = useState(false)
const [message, setMessage] = useState('')
@@ -57,25 +59,19 @@ function MessageInput (props) {
const signedEvent = finalizeEvent(eventTemplate, privateKeyBin)
console.log('signedEvent: ', signedEvent)
// Publish the post to each relay.
for (let i = 0; i < writeRelays.length; i++) {
const relayUrl = writeRelays[i]
// Publish the message via REST API (handles broadcasting to multiple relays)
try {
const result = await restClient.publishEvent(signedEvent)
console.log('result: ', result)
try {
// Connect to a relay.
const relay = await Relay.connect(relayUrl)
console.log(`connected to ${relay.url}`)
// Publish the message to the relay.
const result = await relay.publish(signedEvent)
console.log('result: ', result)
// Close the connection to the relay.
relay.close()
} catch (err) {
console.warn(`Skipping publishing to ${relayUrl} due to error: ${err}`)
if (!result.accepted) {
throw new Error(`Failed to publish: ${result.message || 'Unknown error'}`)
}
} catch (err) {
console.warn(`Error publishing message: ${err}`)
throw err
}
setMessage('')
setOnFetch(false)
} catch (error) {
@@ -111,25 +107,19 @@ function MessageInput (props) {
const signedEvent = finalizeEvent(eventTemplate, privateKeyBin)
console.log('signedEvent: ', signedEvent)
// Publish the post to each relay.
for (let i = 0; i < writeRelays.length; i++) {
const relayUrl = writeRelays[i]
// Publish the message via REST API (handles broadcasting to multiple relays)
try {
const result = await restClient.publishEvent(signedEvent)
console.log('result: ', result)
try {
// Connect to a relay.
const relay = await Relay.connect(relayUrl)
console.log(`connected to ${relay.url}`)
// Publish the message to the relay.
const result = await relay.publish(signedEvent)
console.log('result: ', result)
// Close the connection to the relay.
relay.close()
} catch (err) {
console.warn(`Skipping publishing to ${relayUrl} due to error: ${err}`)
if (!result.accepted) {
throw new Error(`Failed to publish: ${result.message || 'Unknown error'}`)
}
} catch (err) {
console.warn(`Error publishing message: ${err}`)
throw err
}
setMessage('')
setOnFetch(false)
} catch (error) {
@@ -13,7 +13,7 @@ import { Spinner } from 'react-bootstrap'
function MessageList (props) {
const { messages, loadedMessages } = props
console.log('loadedMessages', loadedMessages)
const [groupedMessages, setGroupedMessages] = useState([])
const [groupedMessages, setGroupedMessages] = useState({})
const msgContainerRef = useRef()
// Group messages by date
const groupMessagesByDate = useCallback((messages) => {
@@ -1,13 +1,15 @@
import React, { useState, useEffect } from 'react'
import { Spinner } from 'react-bootstrap'
import { finalizeEvent } from 'nostr-tools/pure'
import { Relay } from 'nostr-tools/relay'
import { hexToBytes } from '@noble/hashes/utils'
import NostrRestClient from '../../../../services/nostr-rest-client.js'
function FollowBtn (props) {
const [onFetch, setOnFetch] = useState(false)
const [isFollowing, setIsFollowing] = useState(false)
const { creator, appData, creatorProfile, followList, refreshFollowList } = props
// Initialize REST client for publishing
const restClient = new NostrRestClient()
useEffect(() => {
const isFollowing = followList.find(item => item[1] === creator.pubkey)
@@ -27,8 +29,8 @@ function FollowBtn (props) {
if (!existing) {
const creatorName = creatorProfile.name || ''
// add creator to the list
currentList.push(['p', creator.pubkey, 'wss://nostr-relay.psfoundation.info', creatorName])
// add creator to the list (relay URL in tag is optional, REST API handles relay selection)
currentList.push(['p', creator.pubkey, '', creatorName])
await submitFollowList(currentList)
await refreshFollowList()
} else {
@@ -73,10 +75,7 @@ function FollowBtn (props) {
// Convert private key to binary
const privateKeyBin = hexToBytes(nostrKeyPair.privHex)
// Relay list
const psf = 'wss://nostr-relay.psfoundation.info'
// Generate a post.
// Generate a follow list event.
const eventTemplate = {
kind: 3,
created_at: Math.floor(Date.now() / 1000),
@@ -89,16 +88,14 @@ function FollowBtn (props) {
const signedEvent = finalizeEvent(eventTemplate, privateKeyBin)
console.log('signedEvent: ', signedEvent)
// Connect to a relay.
const relay = await Relay.connect(psf)
console.log(`connected to ${relay.url}`)
// Publish the message to the relay.
const result = await relay.publish(signedEvent)
// Publish the follow list via REST API (handles broadcasting to multiple relays)
const result = await restClient.publishEvent(signedEvent)
console.log('result: ', result)
// Close the connection to the relay.
relay.close()
if (!result.accepted) {
throw new Error(`Failed to publish follow list: ${result.message || 'Unknown error'}`)
}
setTimeout(() => {
setOnFetch(false)
}, 1000)
@@ -10,8 +10,8 @@ import { faUser, faHeart as faHeartSolid } from '@fortawesome/free-solid-svg-ico
import { faHeart } from '@fortawesome/free-regular-svg-icons'
import * as nip19 from 'nostr-tools/nip19'
import { finalizeEvent } from 'nostr-tools/pure'
import { Relay } from 'nostr-tools/relay'
import { hexToBytes } from '@noble/hashes/utils' // already an installed dependency
import NostrRestClient from '../../../../services/nostr-rest-client.js'
// Local libraries
import CopyOnClick from '../../bch-wallet/copy-on-click.js'
@@ -19,7 +19,9 @@ import NostrFormat from '../nostr-format'
function FeedCard (props) {
const { post, appData, profiles } = props
const { nostrKeyPair, writeRelays } = appData.bchWalletState
const { nostrKeyPair } = appData.bchWalletState
// Initialize REST client for publishing
const restClient = new NostrRestClient()
const [profile, setProfile] = useState(profiles[post.pubkey])
@@ -103,25 +105,22 @@ function FeedCard (props) {
}
console.log(`eventTemplate: ${JSON.stringify(eventTemplate, null, 2)}`)
writeRelays.map(async (relayUrl) => {
try {
// Sign the post
const signedEvent = finalizeEvent(eventTemplate, privateKeyBin)
console.log('signedEvent: ', signedEvent)
// Connect to a relay.
const relay = await Relay.connect(relayUrl)
console.log(`connected to ${relay.url}`)
// Sign the post
const signedEvent = finalizeEvent(eventTemplate, privateKeyBin)
console.log('signedEvent: ', signedEvent)
// Publish the message to the relay.
const result = await relay.publish(signedEvent)
console.log('result: ', result)
// Publish the like via REST API (handles broadcasting to multiple relays)
try {
const result = await restClient.publishEvent(signedEvent)
console.log('result: ', result)
// Close the connection to the relay.
relay.close()
} catch (err) {
console.warn(`Skipping publishing to ${relayUrl} due to error: ${err}`)
if (!result.accepted) {
throw new Error(`Failed to publish like: ${result.message || 'Unknown error'}`)
}
})
} catch (err) {
console.warn(`Error publishing like: ${err}`)
throw err
}
await handleLikes(post, nostrKeyPair.pubHex)
setLikesFetched(true)
@@ -7,14 +7,16 @@ import React, { useState, useEffect } from 'react'
import { Container, Form, Button, Spinner } from 'react-bootstrap'
import Accordion from 'react-bootstrap/Accordion'
import { finalizeEvent } from 'nostr-tools/pure'
import { Relay } from 'nostr-tools/relay'
import { hexToBytes } from '@noble/hashes/utils' // already an installed dependency
import NostrRestClient from '../../../../services/nostr-rest-client.js'
// Local libraries
function ProfilePost (props) {
const { appData } = props
const { bchWalletState, writeRelays } = appData
const { bchWalletState } = appData
// Initialize REST client for publishing
const restClient = new NostrRestClient()
const [accordionKey, setAccordionKey] = useState(null)
const [onFetch, setOnFetch] = useState(false)
const [formLoaded, setFormLoaded] = useState(false)
@@ -88,23 +90,13 @@ function ProfilePost (props) {
const signedEvent = finalizeEvent(eventTemplate, privateKeyBin)
console.log('signedEvent: ', signedEvent)
// Publish the post to each relay.
writeRelays.map(async (relayUrl) => {
try {
// Connect to a relay.
const relay = await Relay.connect(relayUrl)
console.log(`connected to ${relay.url}`)
// Publish the profile via REST API (handles broadcasting to multiple relays)
const result = await restClient.publishEvent(signedEvent)
console.log('result: ', result)
// Publish the message to the relay.
const result = await relay.publish(signedEvent)
console.log('result: ', result)
// Close the connection to the relay.
relay.close()
} catch (err) {
console.warn(`Skipping publishing to ${relayUrl} due to error: ${err}`)
}
})
if (!result.accepted) {
throw new Error(`Failed to publish profile: ${result.message || 'Unknown error'}`)
}
setSuccessMsg('Post successfully published!')
setOnFetch(false)
@@ -7,15 +7,17 @@ import React, { useState } from 'react'
import { Container, Form, Button, Spinner } from 'react-bootstrap'
import Accordion from 'react-bootstrap/Accordion'
import { finalizeEvent } from 'nostr-tools/pure'
import { Relay } from 'nostr-tools/relay'
import { hexToBytes } from '@noble/hashes/utils' // already an installed dependency
import NostrRestClient from '../../../../services/nostr-rest-client.js'
// Local libraries
function PublicPost (props) {
const [accordionKey, setAccordionKey] = useState('0')
const [onFetch, setOnFetch] = useState(false)
const { bchWalletState, writeRelays } = props.appData
const { bchWalletState } = props.appData
// Initialize REST client for publishing
const restClient = new NostrRestClient()
const [formData, setFormData] = useState({
content: ''
})
@@ -62,23 +64,13 @@ function PublicPost (props) {
const signedEvent = finalizeEvent(eventTemplate, privateKeyBin)
console.log('signedEvent: ', signedEvent)
// Publish the post to each relay.
writeRelays.map(async (relayUrl) => {
try {
// Connect to a relay.
const relay = await Relay.connect(relayUrl)
console.log(`connected to ${relay.url}`)
// Publish the post via REST API (handles broadcasting to multiple relays)
const result = await restClient.publishEvent(signedEvent)
console.log('result: ', result)
// Publish the message to the relay.
const result = await relay.publish(signedEvent)
console.log('result: ', result)
// Close the connection to the relay.
relay.close()
} catch (err) {
console.warn(`Skipping publishing to ${relayUrl} due to error: ${err}`)
}
})
if (!result.accepted) {
throw new Error(`Failed to publish post: ${result.message || 'Unknown error'}`)
}
resetForm()
setSuccessMsg('Post successfully published!')
@@ -145,7 +145,7 @@ function NFTForSale (props) {
if (iconUrl) {
// Set the icon url to the token , this can be used to display the icon in the token card component.
thisToken.icon = iconUrl
thisToken.tokenData.userData = userData
thisToken.userData = userData
}
// Mark token to prevent fetch token icon again.
+2 -2
View File
@@ -14,8 +14,8 @@ function SignMessage (props) {
const [sign, setSign] = useState('')
const [msg, setMsg] = useState('')
const [bchAddr] = useState(wallet.walletInfo.cashAddress)
const [slpAddr] = useState(wallet.walletInfo.slpAddress)
const [bchAddr] = useState(wallet?.walletInfo?.cashAddress)
const [slpAddr] = useState(wallet?.walletInfo?.slpAddress)
const [err, setErr] = useState('')
const [copied, setCopied] = useState(false)
+47 -25
View File
@@ -13,12 +13,17 @@ import TokenCard from './token-card'
import RefreshTokenBalance from './refresh-tokens'
const SlpTokens = (props) => {
const [appData, setAppData] = useState(props.appData)
const { appData } = props
const [iconsAreLoaded, setIconsAreLoaded] = useState(false)
const [dataAreLoaded, setDataAreLoaded] = useState(false)
const [tokens, setTokens] = useState([])
const refreshTokenButtonRef = React.useRef()
const { slpInitLoaded, asyncBackgroundFinished } = props.appData.asyncBackGroundInitState
// Background bch data loaded finished
const backgroundDataLoaded = slpInitLoaded || asyncBackgroundFinished
const backgroundDataError = !slpInitLoaded && asyncBackgroundFinished
// Update the tokens state when the appData changes
useEffect(() => {
@@ -31,8 +36,7 @@ const SlpTokens = (props) => {
// within the wallet app.
// This function triggers the on-click function within the refresh-tokens.js button.
const refreshTokens = async () => {
const newAppData = await refreshTokenButtonRef.current.handleRefreshTokenBalance()
setAppData(newAppData)
await refreshTokenButtonRef.current.handleRefreshTokenBalance()
}
// Get Cid from url
@@ -120,7 +124,7 @@ const SlpTokens = (props) => {
if (iconUrl) {
// Set the icon url to the token , this can be used to display the icon in the token card component.
thisToken.icon = iconUrl
thisToken.tokenData.userData = userData
thisToken.userData = userData
}
// Mark token to prevent fetch token icon again.
@@ -135,6 +139,7 @@ const SlpTokens = (props) => {
const loadData = useCallback(async () => {
const tokens = appData.bchWalletState.slpTokens
console.log('tokens', tokens)
setTokens(tokens)
await lazyLoadTokenData(tokens)
await lazyLoadMutableData(tokens)
@@ -142,8 +147,10 @@ const SlpTokens = (props) => {
// Start to load the token icons when the component is mounted
useEffect(() => {
loadData()
}, [loadData])
if (slpInitLoaded) {
loadData()
}
}, [loadData, slpInitLoaded])
// Generate the token cards for each token in the wallet.
const generateCards = () => {
@@ -176,25 +183,35 @@ const SlpTokens = (props) => {
</Col>
</Row>
<Row>
<Col xs={12} style={{ display: 'flex', justifyContent: 'center', alignItems: 'center' }}>
{/** Show spinner info if tokens are loaded but data is not loaded */
!dataAreLoaded && (
<div style={{ borderRadius: '10px', backgroundColor: '#f0f0f0', padding: '10px', display: 'flex', justifyContent: 'center', alignItems: 'center', width: 'fit-content' }}>
<span style={{ marginRight: '10px' }}>Loading Token Data </span>
<Spinner animation='border' />
</div>
)
}
{/** Show spinner info if tokens are loaded but icons are not loaded */
dataAreLoaded && !iconsAreLoaded && (
<div style={{ borderRadius: '10px', backgroundColor: '#f0f0f0', padding: '10px', display: 'flex', justifyContent: 'center', alignItems: 'center', width: 'fit-content' }}>
<span style={{ marginRight: '10px' }}>Loading Token Icons </span>
<Spinner animation='border' />
</div>
)
}
{appData.asyncInitSucceeded && (
<Col xs={12} style={{ display: 'flex', justifyContent: 'center', alignItems: 'center' }}>
{/** Show spinner info if tokens are loaded but data is not loaded */
!backgroundDataLoaded && !backgroundDataError && (
<div style={{ borderRadius: '10px', backgroundColor: '#f0f0f0', padding: '10px', display: 'flex', justifyContent: 'center', alignItems: 'center', width: 'fit-content' }}>
<span style={{ marginRight: '10px' }}>Loading Tokens </span>
<Spinner animation='border' />
</div>
)
}
{/** Show spinner info if tokens are loaded but data is not loaded */
!backgroundDataError && !dataAreLoaded && tokens.length > 0 && (
<div style={{ borderRadius: '10px', backgroundColor: '#f0f0f0', padding: '10px', display: 'flex', justifyContent: 'center', alignItems: 'center', width: 'fit-content' }}>
<span style={{ marginRight: '10px' }}>Loading Token Data </span>
<Spinner animation='border' />
</div>
)
}
{/** Show spinner info if tokens are loaded but icons are not loaded */
backgroundDataLoaded && dataAreLoaded && !iconsAreLoaded && (
<div style={{ borderRadius: '10px', backgroundColor: '#f0f0f0', padding: '10px', display: 'flex', justifyContent: 'center', alignItems: 'center', width: 'fit-content' }}>
<span style={{ marginRight: '10px' }}>Loading Token Icons </span>
<Spinner animation='border' />
</div>
)
}
</Col>
</Col>
)}
</Row>
<br />
@@ -202,11 +219,16 @@ const SlpTokens = (props) => {
{generateCards()}
</Row>
{/** Display a message if no tokens are found */}
{tokens.length === 0 && (
{backgroundDataLoaded && !backgroundDataError && tokens.length === 0 && (
<Row className='text-center'>
<span> No tokens found in wallet </span>
</Row>
)}
{backgroundDataError && (
<Row style={{ color: 'red' }} className='text-center'>
<span>Tokens could not be loaded! </span>
</Row>
)}
</Container>
</>
@@ -59,7 +59,7 @@ function InfoButton (props) {
useEffect(() => {
try {
console.log('props token', props.token)
const userDataStr = props.token.tokenData.userData
const userDataStr = props.token.userData
if (userDataStr) {
const userData = JSON.parse(userDataStr)
@@ -18,6 +18,10 @@ function RefreshTokenBalance ({ appData: initialAppData, ref, lazyLoadTokenIcons
const [modalBody, setModalBody] = useState([])
const [hideSpinner, setHideSpinner] = useState(false)
const [hideWaitingModal, setHideWaitingModal] = useState(true)
const { slpInitLoaded, asyncBackgroundFinished } = initialAppData.asyncBackGroundInitState
// Background bch data loaded finished
const backgroundDataLoaded = slpInitLoaded || asyncBackgroundFinished
// Add a new line to the waiting modal.
const addToModal = (inStr) => {
@@ -58,6 +62,10 @@ function RefreshTokenBalance ({ appData: initialAppData, ref, lazyLoadTokenIcons
appData.updateBchWalletState({ walletObj: walletState, appData })
const newAppData = { ...appData, bchWalletState: walletState }
// if slpInitLoaded is 'false', them set as true , to show the new balance.
appData.updateBackGroundInitState({ slpInitLoaded: true })
// Update state
setHideWaitingModal(true)
setAppData(newAppData)
@@ -82,7 +90,7 @@ function RefreshTokenBalance ({ appData: initialAppData, ref, lazyLoadTokenIcons
return (
<>
<Button variant='success' onClick={handleRefreshTokenBalance}>
<Button variant='success' onClick={handleRefreshTokenBalance} disabled={!backgroundDataLoaded}>
<FontAwesomeIcon icon={faRedo} size='lg' /> Refresh
</Button>
+1 -1
View File
@@ -21,7 +21,7 @@ export function UninitializedView (props = {}) {
/>
{
appData.asyncInitFinished
? <AppBody menuState={100} wallet={appData.wallet} appData={appData} />
? <> <br /><AppBody menuState={100} wallet={appData.wallet} appData={appData} /></>
: null
}
</>
+6
View File
@@ -18,6 +18,12 @@ const config = {
// dexServer: 'http://localhost:5700',
nostrTopic: 'bch-dex-test-topic-02',
// REST API endpoint for Nostr relay interactions (primary interface)
nostrRestApiUrl: 'https://nostr-relay-api.psfoundation.info',
// nostrRestApiUrl: 'http://localhost:5942',
// Legacy relay URLs kept for reference (may be used in tags, but actual connections use REST API)
nostrRelay: 'wss://nostr-relay.psfoundation.info',
nostrRelays: [
'wss://nostr-relay.psfoundation.info',
+39 -7
View File
@@ -47,6 +47,11 @@ function useAppState () {
const [denyClose, setDenyClose] = useState(false)
const [isSingleView, setIsSingleView] = useState(false)
// Background process state
const [asyncBackGroundInitState, setAsyncBackGroundInitState] = useState({
bchInitLoaded: false, slpInitLoaded: false, asyncBackgroundFinished: false
})
// NFTs for sale stored data to improve performance
const [nftForSaleCacheData, setNftForSaleCacheData] = useState(lsState.nftData || {})
@@ -55,8 +60,8 @@ function useAppState () {
const [readRelays, setReadRelays] = useState(relaysData.filter(relay => relay.read).map(relay => relay.address)) // Read relays
const [writeRelays, setWriteRelays] = useState(relaysData.filter(relay => relay.write).map(relay => relay.address)) // Write relays
// Nostr queries service
const nostrQueriesRef = useRef(new NostrQueries({ relays: readRelays }))
// Nostr queries service (REST API handles relays server-side, pass empty array for compatibility)
const nostrQueriesRef = useRef(new NostrQueries({ relays: [] }))
// ProfileDM
const [startChannelChat, setStartChannelChat] = useState('')
@@ -130,7 +135,8 @@ function useAppState () {
setNftForSaleCacheData(allCacheData) // Update the state
updateLocalStorage({ nftData: allCacheData }) // Update the local storage
}
// Update relays data
// Update relays data (kept for UI compatibility, REST API handles relays server-side)
function updateRelaysData (relaysData) {
setRelaysData(relaysData)
updateLocalStorage({ relays: relaysData }) // Update the local storage
@@ -142,9 +148,12 @@ function useAppState () {
const writeRelays = relaysData.filter(relay => relay.write).map(relay => relay.address)
setWriteRelays(writeRelays)
console.log('writeRelays: ', writeRelays)
nostrQueriesRef.current = new NostrQueries({ relays: readRelays })
// NostrQueries no longer needs relay updates (REST API handles relays server-side)
// Recreate instance for compatibility, but pass empty array
nostrQueriesRef.current = new NostrQueries({ relays: [] })
}
// Restore relays data
// Restore relays data (kept for UI compatibility, REST API handles relays server-side)
function restoreRelaysData () {
const relaysData = [...localStorageDefault.relays] // Create a new array in order to detect changes
setRelaysData(relaysData)
@@ -157,7 +166,28 @@ function useAppState () {
const writeRelays = relaysData.filter(relay => relay.write).map(relay => relay.address)
setWriteRelays(writeRelays)
console.log('writeRelays: ', writeRelays)
nostrQueriesRef.current = new NostrQueries({ relays: readRelays })
// NostrQueries no longer needs relay updates (REST API handles relays server-side)
// Recreate instance for compatibility, but pass empty array
nostrQueriesRef.current = new NostrQueries({ relays: [] })
}
// Update background state
function updateBackGroundInitState (inObj = {}) {
try {
setAsyncBackGroundInitState(oldState => {
// console.log('background old state: ', oldState)
const state = Object.assign({}, oldState, inObj)
// console.log('background state: ', state)
return state
})
// console.log(`New wallet state: ${JSON.stringify(bchWalletState, null, 2)}`)
} catch (err) {
console.error('Error in App.js updateBackGroundInitState()')
throw err
}
}
return {
@@ -210,7 +240,9 @@ function useAppState () {
readRelays,
writeRelays,
startChannelChat,
setStartChannelChat
setStartChannelChat,
asyncBackGroundInitState,
updateBackGroundInitState
}
}
+9
View File
@@ -90,6 +90,11 @@ class AsyncLoad {
// Get the BCH balance of the wallet.
async getWalletBchBalance (wallet, updateBchWalletState, appData) {
try {
/* // Force error for development
await sleep(6000)
throw new Error('getWalletBchBalance error')
*/
// Get the BCH balance of the wallet.
const bchBalance = await wallet.getBalance({ bchAddress: wallet.walletInfo.cashAddress })
@@ -125,6 +130,10 @@ class AsyncLoad {
// Get a list of SLP tokens held by the wallet.
async getSlpTokenBalances (wallet, updateBchWalletState, appData) {
try {
/* // Force error for development
await sleep(6000)
throw new Error('getSlpTokenBalances error')
*/
// Get token information from the wallet. This will also initialize the UTXO store.
const slpTokens = await wallet.listTokens(wallet.walletInfo.cashAddress)
// console.log('slpTokens: ', slpTokens)
+184 -315
View File
@@ -1,26 +1,38 @@
/**
* Nostr class for query into relay pools
*
* Refactored to use REST API instead of WebSocket
*/
import { RelayPool } from 'nostr'
import NostrRestClient, { generateSubId } from './nostr-rest-client.js'
import * as nip19 from 'nostr-tools/nip19'
import { nip04 } from 'nostr-tools'
import { hexToBytes } from '@noble/hashes/utils' // already an installed dependency
import axios from 'axios'
import config from '../config'
const SERVER = `${config.dexServer}/`
export default class NostrQueries {
constructor ({ relays }) {
this.relays = relays || []
// Keep relays property for backward compatibility (empty array)
this.relays = []
// Initialize REST client
this.restClient = new NostrRestClient()
this.loadedProfiles = {}
this.loadedChannelsInfo = {}
this.blackList = []
this.blackListFetched = false
this.deletedChats = []
this.deletedPosts = []
}
async start () {
try {
await this.getBlackList()
await this.fetchDeletedChats()
await this.fetchDeletedPosts()
} catch (error) {
console.error('NostrQueries.start() error : ', error.message)
throw error
@@ -28,7 +40,8 @@ export default class NostrQueries {
}
setRelays (relays) {
this.relays = relays
// No-op for backward compatibility (REST API handles relays server-side)
this.relays = []
}
npubToHex (npub) {
@@ -41,160 +54,50 @@ export default class NostrQueries {
return nip19.npubEncode(hex)
}
// Load profile from nostr relays
// It uses multiple relays. It will exit after the first successful retrieval
// from any relay. If one relay fails, it will move on to the next one.
// Load profile from nostr relays via REST API
async getProfile (pubHex) {
try {
if (this.relays.length === 0) {
return false
}
const existingProfile = this.loadedProfiles[pubHex]
if (existingProfile) {
console.log(`Returning profile from cache : ${existingProfile.name}`)
return existingProfile
}
for (let i = 0; i < this.relays.length; i++) {
const profile = await new Promise((resolve) => {
const relay = this.relays[i]
// const pool = RelayPool(config.nostrRelays)
const pool = RelayPool([relay])
pool.on('open', relay => {
relay.subscribe('subid', { limit: 5, kinds: [0], authors: [pubHex] })
})
const subId = generateSubId('profile')
const filter = { limit: 5, kinds: [0], authors: [pubHex] }
pool.on('eose', relay => {
relay.close()
resolve(false)
})
const events = await this.restClient.queryEvents(subId, filter)
pool.on('event', (relay, subId, ev) => {
try {
const profile = JSON.parse(ev.content)
// console.log('profile', profile)
console.log(`Profile found for ${pubHex} at ${relay.url}`)
resolve(profile)
} catch (error) {
resolve(false)
}
relay.close()
})
pool.on('error', (relay) => {
console.log(`Error fetching ${pubHex} profile. relay connection error :${relay.url} `)
relay.close()
resolve(false)
})
})
// Stop looking for profile if found
if (profile) {
this.loadedProfiles[pubHex] = profile // Store profile
// Find the most recent profile event (kind 0 events are replaceable)
if (events && events.length > 0) {
// Sort by created_at descending to get most recent
events.sort((a, b) => b.created_at - a.created_at)
const profileEvent = events[0]
try {
const profile = JSON.parse(profileEvent.content)
console.log(`Profile found for ${pubHex}`)
this.loadedProfiles[pubHex] = profile
return profile
} catch (error) {
console.warn(`Error parsing profile content for ${pubHex}:`, error)
return false
}
}
return false
} catch (error) {
console.warn(error)
console.warn(`Error fetching profile for ${pubHex}:`, error)
return false
}
}
// Get Feeds by user pubkey
// Get Feeds by user pubkey via REST API
async getUserFeeds (pubHex) {
try {
if (this.relays.length === 0) {
return []
}
let feeds = await new Promise((resolve) => {
let list = []
const closedRelays = []
const subId = generateSubId('user-feeds')
const filter = { limit: 5, kinds: [1], authors: [pubHex] }
const pool = RelayPool(this.relays)
pool.on('open', relay => {
relay.subscribe('subid', { limit: 5, kinds: [1], authors: [pubHex] })
})
pool.on('eose', relay => {
relay.close()
if (!closedRelays.includes(relay)) {
closedRelays.push(relay)
}
// Resolve list if all relays are closed
if (closedRelays.length === this.relays.length) {
resolve(list)
}
})
pool.on('event', (relay, subId, ev) => {
list = [...list, ev]
})
pool.on('error', (relay) => {
relay.close()
if (!closedRelays.includes(relay)) {
closedRelays.push(relay)
} // Resolve list if all relays are closed
if (closedRelays.length === this.relays.length) {
resolve(list)
}
})
})
// Remove duplicated feeds
feeds = feeds.filter((val, i, list) => {
const existingIndex = list.findIndex(value => value.id === val.id)
return existingIndex === i
})
// Sort from newest to oldest
feeds.sort((a, b) => b.created_at - a.created_at)
return feeds
} catch (error) {
console.warn(error)
}
}
// Get global feeds
async getGlobalFeeds () {
try {
if (this.relays.length === 0) {
return []
}
let feeds = await new Promise((resolve, reject) => {
let list = []
const closedRelays = []
const pool = RelayPool(this.relays)
// const pool = RelayPool([config.nostrRelay])
pool.on('open', relay => {
relay.subscribe('REQ', { limit: 10, kinds: [1], '#t': ['slpdex-socialmedia'] })
})
pool.on('eose', relay => {
relay.close()
if (!closedRelays.includes(relay)) {
closedRelays.push(relay)
}
// Resolve list if all relays are closed
if (closedRelays.length === this.relays.length) {
resolve(list)
}
})
pool.on('event', (relay, subId, ev) => {
console.log('post retrieved from ', relay.url, ev.sig)
list = [...list, ev]
})
pool.on('error', (relay) => {
relay.close()
if (!closedRelays.includes(relay)) {
closedRelays.push(relay)
}
// Resolve list if all relays are closed
if (closedRelays.length === this.relays.length) {
resolve(list)
}
})
})
let feeds = await this.restClient.queryEvents(subId, filter)
// Remove duplicated feeds
feeds = feeds.filter((val, i, list) => {
@@ -205,111 +108,80 @@ export default class NostrQueries {
// Sort from newest to oldest
feeds.sort((a, b) => b.created_at - a.created_at)
// console.log('feeds', feeds)
return feeds
return feeds || []
} catch (error) {
console.warn(error)
}
}
// Get follow list by pubkey
async getFollowList (pubHex) {
if (this.relays.length === 0) {
console.warn(`Error fetching user feeds for ${pubHex}:`, error)
return []
}
return new Promise((resolve, reject) => {
let list = []
const closedRelays = []
const pool = RelayPool(this.relays)
// const pool = RelayPool([config.nostrRelay])
pool.on('open', relay => {
relay.subscribe('subid', { limit: 1, kinds: [3], authors: [pubHex] })
})
pool.on('eose', relay => {
relay.close()
if (!closedRelays.includes(relay)) {
closedRelays.push(relay)
}
// Resolve list if all relays are closed
if (closedRelays.length === this.relays.length) {
resolve(list)
}
})
pool.on('event', (relay, subId, ev) => {
// console.log('Received event:', ev)
// Merge list received from all relays
list = [...list, ...ev.tags]
})
pool.on('error', (relay) => {
relay.close()
if (!closedRelays.includes(relay)) {
closedRelays.push(relay)
}
// Resolve list if all relays are closed
if (closedRelays.length === this.relays.length) {
resolve(list)
}
})
})
}
// Get event likes
// Get global feeds via REST API
async getGlobalFeeds () {
try {
const subId = generateSubId('global-feeds')
const filter = { limit: 10, kinds: [1], '#t': ['slpdex-socialmedia'] }
let feeds = await this.restClient.queryEvents(subId, filter)
// Filter out deleted posts
feeds = feeds.filter((ev) => {
const isDeleted = this.deletedPosts.find((val) => { return val.eventId === ev.id })
return !isDeleted
})
// Remove duplicated feeds
feeds = feeds.filter((val, i, list) => {
const existingIndex = list.findIndex(value => value.id === val.id)
return existingIndex === i
})
// Sort from newest to oldest
feeds.sort((a, b) => b.created_at - a.created_at)
return feeds || []
} catch (error) {
console.warn('Error fetching global feeds:', error)
return []
}
}
// Get follow list by pubkey via REST API
async getFollowList (pubHex) {
try {
const subId = generateSubId('follow-list')
const filter = { limit: 1, kinds: [3], authors: [pubHex] }
const events = await this.restClient.queryEvents(subId, filter)
// Get the most recent follow list (kind 3 events are replaceable)
if (events && events.length > 0) {
// Sort by created_at descending to get most recent
events.sort((a, b) => b.created_at - a.created_at)
const followListEvent = events[0]
return followListEvent.tags || []
}
return []
} catch (error) {
console.warn(`Error fetching follow list for ${pubHex}:`, error)
return []
}
}
// Get event likes via REST API
async getPostLikes (postId) {
try {
if (this.relays.length === 0) {
return []
}
let likesRes = await new Promise((resolve) => {
const likes = []
const closedRelays = []
const subId = generateSubId('post-likes')
const filter = { kinds: [7], '#e': [postId] }
const pool = RelayPool(this.relays)
pool.on('open', relay => {
relay.subscribe('subid', { kinds: [7], '#e': [postId] })
})
pool.on('eose', relay => {
relay.close()
if (!closedRelays.includes(relay)) {
closedRelays.push(relay)
}
// Resolve list if all relays are closed
if (closedRelays.length === this.relays.length) {
resolve(likes)
}
})
pool.on('event', (relay, subId, ev) => {
try {
// Count likes
if (ev.content === '+' || ev.content === '-') {
likes.push(ev)
}
} catch (error) {
// skip error
}
})
pool.on('error', (relay) => {
relay.close()
if (!closedRelays.includes(relay)) {
closedRelays.push(relay)
}
// Resolve list if all relays are closed
if (closedRelays.length === this.relays.length) {
resolve(likes)
}
})
})
let likesRes = await this.restClient.queryEvents(subId, filter)
// Remove duplicated events
likesRes = likesRes.filter((val, i, list) => {
const existingIndex = list.findIndex(value => value.id === val.id)
return existingIndex === i
})
// Get likes
const likesArr = likesRes.filter((val, i, list) => {
return val.content === '+'
@@ -319,129 +191,91 @@ export default class NostrQueries {
const dislikesArr = likesRes.filter((val, i, list) => {
return val.content === '-'
})
// For every user dislike remove a user like from the array
for (let i = 0; i < dislikesArr.length; i++) {
const disLike = dislikesArr[i]
const likeExist = likesArr.findIndex(val => val.pubkey === disLike.pubkey)
if (likeExist >= 0) likesArr.splice(likeExist, 1)
}
// Return array of likes.
return likesArr
} catch (error) {
console.warn(error)
console.warn(`Error fetching post likes for ${postId}:`, error)
return []
}
}
async getChannelInfo (channelId) {
try {
if (this.relays.length === 0) {
return false
}
const existingChInfo = this.loadedChannelsInfo[channelId]
if (existingChInfo) {
console.log(`Returning ch info from cache : ${existingChInfo.name}`)
return existingChInfo
}
for (let i = 0; i < this.relays.length; i++) {
const info = await new Promise((resolve) => {
const relay = this.relays[i]
// const pool = RelayPool(config.nostrRelays)
const pool = RelayPool([relay])
pool.on('open', relay => {
relay.subscribe('REQ', { limit: 1, kinds: [41], '#e': [channelId] })
})
pool.on('eose', relay => {
relay.close()
resolve(false)
})
const subId = generateSubId('channel-info')
const filter = { limit: 1, kinds: [41], '#e': [channelId] }
pool.on('event', (relay, subId, ev) => {
try {
const chInfo = JSON.parse(ev.content)
resolve(chInfo)
} catch (error) {
resolve(false)
}
relay.close()
})
pool.on('error', (relay) => {
relay.close()
resolve(false)
})
})
// Stop looking for profile if found
if (info) {
this.loadedChannelsInfo[channelId] = info
return info
const events = await this.restClient.queryEvents(subId, filter)
if (events && events.length > 0) {
// Sort by created_at descending to get most recent
events.sort((a, b) => b.created_at - a.created_at)
const channelEvent = events[0]
try {
const chInfo = JSON.parse(channelEvent.content)
this.loadedChannelsInfo[channelId] = chInfo
return chInfo
} catch (error) {
console.warn(`Error parsing channel info for ${channelId}:`, error)
return false
}
}
return false
} catch (error) {
console.warn(error)
console.warn(`Error fetching channel info for ${channelId}:`, error)
return false
}
}
// Get associated pub keys from kind 04 inbox
// Get associated pub keys from kind 04 inbox via REST API
async getDms (pubKey) {
try {
if (this.relays.length === 0) {
return []
const subId = generateSubId('dms')
// Use array of filters for multiple conditions
const filters = [
{ limit: 100, kinds: [4], '#p': [pubKey] }, // received messages
{ limit: 100, kinds: [4], authors: [pubKey] } // sent messages
]
const events = await this.restClient.queryEvents(subId, filters)
const list = []
for (const ev of events) {
if (ev.pubkey === pubKey) {
// Sent message - get recipient from tags
if (ev.tags && ev.tags.length > 0 && ev.tags[0][0] === 'p') {
list.push(ev.tags[0][1])
}
} else {
// Received message - get sender pubkey
list.push(ev.pubkey)
}
}
let dms = await new Promise((resolve, reject) => {
let list = []
const closedRelays = []
const pool = RelayPool(this.relays)
// const pool = RelayPool([config.nostrRelay])
pool.on('open', relay => {
relay.subscribe('REQ', [
{ limit: 100, kinds: [4], '#p': [pubKey] }, // received messages
{ limit: 100, kinds: [4], authors: [pubKey] } // sent messages
])
})
pool.on('eose', relay => {
relay.close()
if (!closedRelays.includes(relay)) {
closedRelays.push(relay)
}
// Resolve list if all relays are closed
if (closedRelays.length === this.relays.length) {
resolve(list)
}
})
pool.on('event', (relay, subId, ev) => {
// console.log('post retrieved from ', relay.url, ev.sig)
if (ev.pubkey === pubKey) {
const pk = ev.tags[0][1]
list = [...list, pk]
} else {
list = [...list, ev.pubkey]
}
})
pool.on('error', (relay) => {
relay.close()
if (!closedRelays.includes(relay)) {
closedRelays.push(relay)
}
// Resolve list if all relays are closed
if (closedRelays.length === this.relays.length) {
resolve(list)
}
})
})
// Remove duplicated feeds
dms = dms.filter((val, i, list) => {
// Remove duplicated pubkeys
const dms = list.filter((val, i, list) => {
const existingIndex = list.findIndex(value => value === val)
return existingIndex === i
})
return dms
} catch (error) {
console.warn(error)
console.warn(`Error fetching DMs for ${pubKey}:`, error)
return []
}
}
@@ -506,4 +340,39 @@ export default class NostrQueries {
throw error
}
}
// Get all deleted chats
async fetchDeletedChats () {
try {
const options = {
method: 'GET',
url: `${SERVER}nostr/deletedChat`
}
const result = await axios.request(options)
const { deletedChats } = result.data
this.deletedChats = deletedChats
} catch (error) {
console.error('Error fetchDeletedChats: ', error)
throw error
}
}
// Get all deleted posts
async fetchDeletedPosts () {
try {
const options = {
method: 'GET',
url: `${SERVER}nostr/deletedPost`
}
const result = await axios.request(options)
console.log('result', result)
const { deletedPosts } = result.data
console.log('deletedPosts', deletedPosts)
this.deletedPosts = deletedPosts
} catch (error) {
console.error('Error fetchDeletedPosts: ', error)
throw error
}
}
}
+239
View File
@@ -0,0 +1,239 @@
/**
* REST API Client for Nostr relay interactions via REST2NOSTR proxy
*/
import config from '../config/index.js'
/**
* Generate a unique subscription ID
* @param {string} prefix - Prefix for the subscription ID
* @returns {string} Unique subscription ID
*/
export function generateSubId (prefix = 'sub') {
return `${prefix}-${Date.now()}-${Math.random().toString(36).substr(2, 9)}`
}
class NostrRestClient {
constructor (localConfig = {}) {
this.apiUrl = localConfig.apiUrl || config.nostrRestApiUrl
this.activeSubscriptions = new Map() // Track active SSE subscriptions
}
/**
* Publish a signed event to the relay
* @param {Object} signedEvent - Signed Nostr event
* @returns {Promise<Object>} Response with {accepted, message, eventId}
*/
async publishEvent (signedEvent) {
try {
const response = await fetch(`${this.apiUrl}/event`, {
method: 'POST',
headers: {
'Content-Type': 'application/json'
},
body: JSON.stringify(signedEvent)
})
if (!response.ok) {
const errorText = await response.text()
throw new Error(`HTTP ${response.status}: ${errorText}`)
}
const result = await response.json()
return result
} catch (error) {
console.error('Error publishing event:', error)
throw error
}
}
/**
* Query events statelessly (GET request)
* @param {string} subId - Subscription ID
* @param {Array|Object} filters - Filter object or array of filters
* @returns {Promise<Array>} Array of events
*/
async queryEvents (subId, filters) {
try {
// Ensure filters is an array
const filtersArray = Array.isArray(filters) ? filters : [filters]
// Encode filters as query parameter
const filtersJson = encodeURIComponent(JSON.stringify(filtersArray))
const url = `${this.apiUrl}/req/${subId}?filters=${filtersJson}`
const response = await fetch(url)
if (!response.ok) {
const errorText = await response.text()
throw new Error(`HTTP ${response.status}: ${errorText}`)
}
const events = await response.json()
return events
} catch (error) {
console.error('Error querying events:', error)
throw error
}
}
/**
* Create a subscription for Server-Sent Events (SSE)
* @param {string} subId - Subscription ID
* @param {Array|Object} filters - Filter object or array of filters
* @param {Object} callbacks - Callback functions {onEvent, onEose, onClosed, onError}
* @returns {EventSource} EventSource instance for cleanup
*/
createSubscription (subId, filters, callbacks = {}) {
const { onEvent, onEose, onClosed, onError } = callbacks
// Ensure filters is an array
const filtersArray = Array.isArray(filters) ? filters : [filters]
// Use POST method for SSE subscription
// Note: EventSource doesn't support POST, so we'll use fetch with streaming
// However, for simplicity and browser compatibility, we'll use a workaround:
// Create a form and use POST, or use EventSource with GET if the server supports it
// For now, we'll use fetch with streaming and parse SSE manually
// This is more complex but allows POST with filters in body
const abortController = new AbortController()
const fetchSubscription = async () => {
try {
const response = await fetch(`${this.apiUrl}/req/${subId}`, {
method: 'POST',
headers: {
'Content-Type': 'application/json',
Accept: 'text/event-stream'
},
body: JSON.stringify(filtersArray),
signal: abortController.signal
})
if (!response.ok) {
const errorText = await response.text()
if (onError) {
onError(new Error(`HTTP ${response.status}: ${errorText}`))
}
return
}
const reader = response.body.getReader()
const decoder = new TextDecoder()
let buffer = ''
while (true) {
const { done, value } = await reader.read()
if (done) {
break
}
buffer += decoder.decode(value, { stream: true })
const lines = buffer.split('\n')
buffer = lines.pop() || '' // Keep incomplete line in buffer
for (const line of lines) {
if (line.startsWith('data: ')) {
try {
const data = JSON.parse(line.slice(6)) // Remove 'data: ' prefix
if (data.type === 'connected') {
// Connection established
console.log(`Subscription ${subId} connected`)
} else if (data.type === 'event' && data.data) {
// Event received
if (onEvent) {
onEvent(data.data)
}
} else if (data.type === 'eose') {
// End of stored events
if (onEose) {
onEose()
}
} else if (data.type === 'closed') {
// Subscription closed
if (onClosed) {
onClosed(data.message || 'Subscription closed')
}
return // Stop reading
}
} catch (parseError) {
console.warn('Error parsing SSE message:', parseError, line)
}
}
}
}
} catch (error) {
if (error.name === 'AbortError') {
// Subscription was cancelled, this is expected
return
}
console.error('Error in SSE subscription:', error)
if (onError) {
onError(error)
}
}
}
// Store subscription for cleanup
const subscription = {
subId,
abortController,
close: () => {
abortController.abort()
this.closeSubscription(subId)
}
}
this.activeSubscriptions.set(subId, subscription)
// Start the subscription
fetchSubscription()
return subscription
}
/**
* Close an existing subscription
* @param {string} subId - Subscription ID to close
* @returns {Promise<void>}
*/
async closeSubscription (subId) {
try {
// Abort the fetch if it's still active
const subscription = this.activeSubscriptions.get(subId)
if (subscription && subscription.abortController) {
subscription.abortController.abort()
}
// Send DELETE request to close subscription
const response = await fetch(`${this.apiUrl}/req/${subId}`, {
method: 'DELETE'
})
if (!response.ok) {
const errorText = await response.text()
console.warn(`Error closing subscription ${subId}:`, errorText)
}
// Remove from active subscriptions
this.activeSubscriptions.delete(subId)
} catch (error) {
console.error(`Error closing subscription ${subId}:`, error)
// Still remove from active subscriptions even if DELETE fails
this.activeSubscriptions.delete(subId)
}
}
/**
* Close all active subscriptions
*/
async closeAllSubscriptions () {
const subIds = Array.from(this.activeSubscriptions.keys())
await Promise.all(subIds.map(subId => this.closeSubscription(subId)))
}
}
export default NostrRestClient
+9 -13
View File
@@ -10,10 +10,10 @@
// import * as nip19 from '@chris.troutner/nostr-tools/nip19'
import { finalizeEvent } from 'nostr-tools/pure'
import { Relay } from 'nostr-tools/relay'
import BchNostr from 'bch-nostr'
import * as nip19 from 'nostr-tools/nip19'
import config from '../config/index.js'
import NostrRestClient from './nostr-rest-client.js'
class NostrBrowser {
constructor (localConfig = {}) {
@@ -27,6 +27,9 @@ class NostrBrowser {
relayWs: config.nostrRelay,
topic: config.nostrTopic
})
// Initialize REST client for publishing events
this.restClient = new NostrRestClient()
}
async testNostrUpload (inObj = {}) {
@@ -69,7 +72,6 @@ class NostrBrowser {
// tags: [['t', 'bch-dex-test-topic-01']]
// }
const relayWs = config.nostrRelay
const eventTemplate = {
kind: 867,
created_at: Math.floor(Date.now() / 1000),
@@ -82,18 +84,12 @@ class NostrBrowser {
// console.log('signedEvent: ', signedEvent)
const eventId = signedEvent.id
// Connect to a relay.
const relay = await Relay.connect(relayWs, {
/* global WebSocket */
webSocket: WebSocket
})
// console.log(`connected to ${relay.url}`)
// Publish the message via REST API
const result = await this.restClient.publishEvent(signedEvent)
// Publish the message to the relay.
await relay.publish(signedEvent)
// Close the connection to the relay.
relay.close()
if (!result.accepted) {
throw new Error(`Failed to publish event: ${result.message || 'Unknown error'}`)
}
// const eventId = await this.bchNostr.post.uploadToNostr(inObj)