-
-
Notifications
You must be signed in to change notification settings - Fork 276
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
Conversation
Code Climate has analyzed commit bc5fef3 and detected 0 issues on this pull request. View more on Code Climate. |
There was a problem hiding this 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
inshow_controls
- test for a divider with and without label
Co-authored-by: Adrian Marin <adrian@adrianthedev.com>
There was a problem hiding this 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.
spec/features/avo/divider_spec.rb
Outdated
@parsed_body = Nokogiri::HTML(page.body) | ||
@dividers = @parsed_body.css(".relative.col-span-full.border-t") |
There was a problem hiding this comment.
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 |
There was a problem hiding this comment.
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?
There was a problem hiding this comment.
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"}
This PR has been merged into Please check the release guide for more information. |
Description
Fixes #2672

Test for divider in actions_list in show_controls
Checklist:
Screenshots & recording
Manual review steps
Manual reviewer: please leave a comment with output from the test if that's the case.