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

Action list dividers with labels #2821

Merged
merged 17 commits into from
Jun 11, 2024
Merged

Action list dividers with labels #2821

merged 17 commits into from
Jun 11, 2024

Conversation

gabrielgiroe1
Copy link
Contributor

@gabrielgiroe1 gabrielgiroe1 commented May 29, 2024

Description

Fixes #2672
Test for divider in actions_list in show_controls
Screenshot 2024-05-29 at 22 07 49

Checklist:

  • I have performed a self-review of my own code
  • I have commented my code, particularly in hard-to-understand areas
  • I have made corresponding changes to the documentation
  • I have added tests that prove my fix is effective or that my feature works

Screenshots & recording

Manual review steps

  1. Step 1
  2. Step 2

Manual reviewer: please leave a comment with output from the test if that's the case.

@gabrielgiroe1 gabrielgiroe1 self-assigned this May 29, 2024
@gabrielgiroe1 gabrielgiroe1 marked this pull request as draft May 29, 2024 19:04
Copy link

codeclimate bot commented May 29, 2024

Code Climate has analyzed commit bc5fef3 and detected 0 issues on this pull request.

View more on Code Climate.

@gabrielgiroe1 gabrielgiroe1 marked this pull request as ready for review May 31, 2024 08:55
Copy link
Collaborator

@adrianthedev adrianthedev left a comment

Choose a reason for hiding this comment

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

Good job to get it to this stage.

Let's add tests to check the following:

  • divider works in the def actions method
  • divider works in actions_list in show_controls
  • test for a divider with and without label

gabrielgiroe1 and others added 4 commits May 31, 2024 18:10
Copy link
Collaborator

@adrianthedev adrianthedev left a comment

Choose a reason for hiding this comment

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

It's getting close to merging.

I left a question and some feedback about changing the specs.

Comment on lines 9 to 10
@parsed_body = Nokogiri::HTML(page.body)
@dividers = @parsed_body.css(".relative.col-span-full.border-t")
Copy link
Collaborator

Choose a reason for hiding this comment

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

We don't need to parse the response like so with Nokogiri. capybara/rspec should have something already.

expect(page).to have SOMETHING

within(find("SOME_SELECTOR")) do
  find("SOMETHING_ELSE")
end

Please check other feature tests.

Also, let's ensure the dividers and actions are in order. So we're not checking just for presence on the page.

This is a good resource aboout how to write better specs. It doesn't necesarily have guides on selectors, but you can see some best practices.

render_action_link(action)
end
end

private

def render_divider(action)
label = action.label.is_a?(Hash) ? action.label[:label] : nil
Copy link
Collaborator

Choose a reason for hiding this comment

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

Why would the label be a hash?

Copy link
Contributor Author

Choose a reason for hiding this comment

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

Right now it is like this:

action
=> #<Avo::Divider:0x000000016aaf5fa8 @label={:label=>"Other actions"}, @view="index">
>> action.label
=> {:label=>"Other actions"}

@adrianthedev adrianthedev merged commit 32e5b55 into main Jun 11, 2024
27 checks passed
@adrianthedev adrianthedev deleted the dividers-with-labels branch June 11, 2024 19:02
Copy link
Contributor

This PR has been merged into main. The functionality will be available in the next release.

Please check the release guide for more information.

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.

Action list dividers with labels
2 participants