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

Bug: Theme switcher element and labeling is incorrect #4044

Open
2 of 3 tasks
thatblindgeye opened this issue Jul 30, 2023 · 7 comments
Open
2 of 3 tasks

Bug: Theme switcher element and labeling is incorrect #4044

thatblindgeye opened this issue Jul 30, 2023 · 7 comments
Labels
Status: Needs Review This issue/PR needs an initial or additional review Type: Accessibility Involves an accessibility feature or requires accessibility review Type: Bug Involves something that isn't working as intended

Comments

@thatblindgeye
Copy link
Contributor

Complete the following REQUIRED checkboxes:

  • I have thoroughly read and understand The Odin Project Contributing Guide
  • The title of this issue follows the Bug: brief description of bug format, e.g. Bug: Lesson complete button does not update on click

The following checkbox is OPTIONAL:

  • I would like to be assigned this issue to work on it

1. Description of the Bug:

The theme switcher has a few issues:

  • The main element is currently an anchor element, when it should be either a button or checkbox (checkbox might be easiest in terms of output). Using NVDA it announces the switcher as "clickable link graphic theme icon". The switcher is not a link so should not be using an anchor element.
  • The label of the switcher should not be "theme icon", as it doesn't convey any useful information. How this is updated depends on how the switcher element is updated. If we were to style a checkbox, we could just have the checkbox label be a static "Light theme" or "Dark theme" (whichever the default is), that way it would be announced as 'X theme checked/unchecked".
  • The svg icon should have the title element removed, and the switcher should no longer be labelled based on it (remove the aria-labelledby
  • Not really related to the main issue, but there is a significant delay between clicking the switcher and the icon updating. We should ideally try to make it more instantaneous.

2. How To Reproduce:

3. Expected Behavior:

4. Desktop/Device:

  • Device:
  • OS:
  • Browser:
  • Version:

5. Additional Information:

@thatblindgeye thatblindgeye added Type: Bug Involves something that isn't working as intended Status: Needs Review This issue/PR needs an initial or additional review Type: Accessibility Involves an accessibility feature or requires accessibility review labels Jul 30, 2023
@KevinMulhern
Copy link
Member

Thanks @thatblindgeye, the previous issue we had about this: #3497

@luuu-xu
Copy link
Contributor

luuu-xu commented Aug 9, 2023

@thatblindgeye @KevinMulhern I would love to work on this. While I was working on other a11y issues before I have noticed the theme switcher's weird a11y issue but did not immediately come up with an idea to fix it. But it seems a bit complicated since it is a link to turbo method, what should we do?

@thatblindgeye
Copy link
Contributor Author

@KevinMulhern any input on the above? Is there a reason we're using a link with a turbo method in the first place?

@KevinMulhern
Copy link
Member

KevinMulhern commented Aug 24, 2023

@thatblindgeye yep Turbo is what allows us to switch themes without a page refresh - but changing the element to a button shouldn't be an issue - it'll still work.

The label of the switcher should not be "theme icon", as it doesn't convey any useful information. How this is updated depends on how the switcher element is updated. If we were to style a checkbox, we could just have the checkbox label be a static "Light theme" or "Dark theme" (whichever the default is), that way it would be announced as 'X theme checked/unchecked".

This is likely the hardest problem to solve, we're limited with how much space we have in the navbar. More-so now we have the support link. But we might be able to do something like this:

Screenshot 2023-08-24 at 12 56 27

Not really related to the main issue, but there is a significant delay between clicking the switcher and the icon updating. We should ideally try to make it more instantaneous.

Leave this one with me, there are a few optimisations we can make.

@thatblindgeye
Copy link
Contributor Author

yep Turbo is what allows us to switch themes without a page refresh - but changing the element to a button shouldn't be an issue - it'll still work.

Gotcha, wasn't sure if there was any other reason. We should be able to just update the class of our html element onClick of a button then.

This is likely the hardest problem to solve, we're limited with how much space we have in the navbar. More-so now we have the support link. But we might be able to do something like this:

Whether we'd want to adjust that top navbar could be another discussion, but we could definitely keep the theme switcher as just an icon for now. Implementing a dropdown to toggle open (rather than simply switching between light and dark) would be a nice to have as well though maybe that could be a followup to this issue (unless @luuu-xu really wants to dig into that)

Leave this one with me, there are a few optimisations we can make

👍🏼 if it's any consolation I think the issue wasn't as bad on Chrome (I had noticed it more on Firefox).

@KevinMulhern
Copy link
Member

We should be able to just update the class of our html element onClick of a button then.

We'll still need to hit that endpoint when clicking the button unfortunately, it persists the users theme choice so it won't change back to the default when navigating to other pages.

@KevinMulhern
Copy link
Member

@thatblindgeye I've made a few optimisations in this PR. Theres still a little bit of delay because it needs to make a server round trip, but the icon and theme will change at the same time now.

Long term, we're better moving most of this to the frontend and persisting the theme in the background. Our mobile and desktop theme switcher being in two different parts of the app layout are whats preventing that at the moment. But I have plans for consolidating and improving the navigation soon ™️

KevinMulhern added a commit that referenced this issue Sep 11, 2023
Because:
* There is a noticeable delay between switching the theme and the theme
icon updating
* Related to:
#4044

This commit:
* Toggles the theme class in the same turbo stream request we use to
update the theme icon.
* Adds a custom turbo stream action to toggle classes on elements


Before:

https://github.com/TheOdinProject/theodinproject/assets/7963776/6870d2a3-27af-413a-9df8-3adca85d6c4d

After:

https://github.com/TheOdinProject/theodinproject/assets/7963776/28cbb153-2348-4976-b11a-8245d85143fd
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
Status: Needs Review This issue/PR needs an initial or additional review Type: Accessibility Involves an accessibility feature or requires accessibility review Type: Bug Involves something that isn't working as intended
Projects
Status: 📋 Backlog / Ideas
Development

No branches or pull requests

3 participants