discourse/spec/system/nested_quoting_spec.rb
Mark VanLandingham 8feeaa5d69
FEATURE: First iteration of nested replies (#38888)
### 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>
2026-04-16 08:06:44 -05:00

59 lines
1.8 KiB
Ruby

# frozen_string_literal: true
RSpec.describe "Nested view quoting" do
fab!(:user) { Fabricate(:user, refresh_auto_groups: true) }
fab!(:topic) { Fabricate(:topic, user: user) }
fab!(:op) do
Fabricate(:post, topic: topic, user: user, post_number: 1, raw: "Original post content here")
end
fab!(:root_reply) do
Fabricate(
:post,
topic: topic,
user: Fabricate(:user),
raw: "This is a root reply to quote from",
)
end
let(:nested_view) { PageObjects::Pages::NestedView.new }
let(:composer) { PageObjects::Components::Composer.new }
before do
SiteSetting.nested_replies_enabled = true
sign_in(user)
end
def nested_post_cooked_selector(post)
"[data-post-number='#{post.post_number}'] .cooked p"
end
it "shows the quote button when selecting text in a nested post" do
nested_view.visit_nested(topic)
expect(nested_view).to have_post(root_reply)
select_text_range(nested_post_cooked_selector(root_reply), 0, 5)
expect(page).to have_css(".quote-button")
end
it "inserts a quote into the composer when clicking the quote button" do
nested_view.visit_nested(topic)
expect(nested_view).to have_post(root_reply)
select_text_range(nested_post_cooked_selector(root_reply), 0, 7)
expect(page).to have_css(".quote-button")
find(".quote-button .insert-quote").click
expect(composer).to be_opened
expect(composer.composer_input.value).to include(
"[quote=\"#{root_reply.user.username}, post:#{root_reply.post_number}, topic:#{topic.id}",
)
end
it "shows the quote button when selecting text in the OP" do
nested_view.visit_nested(topic)
expect(nested_view).to have_op_post
select_text_range(".nested-view__op .cooked p", 0, 8)
expect(page).to have_css(".quote-button")
end
end