mirror of
https://gh.wpcy.net/https://github.com/discourse/discourse.git
synced 2026-05-04 09:16:52 +08:00
### Super high level description: Adds a nested/threaded view for Discourse topics, allowing posts to be displayed as an indented reply tree instead of the default flat chronological stream. Backend: - New /n/:slug/:topic_id routes serving roots, children (paginated), and context (ancestor chain) endpoints - TreeLoader recursively fetches reply trees with configurable max depth, Sort supports top/new/old ordering - NestedViewPostStat caches per-post reply counts (direct + total descendants, whisper-aware) with a backfill job for existing data - NestedTopic model tracks per-topic opt-in and pinned post Frontend: - Recursive <NestedPost> / <NestedPostChildren> components with lazy-load expansion, cloaking, and scroll tracking - NestedViewCache service preserves expansion state and scroll position across back/forward navigation (15 entries, 10min TTL) - Context view for deep-linking to a specific post with its ancestor chain - Floating actions bar, sort selector, real-time MessageBus updates Site settings (hidden): nested_replies_enabled, nested_replies_default, nested_replies_default_sort, nested_replies_max_depth, nested_replies_cap_nesting_depth, nested_replies_toggle_mode_groups, plus a per-category default override. Co-authored-by: Rafael Silva <xfalcox@gmail.com> Co-authored-by: Claude Opus 4.6 (1M context) <noreply@anthropic.com> Co-authored-by: Sérgio Saquetim <saquetim@discourse.org>
31 lines
1.1 KiB
Ruby
31 lines
1.1 KiB
Ruby
# frozen_string_literal: true
|
|
|
|
# Parts of the core features examples can be skipped like so:
|
|
# it_behaves_like "having working core features", skip_examples: %i[login likes]
|
|
#
|
|
# List of keywords for skipping examples:
|
|
# login, likes, profile, topics, topics:read, topics:reply, topics:create,
|
|
# search, search:quick_search, search:full_page
|
|
#
|
|
# For more details, see https://meta.discourse.org/t/-/361381
|
|
RSpec.describe "Core features" do
|
|
before { SiteSetting.nested_replies_enabled = true }
|
|
|
|
# Because of how routes are defined it _can_ interfere with how scope mappings work,
|
|
# this test checks if we can create an API key, before rendering, this route checks for all scope mappings
|
|
it "allows creating API keys" do
|
|
admin = Fabricate(:admin)
|
|
sign_in(admin)
|
|
|
|
visit "/admin/api/keys/new"
|
|
|
|
dialog = PageObjects::Components::Dialog.new
|
|
|
|
expect(dialog).to be_closed # if it failed to load the page, the dialog will be open with an error message
|
|
|
|
expect(page).to have_selector(".admin-api-keys")
|
|
expect(page).to have_selector(".admin-config-area-card")
|
|
end
|
|
|
|
it_behaves_like "having working core features"
|
|
end
|