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

Fix expectations about solidus_auth_devise order in the Gemfile #4465

Conversation

waiting-for-dev
Copy link
Contributor

Summary

solidus_frontend tries to load a partial from solidus_auth_devise. However, it provided a fallback when the latter was missing.

The same is true in solidus_backend; it also tries to load a partial from solidus_auth_devise, but provides its fallback

Unfortunately, that worked with the assumption that solidus_auth_devise went below solidus_frontend and solidus_backend respectively in the Gemfile. Otherwise, the fallback templates took precedence.

For solidus_frontend, we're removing the placeholder template and rendering the one from solidus_auth_devise only when present. Similarly, for solidus_backend we're renaming the fallback template and rendering the one from solidus_auth_devise when present.

Checklist

Check out our PR guidelines for more details.

The following are mandatory for all PRs:

  • I have written a thorough PR description.
  • I have kept my commits small and atomic.
  • I have used clear, explanatory commit messages.

The following are not always needed (cross them out if they are not):

  • [ ] I have added automated tests to cover my changes.
  • [ ] I have attached screenshots to demo visual changes.
  • [ ] I have opened a PR to update the guides.
  • [ ] I have updated the readme to account for my changes.

solidus_frontend tries to load a partial from solidus_auth_devise [1] [2].
However, it provided a fallback [3] when the latter was missing.

Unfortunately, it worked with the assumption that solidus_auth_devise
went below solidus_frontend in the Gemfile. Otherwise, the fallback
template took precedence.

We're now removing the fallback template and rendering the template only
when it's present. This way, it makes no critical which gem goes
first.

[1] - https://github.com/solidusio/solidus_frontend/blob/dae732ed7442a755cc0426cd2afa6ac662de7105/app/views/spree/shared/_nav_bar.html.erb#L4
[2] - https://github.com/solidusio/solidus_auth_devise/blob/bfbf616ef625aa51c6b74040d96998082f736e13/lib/views/frontend/spree/shared/_login_bar_items.html.erb
[3] - https://github.com/solidusio/solidus_frontend/blob/dae732ed7442a755cc0426cd2afa6ac662de7105/app/views/spree/shared/_login_bar_items.html.erb
solidus_backend tries to load a partial from solidus_auth_devise [1]
[2]. However, it provided a fallback [3] when the latter was missing.

Unfortunately, it worked with the assumption that solidus_auth_devise
went below solidus_backend in the Gemfile. Otherwise, the fallback
template took precedence.

We're now renaming the fallback partial and branching to the one in
solidus_auth_devise when present. This way, it makes no critical which
gem goes first.

[1] - https://github.com/solidusio/solidus/blob/a22723079f88387f53f72b503db875b9d97aa3f5/backend/app/views/spree/admin/shared/_navigation.html.erb#L10
[2] - https://github.com/solidusio/solidus_auth_devise/blob/master/lib/views/backend/spree/admin/shared/_navigation_footer.html.erb
[3] - https://github.com/solidusio/solidus/blob/master/backend/app/views/spree/admin/shared/_navigation_footer.html.erb
@kennyadsl
Copy link
Member

I don't know if I like not assuming that solidus_backend can live before solidus_auth_devise in the Gemfile, because it changes some behavior provided by the core gems.

For the frontend, it is another story. If we remove all the frontend code from the extension, the order should no longer matter.

What about changing the solidus_frontend gem only?

@waiting-for-dev
Copy link
Contributor Author

waiting-for-dev commented Aug 1, 2022

I don't know if I like not assuming that solidus_backend can live before solidus_auth_devise in the Gemfile, because it changes some behavior provided by the core gems.

I'm not sure I follow. With these changes, solidus_backend can live both before and after solidus_auth_devise in the Gemfile 🤔

@kennyadsl
Copy link
Member

I'm not sure I follow. With these changes, solidus_backend can live both before and after solidus_auth_devise in the Gemfile

Yes, but my point is that there's no need to optimize solidus_backend to live after solidus_auth_devise because that should not be done. Mailny this should not be done because it's expected (and probably happens) that solidus_auth_devise changes things set by solidus_backend previously. Please let me know if I am missing anything.

