DEV: Add topic-map-expanded-after plugin outlet (#27645)

This commit is contained in:
Keegan George 2024-06-28 07:53:05 -07:00 committed by GitHub
parent 423f92490c
commit f6dfb9d63f
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -1,6 +1,8 @@
import Component from "@glimmer/component";
import { tracked } from "@glimmer/tracking";
import { hash } from "@ember/helper";
import { action } from "@ember/object";
import PluginOutlet from "discourse/components/plugin-outlet";
import SummaryBox from "discourse/components/summary-box";
import PrivateMessageMap from "discourse/components/topic-map/private-message-map";
import TopicMapExpanded from "discourse/components/topic-map/topic-map-expanded";
@ -53,6 +55,18 @@ export default class TopicMap extends Component {
/>
</section>
{{/if}}
<PluginOutlet
@name="topic-map-expanded-after"
@connectorTagName="span"
@outletArgs={{hash
topic=@model
postStream=@postStream
cancelFilter=@cancelFilter
showTopReplies=@showTopReplies
}}
/>
{{#if @showPMMap}}
<section class="information private-message-map">
<PrivateMessageMap