0
0
Fork 0
mirror of https://github.com/discourse/discourse.git synced 2026-08-06 06:24:48 +08:00
discourse/spec/system/nested_quoting_spec.rb
Mark VanLandingham 63c4950c90
DEV: route nested view through topic route (#40820)
## What

Draft spike for rendering nested replies through the normal topic
route/controller/template (`/t/:slug/:id[/post_number]`) instead of a
separate Ember `/n/...` browser page route.

This keeps `/n/...` for internal JSON/API endpoints and legacy browser
redirects, while using the canonical topic route for user-facing nested
topic navigation.

## Changes

- Add nested-topic loading/setup to `topic.fromParams` so `/t/...` can
render the nested tree.
- Render `<Nested>` from the topic template when the topic is in nested
mode.
- Keep the nested controller as the nested tree state owner, bridged
from the topic route/controller.
- Redirect legacy client-side `/n/...` browser routes to the
corresponding `/t/...` routes.
- Preserve nested context depth through model processing, controller
state, and cache snapshots.
- Update nested post/admin URLs, notifications, activity, copy links,
and system specs to canonical `/t/...` browser URLs.
- Split scroll-anchor persistence from full nested model cache snapshots
to avoid expensive cache writes on scroll.
- Add bounded scroll restoration retries for mobile browser-back focus
restoration.
2026-06-15 11:42:20 -05:00

60 lines
1.8 KiB
Ruby
Vendored

# 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
Fabricate(:nested_topic, topic: topic)
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