@ -169,7 +169,7 @@ const elemCanvas = (text) => {
function createTextNote ( evt , relay ) {
function createTextNote ( evt , relay ) {
const { host , img , isReply , name , replies , time , userName } = getMetadata ( evt , relay ) ;
const { host , img , isReply , name , replies , time , userName } = getMetadata ( evt , relay ) ;
const isLongContent = evt . content . trimRight ( ) . length > 280 ;
const isLongContent = evt . content . trimRight ( ) . length > 280 ;
const content = isLongContent ? ` ${ evt . content . slice ( 0 , 280 ) } … ` : evt . content ;
const content = isLongContent ? evt . content . slice ( 0 , 280 ) : evt . content ;
const hasReactions = reactionMap [ evt . id ] ? . length > 0 ;
const hasReactions = reactionMap [ evt . id ] ? . length > 0 ;
const didReact = hasReactions && ! ! reactionMap [ evt . id ] . find ( reaction => reaction . pubkey === pubkey ) ;
const didReact = hasReactions && ! ! reactionMap [ evt . id ] . find ( reaction => reaction . pubkey === pubkey ) ;
const replyFeed = replies [ 0 ] ? replies . map ( e => replyDomMap [ e . id ] = createTextNote ( e , relay ) ) : [ ] ;
const replyFeed = replies [ 0 ] ? replies . map ( e => replyDomMap [ e . id ] = createTextNote ( e , relay ) ) : [ ] ;
@ -604,10 +604,10 @@ privateKeyInput.value = localStorage.getItem('private_key');
pubKeyInput . value = localStorage . getItem ( 'pub_key' ) ;
pubKeyInput . value = localStorage . getItem ( 'pub_key' ) ;
document . body . addEventListener ( 'click' , ( e ) => {
document . body . addEventListener ( 'click' , ( e ) => {
const append = e . target . closest ( '[data-append]' ) ;
const container = e . target . closest ( '[data-append]' ) ;
if ( append ) {
if ( container ) {
append. textContent += append . dataset . append ;
container. append ( ... multilineText ( container . dataset . append ) ) ;
delete append . dataset . append ;
delete container . dataset . append ;
return ;
return ;
}
}
const back = e . target . closest ( '[name="back"]' )
const back = e . target . closest ( '[name="back"]' )