mirror of
https://github.com/discourse/discourse.git
synced 2025-01-16 21:12:45 +08:00
5711bf6f27
The customize routes add CSS classes that make these admin config pages look different from the ones under /admin/config. We want all config routes to be under /admin/config as well. This commit moves the emoji, user fields, and permalinks pages out of customize and into config, updating all references and adding more rails routes as needed. Also renames admin emojis route to emoji, emoji is singular and plural.
64 lines
1.5 KiB
Ruby
64 lines
1.5 KiB
Ruby
# frozen_string_literal: true
|
|
|
|
module PageObjects
|
|
module Pages
|
|
class AdminPermalinks < PageObjects::Pages::Base
|
|
def visit
|
|
page.visit("/admin/config/permalinks")
|
|
self
|
|
end
|
|
|
|
def toggle(key)
|
|
PageObjects::Components::DToggleSwitch.new(".admin-flag-item__toggle.#{key}").toggle
|
|
has_saved_flag?(key)
|
|
self
|
|
end
|
|
|
|
def click_add_permalink
|
|
find(".admin-permalinks__header-add-permalink").click
|
|
self
|
|
end
|
|
|
|
def click_edit_permalink(url)
|
|
find("tr.#{url} .admin-permalink-item__edit").click
|
|
self
|
|
end
|
|
|
|
def click_delete_permalink(url)
|
|
open_permalink_menu(url)
|
|
find(".admin-permalink-item__delete").click
|
|
find(".dialog-footer .btn-primary").click
|
|
expect(page).to have_no_css(".dialog-body")
|
|
has_closed_permalink_menu?
|
|
self
|
|
end
|
|
|
|
def has_permalinks?(*permalinks)
|
|
all(".admin-permalink-item__url").map(&:text) == permalinks
|
|
end
|
|
|
|
def has_no_permalinks?
|
|
has_no_css?(".admin-permalink-item__url")
|
|
end
|
|
|
|
def open_permalink_menu(url)
|
|
find("tr.#{url} .permalink-menu-trigger").click
|
|
self
|
|
end
|
|
|
|
def has_closed_permalink_menu?
|
|
has_no_css?(".permalink-menu-content")
|
|
end
|
|
|
|
def click_tab(tab)
|
|
has_css?(".admin-permalinks-tabs__#{tab}")
|
|
find(".admin-permalinks-tabs__#{tab}").click
|
|
end
|
|
|
|
def has_active_tab?(tab)
|
|
has_css?(".admin-permalinks-tabs__#{tab} .active")
|
|
end
|
|
end
|
|
end
|
|
end
|