openstreetmap / openstreetmap-website

The Rails application that powers OpenStreetMap
https://www.openstreetmap.org/
GNU General Public License v2.0
2.2k stars 913 forks source link

Post-merge UI review for #4455 #4773

Open gravitystorm opened 6 months ago

gravitystorm commented 6 months ago

This issue is a post-merge UI review for #4455 . cc @milan-cvetkovic

(I haven't done a post-merge review before, so I'm not sure if there's a better way to do it than to create a new issue - adding a review to a closed PR doesn't seem right either :shrug: )

Globe positioning

(in progress see https://github.com/openstreetmap/openstreetmap-website/pull/4793)

The globe has been repositioned using an arbitrary offset. This appears to be to keep it clear of the tabs, but it doesn't take into account translations.

   &.new-user-main {
     background-image: image-url("sign-up-illustration.png");
+    background-position-x: 50px;
   }

Screenshot from 2024-05-08 16-58-29

The offset should be removed, or designed to adapted to different sized tab labels.

Page width

+ .auth-container {
+  max-width: 600px;
+ }

This is a random width, not based on anything from the bootstrap grid. It makes the login and signup pages inconsistent with the rest of the site.

Tab alignment :heavy_check_mark:

Fixed in #4826

The edge of the tabs should be aligned with the edge of the content. See the traces page for a working example. Screenshot from 2024-05-08 17-13-35

Top menu buttons

The login/signup buttons disappear from the top menu in certain circumstances, and it leads to jarring inconsistencies. It means the rest of the menu moves around, and it also still doesn't work as intended (e.g. if you make a mistake while signing up, the signup page is shown with errors and the buttons reappear).

- <% else %>
+ <% elsif (controller_name != "users" and controller_name != "sessions") || action_name != "new" %>

This should be reverted. If there's still a desire to remove these buttons (e.g. from the narrow screen layout) then let's discuss that separately.

auth button sizes :heavy_check_mark:

Fixed in #4917

The auth button sizes were reduced from 36px to 24px, but I didn't see any explanation why making them smaller is better?

sizing for auth_button vs auth_button_preferred :heavy_check_mark:

Fixed in https://github.com/openstreetmap/openstreetmap-website/commit/b4f719a8c58c5177fe3dbc330fc90b3e0ef94c4c

In app/helpers/user_helper we no have two different ways to describe the size of the icon, these should be consistent:

                :size => "24"),
                :width => "24px",
                :height => "24px")

bg-white :heavy_check_mark:

Fixed in https://github.com/openstreetmap/openstreetmap-website/pull/4781

The "Log into OpenstreetMap to access..." panel uses bg-white, but text on a forced-white background doesn't work in dark mode Screenshot from 2024-05-08 15-44-24

auth_button_preferred css classes

:class => "auth_button fs-6 border rounded text-muted text-decoration-none py-2 px-4 d-flex justify-content-center align-items-center",

Screenshot from 2024-05-08 16-03-24

This list of classes is trying to style the link as a button, but either an actual button or at least a btn class should be used instead. This will ensure consistency with other buttons on forms etc. .btn.btn-outline-secondary could be a good place to start.

auth_button_preferred alignment :heavy_check_mark:

Fixed in https://github.com/openstreetmap/openstreetmap-website/pull/4849

Screenshot from 2024-05-08 16-03-16

The alignment here isn't great. I think it might look better if the row of buttons was divided in the exact centre, with the preferred button then centered on the left half, and the remaining buttons centered on the right half. The current situation does have two divs displayed side-by-side, but with asymetric margins (mx-2 on one, and nothing on the other).

They look good on narrow screens.

If the design intention is just to have one set of buttons centred, then the gap between the preferred button and the remaining buttons is too large.

"or" divider

The "or" divider looks cramped, too close to the form labels below, and could probably do with a standard mb-3 to space things out.

"hr with words"

The PR introduced a new UI convention of using a horizontal line with words in the middle (e.g. "or" or "or sign up with a third party"). This has been implemented by using borders on empty divs, and with the same verbose code copy+pasted a few times:

    <div class="d-flex justify-content-center align-items-center">
      <div class="border-bottom border-1 flex-grow-1"></div>
      <div class="text-secondary mx-3"><%= t ".or" %></div>
      <div class="border-bottom border-1 flex-grow-1"></div>
    </div>

