@ -7,6 +7,7 @@ import dagger.hilt.android.lifecycle.HiltViewModel
import java.util.Date
import java.util.concurrent.TimeUnit
import javax.inject.Inject
import kotlin.text.Typography.ellipsis
import kotlinx.coroutines.Dispatchers
import kotlinx.coroutines.Job
import kotlinx.coroutines.channels.Channel
@ -23,6 +24,7 @@ import org.session.libsession.messaging.sending_receiving.attachments.Attachment
import org.session.libsession.messaging.sending_receiving.attachments.DatabaseAttachment
import org.session.libsession.utilities.Util
import org.session.libsession.utilities.recipients.Recipient
import org.thoughtcrime.securesms.ApplicationContext
import org.thoughtcrime.securesms.MediaPreviewArgs
import org.thoughtcrime.securesms.database.AttachmentDatabase
import org.thoughtcrime.securesms.database.LokiMessageDatabase
@ -44,6 +46,7 @@ class MessageDetailsViewModel @Inject constructor(
private val threadDb : ThreadDatabase ,
private val repository : ConversationRepository ,
private val deprecationManager : LegacyGroupDeprecationManager ,
private val context : ApplicationContext
) : ViewModel ( ) {
private var job : Job ? = null
@ -59,38 +62,57 @@ class MessageDetailsViewModel @Inject constructor(
job ?. cancel ( )
field = value
val r ecord = mmsSmsDatabase . getMessageForTimestamp ( timestamp )
val messageR ecord = mmsSmsDatabase . getMessageForTimestamp ( timestamp )
if ( r ecord == null ) {
if ( messageR ecord == null ) {
viewModelScope . launch { event . send ( Event . Finish ) }
return
}
val mmsRecord = r ecord as ? MmsMessageRecord
val mmsRecord = messageR ecord as ? MmsMessageRecord
job = viewModelScope . launch {
repository . changes ( r ecord. threadId )
repository . changes ( messageR ecord. threadId )
. filter { mmsSmsDatabase . getMessageForTimestamp ( value ) == null }
. collect { event . send ( Event . Finish ) }
}
state . value = r ecord. run {
state . value = messageR ecord. run {
val slides = mmsRecord ?. slideDeck ?. slides ?: emptyList ( )
val recipient = threadDb . getRecipientForThreadId ( threadId ) !!
val isDeprecatedLegacyGroup = recipient . isLegacyGroupRecipient &&
deprecationManager . isDeprecated
deprecationManager . isDeprecated
val errorString = lokiMessageDatabase . getErrorMessage ( id )
MessageDetailsState (
attachments = slides . map ( :: Attachment ) ,
record = record ,
sent = dateSent . let ( :: Date ) . toString ( ) . let { TitledText ( R . string . sent , it ) } ,
received = dateReceived . let ( :: Date ) . toString ( ) . let { TitledText ( R . string . received , it ) } ,
error = lokiMessageDatabase . getErrorMessage ( id ) ?. let { TitledText ( R . string . theError , it ) } ,
record = messageRecord ,
// Set the "Sent" message info TitledText appropriately
sent = if ( messageRecord . isSending && errorString == null ) {
val sendingWithEllipsisString = context . getString ( R . string . sending ) + ellipsis // e.g., "Sending…"
TitledText ( sendingWithEllipsisString , null )
} else if ( messageRecord . isSent && errorString == null ) {
dateReceived . let ( :: Date ) . toString ( ) . let { TitledText ( R . string . sent , it ) }
} else {
null // Not sending or sent? Don't display anything for the "Sent" element.
} ,
// Set the "Received" message info TitledText appropriately
received = if ( messageRecord . isIncoming && errorString == null ) {
dateReceived . let ( :: Date ) . toString ( ) . let { TitledText ( R . string . received , it ) }
} else {
null // Not incoming? Then don't display anything for the "Received" element.
} ,
error = errorString ?. let { TitledText ( context . getString ( R . string . theError ) + " : " , it ) } ,
senderInfo = individualRecipient . run { TitledText ( name , address . toString ( ) ) } ,
sender = individualRecipient ,
thread = recipient ,
readOnly = isDeprecatedLegacyGroup ,
readOnly = isDeprecatedLegacyGroup
)
}
}