Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add external span IDs #230

Draft
wants to merge 1 commit into
base: main
Choose a base branch
from

Conversation

nicoburns
Copy link
Contributor

@nicoburns nicoburns commented Dec 16, 2024

This associated a user-specified ID with each style span in a TreeBuilder, which can then be retrieved from a Cluster after layout (and notably from a Cluster created using Cluster::from_point).

This enables hit-testing of inline spans (for click and hover behaviour).

The current behaviour of Cluster::from_point isn't ideal for this application: it will try to find the "nearest" cluster even if the cursor isn't exactly above one (which makes sense for placing a caret but not for hover/click). But it's "good enough" for now, and I think we can add a new function for that in a followup.

Rendered using Parley + Blitz:

Screen.Recording.2024-12-17.at.07.51.41.mov

@nicoburns nicoburns requested review from dfrg and xorgy December 16, 2024 18:59
@DJMcNab
Copy link
Member

DJMcNab commented Dec 17, 2024

Hmm. The way I solved a very similar problem in Masonry, which worked quite well, was to just make the Brush parameter contain the style id. You would then do a look-up from the style id to your painting property, and whatever other metadata you need (so for hover in this case)

My understanding is that something like this would be a future plan, but likely as part of the much more significant refactor discussed here.

@nicoburns
Copy link
Contributor Author

Hmm. The way I solved a very similar problem in Masonry, which worked quite well, was to just make the Brush parameter contain the style id. You would then do a look-up from the style id to your painting property, and whatever other metadata you need (so for hover in this case)

My understanding is that something like this would be a future plan, but likely as part of the much more significant refactor discussed here.

Definitely looking forward to the refactor, but we I don't want to wait on it as my understanding is that it is likely to come as part of the switch to using harfruzz for shaping which is likely several months off at this point. In the meantime, we can improve the current API (and evolve it closer towards the new design in the process)

IMO it's a bit neater if it's separate as conceptually an ID is not a "style", but I suppose putting it in Brush would work (and then I guess you can use () for Brush until we remove it).

@nicoburns nicoburns force-pushed the external-style-span-ids branch from c4c0947 to 63f23d0 Compare January 18, 2025 13:55
@xorgy
Copy link
Member

xorgy commented Jan 18, 2025

Putting it in Brush does introduce some awkwardness around multiple stylistic brushes mapped to the same id, but I think it's good to limit the associated data on spans to the one field if we can. Might be worth making an example or a document for mixing ids with other data on a Brush.

The code itself I think is fine.

@xorgy
Copy link
Member

xorgy commented Jan 29, 2025

@nicoburns could you run the format on this so it can be mergeable?

@DJMcNab
Copy link
Member

DJMcNab commented Jan 29, 2025

If we are going to merge this, then my preference would be to tear out the Brush entirely at the same time.
They serve exactly the same purpose, except Brush is generic, with all the advantages and disadvantages that brings.

@waywardmonkeys
Copy link
Contributor

I think I'm in agreement with Daniel's last comment and that shouldn't be merged in the current form.

@nicoburns nicoburns force-pushed the external-style-span-ids branch from b648f14 to 1796b61 Compare January 29, 2025 21:49
@nicoburns
Copy link
Contributor Author

I've formatted and rebased this because why not. But it sounds like we'll need to find a different design for this.

I think we will want to find a solution though, because parley::ResolvedStyle stores three instances of Brush: the main one + one for underlined text + one for strikethrough text, so implementing "span ids" on top of parley main means duplicating that id 3 times (or storing a dummy id twice).

Which brings up another point: should parley be dealing with underline and strikethrough styles at all. Most of the styles there look like they are just passed straight through. But perhaps there's something around the offset which is font-specific and parley is useful for?

@dfrg Would you anticipate Parley handling underline/strikethrough styles in a world where the main text colour "brush" is just an external ID? Or would those styles hang off the ID too?

@nicoburns
Copy link
Contributor Author

nicoburns commented Jan 29, 2025

Diff to switch Blitz from this PR to Parley main is https://github.com/DioxusLabs/blitz/pull/183/files. It's not awful, but it's definitely not as clean. In any case, it unblocks Blitz from using Parley main and/or a new release of Parley if we make one.

@nicoburns nicoburns marked this pull request as draft January 29, 2025 22:44
@dfrg
Copy link
Collaborator

dfrg commented Jan 29, 2025

In my parley-next vision, all style information that doesn’t directly affect layout would be hung off of a style/span id and be managed by the user. With that in mind, I’m fine with just removing the text decoration properties entirely.

Signed-off-by: Nico Burns <[email protected]>
@nicoburns nicoburns force-pushed the external-style-span-ids branch from 1796b61 to d4205de Compare January 31, 2025 23:59
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

5 participants