If there are suggestions for a better way to implement this, that would be great. It's effectively a horizontal rule, or a section divider, and there might be a more semantic way to implement this, that we can reuse in other forms and in other places around the site. In particular, I don't think this implementation is accessible, since there's no meaningful markup surrounding what is then an isolated word.

Translations broken for password field label :heavy_check_mark:

See #4860 for the fix, c4347c8d9a10bf5c141ad7d355594b93e20545f6 was the commit

autocomplete=off for password form on login :heavy_check_mark:

See #4860 for the fix, c4347c8d9a10bf5c141ad7d355594b93e20545f6 was the commit

Raw html input used for password field :heavy_check_mark:

Fixed in #4935

c4347c8d9a10bf5c141ad7d355594b93e20545f6 refactored the login form to move the help text around, but in the process moved away from using form helpers and introduced raw html to define the input field. This should be refactored to use a form helper, like f.password_input_tag or similar, so that the html attributes are generated automatically, and any site-wide overrides we have on form helpers will also apply to this field.

Reuse of link label is hard to translate

Signup form now reuses privacy_policy_link and respective link label in two different sentences (in email help html and by signing up html messages). Preferably link labels in different sentences should be separate translatable messages as different declension may be needed.

AntonKhorev commented 6 months ago

The globe has been repositioned using an arbitrary offset

The globe images have an arbitrary padding baked in.

AntonKhorev commented 6 months ago

I'm not sure if there's a better way to do it than to create a new issue

Create multiple issues that can be closed separately when things are fixed?

Pikse commented 5 months ago

I'm not sure if this is in scope of this issue but I've two i18n remarks associated to #4455:

gravitystorm commented 5 months ago

I'm not sure if this is in scope of this issue but I've two i18n remarks

Thanks @Pikse for you comments! You are right that both of these need fixing, and while I was looking more closely at that code I found another couple of issues too. I've added all 4 to the original comment above.

If you spot any more problems, please let us know.

Pikse commented 5 months ago

One more remark on message reuse: it appears that users.new.tou message was added to be used as a link label in users.new.by signing up_html sentence but actually it reuses previous link label layouts.tou which is also associated to users.terms.tou_explain_html sentence.

talllguy commented 5 months ago

Would addressing

Raw html input used for password field

address #4543 ?

Using a field designed for passwords may automatically add the show password element.

HolgerJeromin commented 5 months ago

Using a field designed for passwords may automatically add the show password element.

Not in every browser. IIRC edge does.

talllguy commented 5 months ago

edge does.

Yes. Looks like that wouldn't be a universal solution then.

gravitystorm commented 5 months ago

Would addressing

Raw html input used for password field

address #4543 ?

No, those are unrelated. This item is about what is written in the erb template, not what is outputted in the final rendered html. Specifically, the mentioned commit did something along the lines of:

-  <%= f.password_field :password, :label => t(".password"), :tabindex => 2, :value => "", .....
+  <input class="form-control mb-3" type="password" name="password" id="password" .....

i.e. swapped from using a rails form builder, and instead used raw html. Both approaches still output the same html <input type="password" ...> field.

kcne commented 4 months ago

Regarding the globe positioning and page width, I implemented Bootstrap grid for the page layout. To address the globe positioning overlap, I tried using Flexbox as mentioned in issue #4793. However, the problem persists because the container width now includes both the upper part (tabs and globe) and the form itself, reducing the available space for the globe.

To mitigate this issue, I experimented with the background-position and background-size properties in CSS and came up with a few solutions. @tomhughes @gravitystorm @AntonKhorev - I would greatly appreciate any feedback on these approaches:

  1. Image scaling with 3 breakpoints:

https://github.com/openstreetmap/openstreetmap-website/assets/76796906/11ff9ca4-83ba-4d9c-8c83-26bf3c3d420e

  1. Image scaling with extra breakpoints:

https://github.com/openstreetmap/openstreetmap-website/assets/76796906/742238e7-4d0b-4eb4-b724-16812d8d5cd9

  1. Globe cutoff without scaling:

https://github.com/openstreetmap/openstreetmap-website/assets/76796906/a47568c5-a91a-48b9-aa37-79307ca44f6e

  1. Globe cutoff with additional scaling:

https://github.com/openstreetmap/openstreetmap-website/assets/76796906/2f81baa5-2bc2-40a3-af5b-0a1876aeb942

AntonKhorev commented 4 months ago

To mitigate this issue, I experimented with the background-position and background-size properties in CSS and came up with a few solutions ...

With scaling the globe gets too small, especially in 1. and 2.