Skip to content

Commit

Permalink
fix: spannable link in markdown (#2118)
Browse files Browse the repository at this point in the history
  • Loading branch information
Garzas committed Aug 18, 2023
1 parent 09a6669 commit ec6c6b9
Show file tree
Hide file tree
Showing 3 changed files with 213 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -90,6 +90,152 @@ val mockMessageWithText = UIMessage.Regular(
messageFooter = mockEmptyFooter
)

val mockMessageWithMarkdownTextAndLinks = UIMessage.Regular(
userAvatarData = UserAvatarData(null, UserAvailabilityStatus.AVAILABLE),
header = mockHeader,
messageContent = UIMessageContent.TextMessage(
messageBody = MessageBody(
UIText.DynamicString(
"""
**bold text**
_italic text_
**_bold and italic_**
~~Strikethrough~~
# header
# Code
Inline `code`
Indented code
// Some comments
line 1 of code
line 2 of code
line 3 of code
Block code "fences"
```
Sample text here...
```
# Links
[AR PR](https://github.com/wireapp/wire-android-reloaded/pulls)
Autoconverted link https://github.com/wireapp/kalium/pulls
"""
)
)
),
source = MessageSource.Self,
messageFooter = mockEmptyFooter
)

val mockMessageWithMarkdownListAndImages = UIMessage.Regular(
userAvatarData = UserAvatarData(null, UserAvailabilityStatus.AVAILABLE),
header = mockHeader,
messageContent = UIMessageContent.TextMessage(
messageBody = MessageBody(
UIText.DynamicString(
"""
## Lists
Bullet List
+ Create a list by starting a line with `+`, `-`, or `*`
+ Sub-lists are made by indenting 2 spaces:
- Marker character change forces new list start:
* Ac tristique libero volutpat at
+ Facilisis in pretium nisl aliquet
- Nulla volutpat aliquam velit
+ Very easy!
Ordered
1. Lorem ipsum dolor sit amet
2. Consectetur adipiscing elit
3. Integer molestie lorem at massa
1. You can use sequential numbers...
1. ...or keep all the numbers as `1.`
Start numbering with offset:
57. foo
1. bar
# Images
Webp
![Wire](https://wire.com/wp-content/uploads/2022/02/Independently-Audited-_-Open-Source-2.webp)
Svg
![Wire](https://wire.com/wp-content/uploads/2021/08/wire-logo.svg)
Png
![Wire](https://avatars.githubusercontent.com/u/16047324?s=280&v=4)
"""
)
)
),
source = MessageSource.Self,
messageFooter = mockEmptyFooter
)

val mockMessageWithMarkdownTablesAndBlocks = UIMessage.Regular(
userAvatarData = UserAvatarData(null, UserAvailabilityStatus.AVAILABLE),
header = mockHeader,
messageContent = UIMessageContent.TextMessage(
messageBody = MessageBody(
UIText.DynamicString(
"""
# Tables
| Task | Person |
| ------ | ----------- |
| MLS | John |
| Federation | Will |
| Navigation | Ashley |
## Thematic Break
___
---
***
# Blockquotes
> Blockquotes can also be nested...
>> ...by using additional greater-than signs right next to each other...
> > > ...or with spaces between arrows.
# Typographic replacements
Enable typographer option to see result.
(c) (C) (r) (R) (tm) (TM) (p) (P) +-"""
)
)
),
source = MessageSource.Self,
messageFooter = mockEmptyFooter
)

val mockMessageWithKnock = UIMessage.System(
header = mockHeader,
messageContent = UIMessageContent.SystemMessage.Knock(UIText.DynamicString("John Doe pinged")),
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,9 @@ import com.wire.android.ui.home.conversations.mock.mockAssetMessage
import com.wire.android.ui.home.conversations.mock.mockFooter
import com.wire.android.ui.home.conversations.mock.mockHeader
import com.wire.android.ui.home.conversations.mock.mockMessageWithKnock
import com.wire.android.ui.home.conversations.mock.mockMessageWithMarkdownTextAndLinks
import com.wire.android.ui.home.conversations.mock.mockMessageWithMarkdownListAndImages
import com.wire.android.ui.home.conversations.mock.mockMessageWithMarkdownTablesAndBlocks
import com.wire.android.ui.home.conversations.mock.mockMessageWithText
import com.wire.android.ui.home.conversations.mock.mockedImageUIMessage
import com.wire.android.ui.theme.WireTheme
Expand Down Expand Up @@ -522,3 +525,66 @@ fun PreviewAggregatedMessagesWithErrorMessage() {
}
}
}

@PreviewMultipleThemes
@Composable
fun PreviewMessageWithMarkdownTextAndLinks() {
WireTheme {
MessageItem(
message = mockMessageWithMarkdownTextAndLinks,
audioMessagesState = emptyMap(),
onLongClicked = {},
onAssetMessageClicked = {},
onAudioClick = {},
onChangeAudioPosition = { _, _ -> },
onImageMessageClicked = { _, _ -> },
onOpenProfile = { _ -> },
onReactionClicked = { _, _ -> },
onResetSessionClicked = { _, _ -> },
onSelfDeletingMessageRead = {},
conversationDetailsData = ConversationDetailsData.None
)
}
}

@PreviewMultipleThemes
@Composable
fun PreviewMessageWithMarkdownListAndImages() {
WireTheme {
MessageItem(
message = mockMessageWithMarkdownListAndImages,
audioMessagesState = emptyMap(),
onLongClicked = {},
onAssetMessageClicked = {},
onAudioClick = {},
onChangeAudioPosition = { _, _ -> },
onImageMessageClicked = { _, _ -> },
onOpenProfile = { _ -> },
onReactionClicked = { _, _ -> },
onResetSessionClicked = { _, _ -> },
onSelfDeletingMessageRead = {},
conversationDetailsData = ConversationDetailsData.None
)
}
}

@PreviewMultipleThemes
@Composable
fun PreviewMessageWithMarkdownTablesAndBlocks() {
WireTheme {
MessageItem(
message = mockMessageWithMarkdownTablesAndBlocks,
audioMessagesState = emptyMap(),
onLongClicked = {},
onAssetMessageClicked = {},
onAudioClick = {},
onChangeAudioPosition = { _, _ -> },
onImageMessageClicked = { _, _ -> },
onOpenProfile = { _ -> },
onReactionClicked = { _, _ -> },
onResetSessionClicked = { _, _ -> },
onSelfDeletingMessageRead = {},
conversationDetailsData = ConversationDetailsData.None
)
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -236,7 +236,7 @@ fun appendLinksAndMentions(
with(nodeData.colorScheme) {
linkInfos.forEach {
val safeStart = max(it.start, 0)
val safeEnd = min(it.end, length - 1)
val safeEnd = min(it.end, length)
if (safeStart > safeEnd) {
return@forEach
}
Expand Down

0 comments on commit ec6c6b9

Please sign in to comment.