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

hotfix and deprecate page_active? helper #2073

Merged
merged 1 commit into from
Apr 22, 2021
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
hotfix and deprecate page_active? helper
The `page_active?` helper used to depend on `Page.ancestors_for` which got removed with #1813. This PR hotfixes `page_active?`, but since menus got introduced with #1667 the helper is obsolete and is now marked for deletion.
robinboening committed Apr 20, 2021
commit 2437561fe87bb8547d65b322f5da81f82a41dde3
4 changes: 3 additions & 1 deletion app/helpers/alchemy/pages_helper.rb
Original file line number Diff line number Diff line change
@@ -100,7 +100,9 @@ def render_menu(menu_type, options = {})

# Returns true if page is in the active branch
def page_active?(page)
@_page_ancestors ||= Page.ancestors_for(@page)
Alchemy::Deprecation.warn("page_active? helper is deprecated and will be removed from Alchemy 6.0")

@_page_ancestors ||= @page.self_and_ancestors.contentpages
@_page_ancestors.include?(page)
end

8 changes: 8 additions & 0 deletions spec/helpers/alchemy/pages_helper_spec.rb
Original file line number Diff line number Diff line change
@@ -14,6 +14,14 @@ module Alchemy
@root_page = language_root # We need this instance variable in the helpers
end

describe "page_active?" do
it "shows a deprecation warning" do
@page = public_page
expect(Alchemy::Deprecation).to receive(:warn).with /will be removed from Alchemy 6/
helper.page_active?(public_page)
end
end

describe "#render_page_layout" do
it "should render the current page layout" do
@page = public_page