mirror of
https://github.com/discourse/discourse.git
synced 2026-08-06 13:08:40 +08:00
## 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.
30 lines
938 B
Ruby
Vendored
30 lines
938 B
Ruby
Vendored
# frozen_string_literal: true
|
|
|
|
RSpec.describe "Nested activity log" do
|
|
fab!(:admin)
|
|
fab!(:topic) { Fabricate(:topic, user: admin) }
|
|
fab!(:op) { Fabricate(:post, topic: topic, user: admin, post_number: 1) }
|
|
|
|
before do
|
|
SiteSetting.nested_replies_enabled = true
|
|
Fabricate(:nested_topic, topic: topic)
|
|
sign_in(admin)
|
|
end
|
|
|
|
it "opens the activity log modal and lists small actions" do
|
|
topic.add_small_action(admin, "closed.enabled")
|
|
|
|
page.visit("/t/#{topic.slug}/#{topic.id}")
|
|
find(".nested-view__activity-link").click
|
|
|
|
expect(page).to have_css(".nested-activity-log-modal")
|
|
expect(page).to have_css(".nested-activity-log-modal__item", count: 2)
|
|
end
|
|
|
|
it "hides the activity log link on a topic with no small actions" do
|
|
page.visit("/t/#{topic.slug}/#{topic.id}")
|
|
|
|
expect(page).to have_css(".nested-view__controls")
|
|
expect(page).to have_no_css(".nested-view__activity-link")
|
|
end
|
|
end
|