Sunday, November 26, 2023
HomeMarketingHighlighting Textual content Enter with Jetpack Compose

Highlighting Textual content Enter with Jetpack Compose


We not too long ago launched a brand new function at Buffer, referred to as Concepts. With Concepts, you’ll be able to retailer all of your greatest concepts, tweak them till they’re prepared, and drop them straight into your Buffer queue. Now that Concepts has launched in our net and cellular apps, we now have a while to share some learnings from the event of this function. On this weblog put up, we’ll dive into how we added assist for URL highlighting to the Concepts Composer on Android, utilizing Jetpack Compose.


We began adopting Jetpack Compose into our app in 2021 – utilizing it as normal to construct all our new options, whereas progressively adopting it into current elements of our software. We constructed the entire of the Concepts function utilizing Jetpack Compose – so alongside quicker function growth and larger predictability throughout the state of our UI, we had loads of alternatives to additional discover Compose and be taught extra about tips on how to obtain sure necessities in our app.

Throughout the Concepts composer, we assist dynamic hyperlink highlighting. Because of this should you sort a URL into the textual content space, then the hyperlink shall be highlighted – tapping on this hyperlink will then present an “Open hyperlink” pop-up, which is able to launch the hyperlink within the browser when clicked.

On this weblog put up, we’re going to concentrate on the hyperlink highlighting implementation and the way this may be achieved in Jetpack Compose utilizing the TextField composable.


For the Concepts composer, we’re utilising the TextField composable to assist textual content entry. This composable incorporates an argument, visualTransformation, which is used to use visible modifications to the entered textual content.

TextField(
    ...
    visualTransformation = ...
)

This argument requires a VisualTransformation implementation which is used to use the visible transformation to the entered textual content. If we have a look at the supply code for this interface, we’ll discover a filter perform which takes the content material of the TextField and returns a TransformedText reference that incorporates the modified textual content.

@Immutable
enjoyable interface VisualTransformation {
    enjoyable filter(textual content: AnnotatedString): TransformedText
}

Relating to this modified textual content, we’re required to supply the implementation that creates a brand new AnnotatedString reference with our utilized modifications. This modified content material then will get bundled within the TransformedText sort and returned again to the TextField for composition.

In order that we are able to outline and apply transformations to the content material of our TextField, we have to begin by creating a brand new implementation of the VisualTransformation interface for which we’ll create a brand new class, UrlTransformation. This class will implement the VisualTransformation argument, together with taking a single argument within the type of a Colour. We outline this argument in order that we are able to cross a theme colour reference to be utilized inside our logic, as we’re going to be outdoors of composable scope and received’t have entry to our composable theme.

class UrlTransformation(
    val colour: Colour
) : VisualTransformation {

}

With this class outlined, we now have to implement the filter perform from the VisualTransformation interface. Inside this perform we’re going to return an occasion of the TransformedText class – we are able to bounce into the supply code for this class and see that there are two properties required when instantiating this class.

/**
 * The reworked textual content with offset offset mapping
 */
class TransformedText(
    /**
     * The reworked textual content
     */
    val textual content: AnnotatedString,

    /**
     * The map used for bidirectional offset mapping from unique to reworked textual content.
     */
    val offsetMapping: OffsetMapping
)

Each of those arguments are required, so we’re going to wish to supply a price for every when instantiating the TransformedText class.

  • textual content – this would be the modified model of the textual content that’s supplied to the filter perform
  • offsetMapping – as per the documentation, that is the map used for bidirectional offset mapping from unique to reworked textual content
class UrlTransformation(
    val colour: Colour
) : VisualTransformation {
    override enjoyable filter(textual content: AnnotatedString): TransformedText {
        return TransformedText(
            ...,
            OffsetMapping.Identification
        )
    }
}

For the offsetMapping argument, we merely cross the OffsetMapping.Identification worth – that is the predefined default worth used for the OffsetMapping interface, used for when that can be utilized for the textual content transformation that doesn’t change the character depend. Relating to the textual content argument we’ll want to write down some logic that can take the present content material, apply the highlighting and return it as a brand new AnnotatedString reference to be handed into our TransformedText reference. For this logic, we’re going to create a brand new perform, buildAnnotatedStringWithUrlHighlighting. That is going to take two arguments – the textual content that’s to be highlighted, together with the colour for use for the highlighting.

enjoyable buildAnnotatedStringWithUrlHighlighting(
    textual content: String, 
    colour: Colour
): AnnotatedString {
    
}

From this perform, we have to return an AnnotatedString reference, which we’ll create utilizing buildAnnotatedString. Inside this perform, we’ll begin through the use of the append operation to set the textual content material of the AnnotatedString.

