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

[WIP] Method list dialog #22921

Open
wants to merge 1 commit into
base: master
Choose a base branch
from

Conversation

jeffibm
Copy link
Member

@jeffibm jeffibm commented Feb 29, 2024

Related PR - ManageIQ/manageiq-ui-classic#9059

This PR is an RnD work related to the search feature for the selection of the method.

Might be helpful for ManageIQ/manageiq-ui-classic#9047

@miq-bot
Copy link
Member

miq-bot commented May 7, 2024

Checked commit jeffibm@f552314 with ruby 2.7.8, rubocop 1.56.3, haml-lint 0.51.0, and yamllint
1 file checked, 0 offenses detected
Everything looks fine. 🍪

if method_ids.present?
where(:id => method_ids.split(',').map(&:to_i))
else
where(nil)
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

unsure, but think a simple self would work here.

Copy link
Member Author

@jeffibm jeffibm May 8, 2024

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Hey @kbrock , Yes, self methods should work here.

I used scope since the query was not that complex.

but, while using the self I was not able to chain it like -

MiqAeMethod
              .name_path_search(params[:search])
              .domain_search(params[:domain_id])
              .selected_methods(params[:ids])
              .select("id, relative_path, name")
              .order('name')

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
Projects
None yet
Development

Successfully merging this pull request may close these issues.

None yet

3 participants