mirror of
https://github.com/discourse/discourse.git
synced 2025-02-25 18:55:32 -06: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 Component from "@glimmer/component";
|
||||||
import { tracked } from "@glimmer/tracking";
|
import { tracked } from "@glimmer/tracking";
|
||||||
|
import { hash } from "@ember/helper";
|
||||||
import { action } from "@ember/object";
|
import { action } from "@ember/object";
|
||||||
|
import PluginOutlet from "discourse/components/plugin-outlet";
|
||||||
import SummaryBox from "discourse/components/summary-box";
|
import SummaryBox from "discourse/components/summary-box";
|
||||||
import PrivateMessageMap from "discourse/components/topic-map/private-message-map";
|
import PrivateMessageMap from "discourse/components/topic-map/private-message-map";
|
||||||
import TopicMapExpanded from "discourse/components/topic-map/topic-map-expanded";
|
import TopicMapExpanded from "discourse/components/topic-map/topic-map-expanded";
|
||||||
@ -53,6 +55,18 @@ export default class TopicMap extends Component {
|
|||||||
/>
|
/>
|
||||||
</section>
|
</section>
|
||||||
{{/if}}
|
{{/if}}
|
||||||
|
|
||||||
|
<PluginOutlet
|
||||||
|
@name="topic-map-expanded-after"
|
||||||
|
@connectorTagName="span"
|
||||||
|
@outletArgs={{hash
|
||||||
|
topic=@model
|
||||||
|
postStream=@postStream
|
||||||
|
cancelFilter=@cancelFilter
|
||||||
|
showTopReplies=@showTopReplies
|
||||||
|
}}
|
||||||
|
/>
|
||||||
|
|
||||||
{{#if @showPMMap}}
|
{{#if @showPMMap}}
|
||||||
<section class="information private-message-map">
|
<section class="information private-message-map">
|
||||||
<PrivateMessageMap
|
<PrivateMessageMap
|
||||||
|
Loading…
Reference in New Issue
Block a user