mirror of
https://github.com/discourse/discourse.git
synced 2024-11-24 01:22:36 +08:00
c47015b861
What does this change do? This commit the client to override the navigation menu setting configured by the site temporarily based on the value of the `navigation_menu` query param. The new query param replaces the old `enable_sidebar` query param. Why do we need this change? The motivation here is to allow theme maintainers to quickly preview what the site will look like with the various navigation menu site setting.
66 lines
1.5 KiB
Ruby
66 lines
1.5 KiB
Ruby
# frozen_string_literal: true
|
|
|
|
module UserSidebarMixin
|
|
def sidebar_tags
|
|
topic_count_column = Tag.topic_count_column(scope)
|
|
|
|
object
|
|
.visible_sidebar_tags(scope)
|
|
.pluck(:name, topic_count_column, :pm_topic_count)
|
|
.reduce([]) do |tags, sidebar_tag|
|
|
tags.push(name: sidebar_tag[0], pm_only: sidebar_tag[1] == 0 && sidebar_tag[2] > 0)
|
|
end
|
|
end
|
|
|
|
def display_sidebar_tags
|
|
DiscourseTagging.filter_visible(Tag, scope).exists?
|
|
end
|
|
|
|
def include_display_sidebar_tags?
|
|
include_sidebar_tags?
|
|
end
|
|
|
|
def include_sidebar_tags?
|
|
SiteSetting.tagging_enabled && sidebar_navigation_menu?
|
|
end
|
|
|
|
def sidebar_category_ids
|
|
object.category_sidebar_section_links.pluck(:linkable_id) & scope.allowed_category_ids
|
|
end
|
|
|
|
def include_sidebar_category_ids?
|
|
sidebar_navigation_menu?
|
|
end
|
|
|
|
def sidebar_list_destination
|
|
if object.user_option.sidebar_list_none_selected?
|
|
SiteSetting.default_sidebar_list_destination
|
|
else
|
|
object.user_option.sidebar_list_destination
|
|
end
|
|
end
|
|
|
|
def include_sidebar_list_destination?
|
|
sidebar_navigation_menu?
|
|
end
|
|
|
|
def sidebar_sections
|
|
object
|
|
.sidebar_sections
|
|
.order(created_at: :asc)
|
|
.includes(sidebar_section_links: :linkable)
|
|
.map { |section| SidebarSectionSerializer.new(section, root: false) }
|
|
end
|
|
|
|
def include_sidebar_sections?
|
|
sidebar_navigation_menu?
|
|
end
|
|
|
|
private
|
|
|
|
def sidebar_navigation_menu?
|
|
!SiteSetting.legacy_navigation_menu? ||
|
|
%w[sidebar header_dropdown].include?(options[:navigation_menu_param])
|
|
end
|
|
end
|