mirror of
https://github.com/romancm/gamebrary
synced 2024-12-18 23:33:15 +00:00
65 lines
1.2 KiB
Vue
65 lines
1.2 KiB
Vue
<template lang="html">
|
|
<header :class="{ 'has-action': slots.includes('default') }">
|
|
<div>
|
|
<slot name="header" v-if="slots.includes('header')" />
|
|
<h5 class="mb-0 text-wrap">{{ title }}</h5>
|
|
<small class="d-block text-muted">{{ subtitle }}</small>
|
|
</div>
|
|
|
|
<div class="actions" v-if="slots.includes('default')">
|
|
<slot />
|
|
</div>
|
|
|
|
<b-button
|
|
:variant="nightMode ? 'dark' : 'light'"
|
|
class="align-self-baseline"
|
|
@click="$emit('close')"
|
|
>
|
|
<i class="fas fa-times fa-fw" aria-hidden />
|
|
</b-button>
|
|
</header>
|
|
</template>
|
|
|
|
<script>
|
|
import { mapGetters } from 'vuex';
|
|
|
|
export default {
|
|
props: {
|
|
title: String,
|
|
subtitle: String,
|
|
},
|
|
|
|
computed: {
|
|
...mapGetters(['nightMode']),
|
|
|
|
slots() {
|
|
return Object.keys(this.$slots);
|
|
},
|
|
},
|
|
};
|
|
</script>
|
|
|
|
<style lang="scss" rel="stylesheet/scss" scoped>
|
|
header {
|
|
display: grid;
|
|
width: 100%;
|
|
align-items: center;
|
|
grid-template-columns: auto 46px;
|
|
grid-gap: .5rem;
|
|
|
|
&.has-action {
|
|
grid-template-columns: 1fr auto 46px;
|
|
}
|
|
}
|
|
|
|
h5 {
|
|
white-space: nowrap;
|
|
overflow: hidden;
|
|
text-overflow: ellipsis;
|
|
}
|
|
|
|
.actions {
|
|
margin-left: auto;
|
|
align-self: flex-start;
|
|
}
|
|
</style>
|