173 lines
3.9 KiB
Vue
173 lines
3.9 KiB
Vue
<template>
|
|
<Popover
|
|
trigger="click"
|
|
class="TimelineMenu"
|
|
:class="{ 'open': isOpen }"
|
|
:margin="{ left: -15, right: -200 }"
|
|
:bound-to="{ x: 'container' }"
|
|
popover-class="timeline-menu-popover-wrap"
|
|
@show="openMenu"
|
|
@close="() => isOpen = false"
|
|
>
|
|
<template v-slot:content>
|
|
<div class="timeline-menu-popover popover-default">
|
|
<TimelineMenuContent />
|
|
</div>
|
|
</template>
|
|
<template v-slot:trigger>
|
|
<button class="button-unstyled title timeline-menu-title">
|
|
<span class="timeline-title">{{ timelineName() }}</span>
|
|
<span>
|
|
<FAIcon
|
|
size="sm"
|
|
icon="chevron-down"
|
|
/>
|
|
</span>
|
|
<span
|
|
class="click-blocker"
|
|
@click="blockOpen"
|
|
/>
|
|
</button>
|
|
</template>
|
|
</Popover>
|
|
</template>
|
|
|
|
<script src="./timeline_menu.js" ></script>
|
|
|
|
<style lang="scss">
|
|
@import '../../_variables.scss';
|
|
|
|
.TimelineMenu {
|
|
flex-shrink: 1;
|
|
margin-right: auto;
|
|
min-width: 0;
|
|
width: 24rem;
|
|
|
|
.popover-trigger-button {
|
|
vertical-align: bottom;
|
|
}
|
|
|
|
.timeline-menu-popover-wrap {
|
|
overflow: hidden;
|
|
// Match panel heading padding to line up menu with bottom of heading
|
|
margin-top: 0.6rem;
|
|
padding: 0 15px 15px 15px;
|
|
}
|
|
|
|
.timeline-menu-popover {
|
|
width: 24rem;
|
|
max-width: 100vw;
|
|
margin: 0;
|
|
font-size: 1rem;
|
|
border-top-right-radius: 0;
|
|
border-top-left-radius: 0;
|
|
transform: translateY(-100%);
|
|
transition: transform 100ms;
|
|
}
|
|
|
|
.panel::after {
|
|
border-top-right-radius: 0;
|
|
border-top-left-radius: 0;
|
|
}
|
|
|
|
&.open .timeline-menu-popover {
|
|
transform: translateY(0);
|
|
}
|
|
|
|
.timeline-menu-title {
|
|
margin: 0;
|
|
cursor: pointer;
|
|
user-select: none;
|
|
width: 100%;
|
|
display: flex;
|
|
|
|
.timeline-menu-name {
|
|
overflow: hidden;
|
|
text-overflow: ellipsis;
|
|
white-space: nowrap;
|
|
}
|
|
|
|
svg {
|
|
margin-left: 0.6em;
|
|
transition: transform 100ms;
|
|
}
|
|
|
|
.click-blocker {
|
|
cursor: default;
|
|
flex-grow: 1;
|
|
}
|
|
}
|
|
|
|
&.open .timeline-menu-title svg {
|
|
color: $fallback--text;
|
|
color: var(--panelText, $fallback--text);
|
|
transform: rotate(180deg);
|
|
}
|
|
|
|
.panel {
|
|
box-shadow: var(--popoverShadow);
|
|
}
|
|
|
|
ul {
|
|
list-style: none;
|
|
margin: 0;
|
|
padding: 0;
|
|
}
|
|
|
|
li {
|
|
border-bottom: 1px solid;
|
|
border-color: $fallback--border;
|
|
border-color: var(--border, $fallback--border);
|
|
padding: 0;
|
|
|
|
&:last-child a {
|
|
border-bottom-right-radius: $fallback--panelRadius;
|
|
border-bottom-right-radius: var(--panelRadius, $fallback--panelRadius);
|
|
border-bottom-left-radius: $fallback--panelRadius;
|
|
border-bottom-left-radius: var(--panelRadius, $fallback--panelRadius);
|
|
}
|
|
|
|
&:last-child {
|
|
border: none;
|
|
}
|
|
}
|
|
|
|
a {
|
|
display: block;
|
|
padding: 0.6em 0.65em;
|
|
|
|
&:hover {
|
|
background-color: $fallback--lightBg;
|
|
background-color: var(--selectedMenu, $fallback--lightBg);
|
|
color: $fallback--link;
|
|
color: var(--selectedMenuText, $fallback--link);
|
|
--faint: var(--selectedMenuFaintText, $fallback--faint);
|
|
--faintLink: var(--selectedMenuFaintLink, $fallback--faint);
|
|
--lightText: var(--selectedMenuLightText, $fallback--lightText);
|
|
--icon: var(--selectedMenuIcon, $fallback--icon);
|
|
}
|
|
|
|
&.router-link-active {
|
|
font-weight: bolder;
|
|
background-color: $fallback--lightBg;
|
|
background-color: var(--selectedMenu, $fallback--lightBg);
|
|
color: $fallback--text;
|
|
color: var(--selectedMenuText, $fallback--text);
|
|
--faint: var(--selectedMenuFaintText, $fallback--faint);
|
|
--faintLink: var(--selectedMenuFaintLink, $fallback--faint);
|
|
--lightText: var(--selectedMenuLightText, $fallback--lightText);
|
|
--icon: var(--selectedMenuIcon, $fallback--icon);
|
|
|
|
&:hover {
|
|
text-decoration: underline;
|
|
}
|
|
}
|
|
|
|
svg {
|
|
margin-right: 0.4em;
|
|
margin-left: -0.2em;
|
|
}
|
|
}
|
|
}
|
|
|
|
</style>
|