2023-01-12 17:47:58 -05:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
|
|
|
module PageObjects
|
|
|
|
module Components
|
|
|
|
class Sidebar < PageObjects::Components::Base
|
|
|
|
def visible?
|
|
|
|
page.has_css?("#d-sidebar")
|
|
|
|
end
|
|
|
|
|
2023-02-19 22:34:37 -05:00
|
|
|
def not_visible?
|
|
|
|
page.has_no_css?("#d-sidebar")
|
|
|
|
end
|
|
|
|
|
2023-01-12 17:47:58 -05:00
|
|
|
def has_category_section_link?(category)
|
|
|
|
page.has_link?(category.name, class: "sidebar-section-link")
|
|
|
|
end
|
2023-02-02 22:44:40 -05:00
|
|
|
|
|
|
|
def open_new_custom_section
|
|
|
|
find("button.add-section").click
|
|
|
|
end
|
|
|
|
|
|
|
|
def edit_custom_section(name)
|
2023-03-23 01:09:45 -04:00
|
|
|
find(".sidebar-section[data-section-name='#{name.parameterize}']").hover
|
|
|
|
|
|
|
|
find(
|
|
|
|
".sidebar-section[data-section-name='#{name.parameterize}'] button.sidebar-section-header-button",
|
|
|
|
).click
|
2023-02-02 22:44:40 -05:00
|
|
|
end
|
2023-03-06 19:47:18 -05:00
|
|
|
|
|
|
|
def has_link?(name, href: nil)
|
|
|
|
attributes = {}
|
|
|
|
attributes[:href] = href if href
|
|
|
|
page.has_link?(name, attributes)
|
|
|
|
end
|
|
|
|
|
|
|
|
def custom_section_modal_title
|
|
|
|
find("#discourse-modal-title")
|
|
|
|
end
|
2023-04-05 18:55:47 -04:00
|
|
|
|
|
|
|
def has_section?(name)
|
|
|
|
find(".sidebar-wrapper").has_button?(name)
|
|
|
|
end
|
2023-01-12 17:47:58 -05:00
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|