enjoyable buildAnnotatedStringWithUrlHighlighting(
    textual content: String, 
    colour: Colour
): AnnotatedString {
    return buildAnnotatedString {
        append(textual content)
    }
}

Subsequent, we’ll have to take the contents of our string and apply highlighting to any URLs which might be current. Earlier than we are able to do that, we have to establish the URLs within the string. URL detection would possibly differ relying on the use case, so to maintain issues easy let’s write some instance code that can discover the URLs in a given piece of textual content. This code will take the given string and filter the URLs, offering an inventory of URL strings because the outcome.

textual content?.break up("s+".toRegex())?.filter { phrase ->
    Patterns.WEB_URL.matcher(phrase).matches()
}

Now that we all know what URLs are within the string, we’re going to wish to use highlighting to them. That is going to be within the type of an annotated string type, which is utilized utilizing the addStyle operation.

enjoyable addStyle(type: SpanStyle, begin: Int, finish: Int)

When calling this perform, we have to cross the SpanStyle that we want to apply, together with the beginning and finish index that this styling ought to be utilized to. We’re going to begin by calculating this begin and finish index  – to maintain issues easy, we’re going to imagine there are solely distinctive URLs in our string.

textual content?.break up("s+".toRegex())?.filter { phrase ->
    Patterns.WEB_URL.matcher(phrase).matches()
}.forEach {
    val startIndex = textual content.indexOf(it)
    val endIndex = startIndex + it.size
}

Right here we find the beginning index through the use of the indexOf perform, which is able to give us the beginning index of the given URL. We’ll then use this begin index and the size of the URL to calculate the tip index. We will then cross these values to the corresponding arguments for the addStyle perform.

textual content?.break up("s+".toRegex())?.filter { phrase ->
    Patterns.WEB_URL.matcher(phrase).matches()
}.forEach {
    val startIndex = textual content.indexOf(it)
    val endIndex = startIndex + it.size
    addStyle(
        begin = startIndex, 
        finish = endIndex
    )
}

Subsequent, we have to present the SpanStyle that we wish to be utilized to the given index vary. Right here we wish to merely spotlight the textual content utilizing the supplied colour, so we’ll cross the colour worth from our perform arguments as the colour argument for the SpanStyle perform.

textual content?.break up("s+".toRegex())?.filter { phrase ->
    Patterns.WEB_URL.matcher(phrase).matches()
}.forEach {
    val startIndex = textual content.indexOf(it)
    val endIndex = startIndex + it.size
    addStyle(
        type = SpanStyle(
            colour = colour
        ),
        begin = startIndex, 
        finish = endIndex
    )
}

With this in place, we now have a whole perform that can take the supplied textual content and spotlight any URLs utilizing the supplied Colour reference.

enjoyable buildAnnotatedStringWithUrlHighlighting(
    textual content: String, 
    colour: Colour
): AnnotatedString {
    return buildAnnotatedString {
        append(textual content)
        textual content?.break up("s+".toRegex())?.filter { phrase ->
            Patterns.WEB_URL.matcher(phrase).matches()
        }.forEach {
            val startIndex = textual content.indexOf(it)
            val endIndex = startIndex + it.size
            addStyle(
                type = SpanStyle(
                    colour = colour,
                    textDecoration = TextDecoration.None
                ),
                begin = startIndex, finish = endIndex
            )
        }
    }
}

We’ll then have to hop again into our UrlTransformation class and cross the results of the buildAnnotatedStringWithUrlHighlighting perform name for the TransformedText argument.

class UrlTransformation(
    val colour: Colour
) : VisualTransformation {
    override enjoyable filter(textual content: AnnotatedString): TransformedText {
        return TransformedText(
            buildAnnotatedStringWithUrlHighlighting(textual content, colour),
            OffsetMapping.Identification
        )
    }
}

Now that our UrlTransformation implementation is full, we are able to instantiate this and cross the reference for the visualTransformation  argument of the TextField composable. Right here we’re utilizing the specified colour from our MaterialTheme reference, which shall be used when highlighting the URLs in our TextField content material.

TextField(
    ...
    visualTransformation = UrlTransformation(
        MaterialTheme.colours.secondary)
)

With the above in place, we now have dynamic URL highlighting assist inside our TextField composable. Because of this now each time the person inserts a URL into the composer for an Thought, we establish this as a URL by highlighting it utilizing a the secondary colour from our theme.

On this put up, we’ve learnt how we are able to apply dynamic URL highlighting to the contents of a TextField composable. Within the subsequent put up, we’ll discover how we added the “Open hyperlink” pop-up when a URL is tapped throughout the composer enter space.



RELATED ARTICLES

LEAVE A REPLY

Please enter your comment!
Please enter your name here

Most Popular

Recent Comments