mirror of
https://github.com/koel/koel
synced 2024-12-20 17:43:36 +00:00
148 lines
2.6 KiB
Vue
148 lines
2.6 KiB
Vue
<template>
|
|
<header class="screen-header" :class="layout">
|
|
<div class="thumbnail-wrapper">
|
|
<slot name="thumbnail"></slot>
|
|
</div>
|
|
|
|
<div class="right">
|
|
<div class="heading-wrapper">
|
|
<h1 class="name">
|
|
<slot></slot>
|
|
</h1>
|
|
<span class="meta text-secondary">
|
|
<slot name="meta"></slot>
|
|
</span>
|
|
</div>
|
|
|
|
<slot name="controls"></slot>
|
|
</div>
|
|
</header>
|
|
</template>
|
|
|
|
<script lang="ts" setup>
|
|
const props = withDefaults(defineProps<{ layout?: 'expanded' | 'collapsed' }>(), { layout: 'expanded' })
|
|
</script>
|
|
|
|
<style lang="scss">
|
|
header.screen-header {
|
|
--transition-duration: .3s;
|
|
|
|
@media (prefers-reduced-motion) {
|
|
--transition-duration: 0;
|
|
}
|
|
|
|
display: flex;
|
|
align-items: flex-end;
|
|
border-bottom: 1px solid var(--color-bg-secondary);
|
|
position: relative;
|
|
align-content: stretch;
|
|
line-height: normal;
|
|
padding: 1.8rem;
|
|
|
|
&.expanded {
|
|
.thumbnail-wrapper {
|
|
margin-right: 1.5rem;
|
|
width: 192px;
|
|
|
|
> * {
|
|
transform: scale(1);
|
|
}
|
|
}
|
|
|
|
.meta {
|
|
display: block;
|
|
}
|
|
|
|
.right {
|
|
flex-direction: column;
|
|
align-items: flex-start;
|
|
}
|
|
}
|
|
|
|
.thumbnail-wrapper {
|
|
overflow: hidden;
|
|
display: block;
|
|
width: 0;
|
|
transition: width var(--transition-duration);
|
|
box-shadow: 0 10px 20px 0 rgba(0, 0, 0, 0.3);
|
|
border-radius: 5px;
|
|
|
|
> * {
|
|
transform: scale(0);
|
|
transform-origin: bottom left;
|
|
transition: transform var(--transition-duration), width var(--transition-duration);
|
|
}
|
|
|
|
&:empty {
|
|
display: none;
|
|
}
|
|
}
|
|
|
|
.right {
|
|
flex: 1;
|
|
display: flex;
|
|
gap: 1.5rem;
|
|
align-items: center;
|
|
overflow: hidden;
|
|
}
|
|
|
|
h1.name {
|
|
font-size: 4rem;
|
|
font-weight: var(--font-weight-bold);
|
|
overflow: hidden;
|
|
white-space: nowrap;
|
|
text-overflow: ellipsis;
|
|
margin-right: 1.5rem;
|
|
}
|
|
|
|
.heading-wrapper {
|
|
width: 100%;
|
|
overflow: hidden;
|
|
flex: 1;
|
|
}
|
|
|
|
.meta {
|
|
display: none;
|
|
font-size: .9rem;
|
|
line-height: 2;
|
|
font-weight: var(--font-weight-light);
|
|
|
|
a {
|
|
color: var(--color-text-primary);
|
|
|
|
&:hover {
|
|
color: var(--color-highlight);
|
|
}
|
|
}
|
|
|
|
> * + * {
|
|
margin-left: .2rem;
|
|
display: inline-block;
|
|
|
|
&::before {
|
|
content: '•';
|
|
margin-right: .2rem;
|
|
color: var(--color-text-secondary);
|
|
font-weight: unset;
|
|
}
|
|
}
|
|
}
|
|
|
|
@media (max-width: 768px) {
|
|
min-height: 0;
|
|
flex-direction: column;
|
|
|
|
.thumbnail-wrapper {
|
|
display: none;
|
|
}
|
|
|
|
h1 {
|
|
font-size: 1.38rem;
|
|
}
|
|
|
|
.meta {
|
|
display: none;
|
|
}
|
|
}
|
|
}
|
|
</style>
|