@waiting-for-dev
Copy link
Contributor Author

Mailny this should not be done because it's expected (and probably happens) that solidus_auth_devise changes things set by solidus_backend previously.

As far as I can see, solidus_auth_devise explicitly asks for the backend twice:

Both situations happen after all the gems have been required. It should be independent of their order.

As per the implicit work from solidus_support, we fixed the dependency on the Gemfile order in solidusio/solidus_support@202e77c.

If we're missing something, I think we should try fixing it as this PR does. IMHO, requiring the gems to be declared in any particular order is unacceptable. Users could find a tough time debugging a problem with a root outside of the code space, so to speak.

FWIW, the work's origin here is the changes that we will submit to support the installation of solidus_starter_frontend in the Solidus installer. The current installer will add solidus_auth_devise after Solidus. But we must run the new frontend installation script after installing Solidus. When users choose it, we need to remove the solidus meta-gem and replace it with solidus_core, solidus_backend, solidus_api & solidus_sample, so they don't pull solidus_frontend. As built-in bundler utilities that modify the Gemfile work by appending, the process switches the order and puts solidus_backend after solidus_auth_devise.

@kennyadsl
Copy link
Member

Got it, I think it's a matter of choosing if we want to encourage adding extensions wherever in the Gemfile, or only after the core gems. Let me explain what I mean: if a new developer ends up the installation process with a Gemfile that looks like this:


gem 'solidus_auth_devise`

gem 'solidus_core`
gem 'solidus_api`
...

where do we think they are going to add the other extensions later? Is it acceptable at the moment? Do the other extensions currently support living before the core gem? I think they don't (even if I'm not 100% sure).

FWIW, the work's origin here is the changes that we will submit to support the installation of solidus_starter_frontend in the Solidus installer. The current installer will add solidus_auth_devise after Solidus. But we must run the new frontend installation script after installing Solidus. When users choose it, we need to remove the solidus meta-gem and replace it with solidus_core, solidus_backend, solidus_api & solidus_sample, so they don't pull solidus_frontend. As built-in bundler utilities that modify the Gemfile work by appending, the process switches the order and puts solidus_backend after solidus_auth_devise.

Thanks for adding more context. As a curiosity, did you think about adding solidus_auth_devise after the frontend/starter_frontend choice in the installer?

@waiting-for-dev
Copy link
Contributor Author

where do we think they are going to add the other extensions later?

I think that's not our call. Users should be able to add them wherever they want. The Gemfile order should not determine the resulting runtime.

If we look at the docs about what is a Gemfile on Bundler's site, they don't mention that the gems are required in any particular order. Therefore, I don't think we should treat it as something deterministic. They already changed how they're required in the past. True, now that happens in declaration order, as it's the most sensible default (as we can see here), but it's not part of the documentation. That bundler add can only append and doesn't provide -before, -after modifiers points in the same direction.

The Gemfile order should be more seen as the result of a style guide. For instance, Rubocop has the Bundler/OrderedGems cop which, in fact, would place solidus_auth_devide before solidus_backend.

Thanks for adding more context. As a curiosity, did you think about adding solidus_auth_devise after the frontend/starter_frontend choice in the installer?

Yeah, that would be possible, but it'll result in a less linear installation flow and, sometimes, an extra bundle install call. What I tried to achieve is 1) Install solidus with its base components and its dependencies (solidus_auth_devise for the backend) & 2) Install the frontend.

@kennyadsl
Copy link
Member

You got me, this is the correct way to go. If other extensions won't work listed before the core gems, we should fix that somewhere else.

@waiting-for-dev
Copy link
Contributor Author

You got me, this is the correct way to go. If other extensions won't work listed before the core gems, we should fix that somewhere else.

Yeah, I think that's the way to go. Thanks for bearing with me 🙂

@aldesantis
Copy link
Member

Looking good, thank you!

@waiting-for-dev waiting-for-dev merged commit 2289410 into solidusio:master Aug 4, 2022
@waiting-for-dev waiting-for-dev deleted the waiting-for-dev/fix_solidus_auth_devise_gemfile_order branch August 4, 2022 03:06
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.

None yet

5 participants