Add Timeline item and reply preview with ambiguous display name
This commit is contained in:
parent
de2fb77fdc
commit
0d665388b8
2 changed files with 50 additions and 2 deletions
|
|
@ -0,0 +1,47 @@
|
||||||
|
/*
|
||||||
|
* Copyright (c) 2024 New Vector Ltd
|
||||||
|
*
|
||||||
|
* Licensed under the Apache License, Version 2.0 (the "License");
|
||||||
|
* you may not use this file except in compliance with the License.
|
||||||
|
* You may obtain a copy of the License at
|
||||||
|
*
|
||||||
|
* http://www.apache.org/licenses/LICENSE-2.0
|
||||||
|
*
|
||||||
|
* Unless required by applicable law or agreed to in writing, software
|
||||||
|
* distributed under the License is distributed on an "AS IS" BASIS,
|
||||||
|
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||||
|
* See the License for the specific language governing permissions and
|
||||||
|
* limitations under the License.
|
||||||
|
*/
|
||||||
|
|
||||||
|
package io.element.android.features.messages.impl.timeline.components
|
||||||
|
|
||||||
|
import androidx.compose.runtime.Composable
|
||||||
|
import androidx.compose.ui.tooling.preview.PreviewParameter
|
||||||
|
import io.element.android.features.messages.impl.timeline.model.InReplyToDetails
|
||||||
|
import io.element.android.libraries.designsystem.preview.ElementPreview
|
||||||
|
import io.element.android.libraries.designsystem.preview.PreviewsDayNight
|
||||||
|
import io.element.android.libraries.matrix.api.timeline.item.event.TextMessageType
|
||||||
|
|
||||||
|
@PreviewsDayNight
|
||||||
|
@Composable
|
||||||
|
internal fun TimelineItemEventRowDisambiguatedPreview(
|
||||||
|
@PreviewParameter(InReplyToDetailsDisambiguatedProvider::class) inReplyToDetails: InReplyToDetails,
|
||||||
|
) = ElementPreview {
|
||||||
|
TimelineItemEventRowWithReplyContentToPreview(inReplyToDetails)
|
||||||
|
}
|
||||||
|
|
||||||
|
class InReplyToDetailsDisambiguatedProvider : InReplyToDetailsProvider() {
|
||||||
|
override val values: Sequence<InReplyToDetails>
|
||||||
|
get() = sequenceOf(
|
||||||
|
aMessageContent(
|
||||||
|
body = "Message which are being replied.",
|
||||||
|
type = TextMessageType("Message which are being replied.", null)
|
||||||
|
),
|
||||||
|
).map {
|
||||||
|
aInReplyToDetails(
|
||||||
|
displayNameAmbiguous = true,
|
||||||
|
eventContent = it,
|
||||||
|
)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
@ -151,7 +151,7 @@ open class InReplyToDetailsProvider : PreviewParameterProvider<InReplyToDetails>
|
||||||
)
|
)
|
||||||
}
|
}
|
||||||
|
|
||||||
private fun aMessageContent(
|
protected fun aMessageContent(
|
||||||
body: String,
|
body: String,
|
||||||
type: MessageType,
|
type: MessageType,
|
||||||
) = MessageContent(
|
) = MessageContent(
|
||||||
|
|
@ -164,13 +164,14 @@ open class InReplyToDetailsProvider : PreviewParameterProvider<InReplyToDetails>
|
||||||
|
|
||||||
protected fun aInReplyToDetails(
|
protected fun aInReplyToDetails(
|
||||||
eventContent: EventContent,
|
eventContent: EventContent,
|
||||||
|
displayNameAmbiguous: Boolean = false,
|
||||||
) = InReplyToDetails(
|
) = InReplyToDetails(
|
||||||
eventId = EventId("\$event"),
|
eventId = EventId("\$event"),
|
||||||
eventContent = eventContent,
|
eventContent = eventContent,
|
||||||
senderId = UserId("@Sender:domain"),
|
senderId = UserId("@Sender:domain"),
|
||||||
senderProfile = ProfileTimelineDetails.Ready(
|
senderProfile = ProfileTimelineDetails.Ready(
|
||||||
displayName = "Sender",
|
displayName = "Sender",
|
||||||
displayNameAmbiguous = false,
|
displayNameAmbiguous = displayNameAmbiguous,
|
||||||
avatarUrl = null,
|
avatarUrl = null,
|
||||||
),
|
),
|
||||||
textContent = (eventContent as? MessageContent)?.body.orEmpty(),
|
textContent = (eventContent as? MessageContent)?.body.orEmpty(),
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue