-
-
Notifications
You must be signed in to change notification settings - Fork 657
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
Theme definition #3242
base: main
Are you sure you want to change the base?
Theme definition #3242
Conversation
I'm very excited to see this happening!! Just a heads up: I'm in the process of wrapping up v0.40.0 in the next week or so, so it will take me a short while to get to this. But rest assured, I will! I ask for your patience and thank you again for what seems like a tremendous amount of work! |
Is there a full config example for this? I'd like to grab this and compile it locally to test it out .. |
Hey @DeaconDesperado - amazing and very thorough work here! Thank you for your patience and apologies for taking so long to give you an initial review. I'll try to be faster from now on so we can iterate over this quickly. If it's alright with you, I prefer to go over the actual code changes once the product side (API, config, spec, behaviour, etc.) has been finalized. I think it'll save both of us some work, because changes in that area can cause sweeping changes in its implementation. So to your questions:
Good catch, we didn't account for these. Perhaps we can add a
I actually like it this way. I understand it can seem a bit redundant, but I think in the context of a theme configuration this is much clearer than
I don't have a strong opinion here, so up to you. A few considerations:
Legit! Let's keep things simple.
Yes, these are legacies! It's totally fine to remove them if you want.
These issues were fixed in v0.40.0 and iirc I even moved lots of stuff to UI components, so I hope this will make things easier! Anything else I can do to help move this along? |
@imsnif Thanks for the thorough answers! Will incorporate this feedback and have another go at Strider. |
@glenn-lytx below is a sample of the themes block I've been using locally (also used in the screenshots), just need to change
|
Awesome, thanks! I'll give it a try |
e9bebbc
to
5c845d3
Compare
Revised this quite heavily with the suggested changes:
To validate the behavior of the UI components, I set up a very simple toy example based on rust-plugin-example that just renders all the elements in various states (with silly, but noticeable color differences between states) Let me know if the high level approach here now looks sound, and then I'll proceed with improving the test coverage for backward compatiblity and the aforementioned product stuff to support migration (docs, possible script to migrate old palette to new themes). Also LMK if we prefer that in a separate PR. Thanks! |
Hey @DeaconDesperado - I'm happy to see the work going on. Kudos on your perseverance and consistency, this looks like quite a great effort! I'm sorry it's taking me a bit of time to get to this, but rest assured - I plan to ASAP! I have not forgotten nor do I mean to let your work go to waste. |
Hey @DeaconDesperado - this sounds good (though I will as mentioned wait with going over the exact code until we finalize the product stuff). Including a conversion script is a very nice touch, but assuming we preserve backward compatibility and the existing themes will continue working as expected, I think it's alright. This is mostly meant to allow people to more easily create new themes with greater flexibility. For the interests of efficiency, I have put aside some time every week on Friday morning CEST to go over this PR. So that you'll know when I'll do the next round and are able to prepare for it. I'll try to be available for quick questions in between so that we can get this going. What else do you need from me for the time being? |
@imsnif I didn't find time to put a cap on the sole failing integration test this week, but I was wondering what would be the best way to confirm the outstanding product related points? Would you prefer a description incorporating any changes to what was discussed in #2297 here in the comments, or a separate PR to website repo that includes the user-facing documentation? In the interest of providing something in time for the Friday review bandwidth you carved out for me (thanks!) I'll try to preemptively give the former here, updated to incorporate all the discussions we've had (this is also what's presently working): Updated SpecWherever colors are specified, they use the existing definition prior to this change, using any of:
A theme consists of a
Any omitted declarations default to the same fixed colors they would prior to this change (constructed from reverse engineering what named fixed colors mapped to what parts of the UX). In order to make sure the theme is coherent, these declarations cannot be partially defined: if they are specified at all, all 6 colors must be set in them (or return an error at startup). They are:
The following additional
And finally, a key Complete example configuration for a named theme
|
Hey @DeaconDesperado - thanks for putting this together. This is great and really helps me reviewing this PR quickly. I appreciate the clear communication and your meticulousness! This looks really good to me and I hardly have any comments. Just a few things:
To make sure I understand this correctly: an entire component can be omitted from the styling (eg.
Could we make this apply to the mouse-selection and search results too? These happen here: https://github.com/zellij-org/zellij/blob/main/zellij-server/src/panes/grid.rs#L1088 (and a few lines below in the same function)
Could we also add a Otherwise - this looks very good and I'm happy to go forward with this and start reviewing the implementation once you're ready. Fair warning: I'm in the process of revamping the UI of the status-bar to solve the colliding keybindings issue, so I imagine I'm going to create some chaos there for you. I'll do my best to make it minimal and help with the merge afterwards. Amazing work! Looking forward to iterating more and getting this merged. ADDENDUM: I realized I didn't see any reference to this, so just to make sure: the old themes will still work, right? We have to remain backwards compatible (I'm even in favor of allowing theme authors to mix the new component declarations into the old color themes if they want, but this is not a must IMO). |
That's correct. I think it makes the most sense to have theme authors always provide a declaration in full or not at all, since partial application of defaults could lead to weird text / background mismatches.
I'll add these to the punchlist 😄.
Yes, there is a Edit: As it is currently, the new vs old styles can't be mixed together and are configured disjointly. If your named theme includes a |
Hey, I couldn't find the declaration in the link and I'm still not up to speed on the implementation details - so just to make sure (because this is a showstopper and I don't want to needlessly add work for you in the end): if I have an arbitrary file (not included in the Zellij repo) that has the old theme declaration with colors, that works now - will it continue working after this? It's totally fine if we can't mix these declarations, but if that is the case, let's error if they are mixed. |
Hmm the link does seem to be broken when highlighting the lines. Yes, they will continue to work without problem. The old format is just mapped into the new one in memory and at runtime when configuration loads. |
a5f58bf
to
0bc59cd
Compare
I believe this should now be ready for review. I added a few test cases to validate the configuration works as expected (and errors under the right conditions). Per our separate discussion in Discord, I removed any commits I had made to the e2e tests in an effort to get them to work with my local setup (we ran into OSX environment-specific issues). Will rely on the CI/CD feedback for these. |
Hey @DeaconDesperado - first off: fantastic work once again! I had a list of things to check on the compatibility/API level and this implementation passed them with flying colors. The This looks great all in all - I have a first round of rejects. Let's iterate over this a bit and once we're satisfied I'll do a deeper dive into the code 1. Regarding the
|
Thanks! Once I managed to understand how the plugin API works it felt a bit natural to anticipate certain backward compatibility needs there (it's very nicely designed!) 1We can remove this, yeah. The thought behind it had been that perhaps there could be a separate node 2Pushed two commits to fix this, quick oversight on my part to not backport the same fix from the UI ribbon component into its separate implementations in tab-bar + compact-bar . 3This presently uses one of the emphasis colors that would map for 4/5I suspect the disappearing text is in fact the test theme, if you're testing with the one I pasted in the comment earlier I had to rearrange a few definitions. I'll paste a new one in a following comment. Will definitely look to collapse that extra space between cells as well. One other thing: in testing some of the existing themes as-is (dracula) I'm noticing that by prohibiting partial application of colors, we might make it impossible to make some elements keep transparency? EG you must provide a Dracula original: Dracula now: Perhaps it makes sense to make background optional? |
Updated test theme
|
21af12b
to
6995e36
Compare
Apologies for the long delay on this, but happy to report it is rebased successfully and ready for the next set of eyes again. This set of changes includes all the previously suggested feedback (thanks!):
There's one known issue I'm aware of (and could definitely use some guidance with!). For some of the existing themes (eg Nord), some conflicts emerge when mapping the Screenshot: I noticed some discussion in #3658 on a similar topic (background transparency) but still need to digest it 😄 |
Hey @DeaconDesperado - happy to see you're still pitching away at this and am excited to see the progress! Also, congratulations on your new baby and I hope all is going well there. I hope it's alright with you if I defer a full review until we settle the text-background issue (more on this below). It will be easier for me because at this point getting back into context on the whole thing is a lot of mental load 😅 So this was also noticed as you mentioned in #3681. The solution we came up with is to have To me it seems like we could adopt a similar solution to the new themes (maintaining backwards compatibility with the |
@imsnif That sounds like a great solution as it will allow the component's caller to specify the opacity (eg plugin authors). Seems like it was recently merged so I'll work towards rebasing that in. |
f667e60
to
85445c6
Compare
The opacity method worked out great to solve the above problem. I also rebased in some of the newer plugins ( I think with that, all the known issues should be resolved. Let me know if there's anything I can do to support a review (happy to find a time to coordinate on discord for example, if that helps). |
Sounds amazing! I'm very impressed by your hard work and perseverance. Looking forward to having this merged. That being said, this release is all set to go out next week and right now I'm mostly finalizing the last bits. So I'll be sure to take another look at this in 1-2 weeks max once things settle down. Just wanted to give you a heads up and let you know I have not forgotten. It'll make it easier for me if maybe you can add a sample theme with all options to the example folder for easy testing (assuming one is not already available, I have not yet looked at the code). Thank you for your patience! |
Draft implementation of the specification laid out in #2297. Would love feedback on this!
Rough outline of the changes:
Styling
, and the necessary protobuf records to match the spec from [Proposal] New theme definition spec #2297Styling
Styling
<->Palette
in order to preserve backward compatibility for themes:Palette
in their config).Styling
->Palette
conversion is performed in theplugin_api
layer, so the older message format is still propagated to plugins.Open questions / notes
client_id_to_colors
This function is used to colorize pane frames and cursors in multi-user sessions. While mentioned in some of the comments, the proposed specification in #2297 didn't explicitly lay these colors out, and there are (presently) 10 of them (larger in number than the other specs). We could consider adding a separate style block for these, repurposing some of the emphases from
frame_unselected
, or using some sane defaults? This draft presently sets them to values fromcrate::shared::colors
for the time being.Configuration shape
KDL prohibits anonymous nodes, and lists are represented as sequential values after the node name. In order to support all three representations of color presently used (single digit, 3 digit rgb, hex) the style specifications all are named individually, and macros from the original
Palette
are reused to deserialize the color, EG:It's arguably a bit redundant to have these indexes named sequentially this way? It might be possible to consolidate all the emphases to one list, but then that one node would need to be extracted into all 4 indexes somehow, which presents the prospect of mixing the EightBit/RGB/Hex representations... WDYT?
Currently,
Styling
's members are stored as fixed length arrays: it felt like a reasonable way to preserve the ability to add more colors in the future if needed. An alternative could be this structure though.UI Components
Given that I'm only just getting familiar with the codebase, I opted to make these changes in place without also doing a migration of plugins to the various UI components 😅 . The coloration should be consistent however, only preserving differences where they are an artifact of the present implementation.
An example: When using
simplified_ui
, theribbon
implemented directly in the status-bar plugin uses alternating background colors to differentiate "tabs", whereas the UI component (eg insession-manager
) uses divider spacers colored to match the terminal background. Where encountered, these kinds of differences are preserved (for now).ThemeHue + PaletteSource
The swap of foreground/background based on
ThemeHue
is preserved only when converting aPalette
to aStyling
. The only place I could find this value to be set was in this function, which doesn't seem to be called anywhere. Perhaps it's leftover from an earlier implementation? I seemed to uncover similar forPaletteSource
. Not sure if I'm missing something here...Strider
I was unfortunately unable to do as much vetting of strider specifically, encountered #3064 when trying to test it out. Might require some help with this.
Still TODO
In addition to incorporating any feedback, still need to:
snapshot
assertion (temporarily ignored here)zellij convert-theme
utility to migrate existing configurations to the new format?Screenshots
Comparison of default theme (left new, right old)
Welcome screen
Frameless layout
Run pane exit codes
Simplified UI (no arrow fonts)
Compact layout