mirror of
https://github.com/discourse/discourse.git
synced 2025-01-18 10:52:45 +08:00
DEV: Add topic-map-expanded-after
plugin outlet (#27645)
This commit is contained in:
parent
423f92490c
commit
f6dfb9d63f
|
@ -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
|
||||
|
|
Loading…
Reference in New Issue
Block a user