mirror of
https://github.com/discourse/discourse.git
synced 2025-02-25 18:55:32 -06:00
FEATURE: Add topic-navigation plugin outlet and popup component (#15081)
Adds a plugin outlet that can be used to insert a popup over topic timeline.
This commit is contained in:
parent
9fd1a00eef
commit
0335c9d77f
@ -0,0 +1,12 @@
|
|||||||
|
import Component from "@ember/component";
|
||||||
|
import { action } from "@ember/object";
|
||||||
|
|
||||||
|
export default Component.extend({
|
||||||
|
tagName: "",
|
||||||
|
hidden: false,
|
||||||
|
|
||||||
|
@action
|
||||||
|
close() {
|
||||||
|
this.set("hidden", true);
|
||||||
|
},
|
||||||
|
});
|
@ -0,0 +1,6 @@
|
|||||||
|
{{#unless hidden}}
|
||||||
|
<div class="topic-navigation-popup">
|
||||||
|
{{d-button action=(action "close") class="close btn-flat" icon="times"}}
|
||||||
|
{{yield}}
|
||||||
|
</div>
|
||||||
|
{{/unless}}
|
@ -133,6 +133,8 @@
|
|||||||
{{plugin-outlet name="above-timeline" tagName=""}}
|
{{plugin-outlet name="above-timeline" tagName=""}}
|
||||||
|
|
||||||
{{#topic-navigation class="topic-navigation" topic=model jumpToDate=(action "jumpToDate") jumpToIndex=(action "jumpToIndex") as |info|}}
|
{{#topic-navigation class="topic-navigation" topic=model jumpToDate=(action "jumpToDate") jumpToIndex=(action "jumpToIndex") as |info|}}
|
||||||
|
{{plugin-outlet name="topic-navigation" tagName="" args=(hash topic=model)}}
|
||||||
|
|
||||||
{{#if info.renderTimeline}}
|
{{#if info.renderTimeline}}
|
||||||
{{topic-timeline
|
{{topic-timeline
|
||||||
topic=model
|
topic=model
|
||||||
|
@ -56,6 +56,28 @@ $topic-progress-height: 42px;
|
|||||||
z-index: z("fullscreen");
|
z-index: z("fullscreen");
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.topic-navigation-popup {
|
||||||
|
box-sizing: border-box;
|
||||||
|
position: absolute;
|
||||||
|
top: 0;
|
||||||
|
overflow-y: auto;
|
||||||
|
z-index: z("timeline");
|
||||||
|
padding: 10px 10px 35px 10px;
|
||||||
|
box-shadow: shadow("dropdown");
|
||||||
|
background: var(--tertiary-low);
|
||||||
|
|
||||||
|
.close {
|
||||||
|
display: flex;
|
||||||
|
align-items: center;
|
||||||
|
position: absolute;
|
||||||
|
right: 10px;
|
||||||
|
top: 10px;
|
||||||
|
color: var(--primary);
|
||||||
|
opacity: 0.5;
|
||||||
|
font-size: var(--font-up-1);
|
||||||
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
// progress bar
|
// progress bar
|
||||||
@media screen and (max-width: 924px) {
|
@media screen and (max-width: 924px) {
|
||||||
|
Loading…
Reference in New Issue
Block a user