traxxx/assets/components/entities/entity.vue

184 lines
3.2 KiB
Vue
Raw Normal View History

2020-06-27 02:50:13 +00:00
<template>
<div
v-if="entity"
class="entity content"
>
<div class="info">
<template v-if="entity.hasLogo">
<img
v-if="$route.name === 'network'"
class="logo"
:src="`/img/logos/${entity.slug}/thumbs/network.png`"
>
2020-06-27 02:50:13 +00:00
<img
v-else-if="entity.parent"
class="logo"
:src="`/img/logos/${entity.parent.slug}/thumbs/${entity.slug}.png`"
>
<img
v-else
class="logo"
:src="`/img/logos/${entity.slug}/thumbs/${entity.slug}.png`"
>
</template>
2020-06-27 02:50:13 +00:00
<h2
v-else
class="name"
>{{ entity.name }}</h2>
2020-06-27 02:50:13 +00:00
<router-link
v-if="entity.parent"
:to="`/${entity.parent.type}/${entity.parent.slug}`"
class="link parent-link"
2020-06-27 02:50:13 +00:00
>
<img
v-if="entity.parent.hasLogo"
class="logo logo-parent"
2020-06-27 02:50:13 +00:00
:src="`/img/logos/${entity.parent.slug}/thumbs/network.png`"
>
<h3
v-else
class="name parent-name"
>{{ entity.parent.name }}</h3>
2020-06-27 02:50:13 +00:00
</router-link>
</div>
<div
ref="content"
class="content-inner"
>
<Scroll class="scroll-dark">
<Children :entity="entity" />
<template v-slot:expanded>
<Children
class="expanded"
:entity="entity"
/>
</template>
</Scroll>
2020-06-27 02:50:13 +00:00
<FilterBar
:fetch-releases="fetchEntity"
:items-total="totalCount"
:items-per-page="limit"
/>
<div class="releases">
<Releases :releases="entity.releases" />
<Pagination
:items-total="totalCount"
:items-per-page="limit"
class="pagination-top"
/>
2020-06-27 02:50:13 +00:00
</div>
</div>
</div>
</template>
<script>
import Vue from 'vue';
2020-06-27 02:50:13 +00:00
import FilterBar from '../header/filter-bar.vue';
import Pagination from '../pagination/pagination.vue';
2020-06-27 02:50:13 +00:00
import Releases from '../releases/releases.vue';
import Children from './children.vue';
import Scroll from '../scroll/scroll.vue';
2020-06-27 02:50:13 +00:00
async function fetchEntity() {
const { entity, totalCount } = await this.$store.dispatch('fetchEntityBySlugAndType', {
entitySlug: this.$route.params.entitySlug,
entityType: this.$route.name,
limit: this.limit,
range: this.$route.params.range,
pageNumber: Number(this.$route.params.pageNumber),
});
this.entity = entity;
this.totalCount = totalCount;
this.pageTitle = entity.name;
Vue.nextTick(() => {
this.$refs.content.scrollTop = 0;
});
}
2020-06-27 02:50:13 +00:00
async function mounted() {
await this.fetchEntity();
}
async function route() {
await this.fetchEntity();
}
export default {
components: {
FilterBar,
Pagination,
Children,
2020-06-27 02:50:13 +00:00
Releases,
Scroll,
2020-06-27 02:50:13 +00:00
},
data() {
return {
entity: null,
totalCount: null,
limit: 20,
2020-06-27 02:50:13 +00:00
};
},
watch: {
$route: route,
},
mounted,
methods: {
fetchEntity,
},
};
</script>
<style lang="scss" scoped>
@import 'theme';
2020-06-27 02:50:13 +00:00
.info {
height: 2.5rem;
display: flex;
justify-content: space-between;
padding: 1rem;
background: var(--profile);
border-bottom: solid 1px var(--lighten-hint);
.link {
display: flex;
align-items: center;
text-decoration: none;
}
2020-06-27 02:50:13 +00:00
}
.logo {
height: 100%;
width: 100%;
2020-06-27 02:50:13 +00:00
max-width: 20rem;
object-fit: contain;
object-position: 0 50%;
}
.name {
color: var(--text-light);
display: flex;
align-items: center;
padding: 0;
margin: 0;
font-size: 1.5rem;
}
.logo-parent {
object-position: 100% 50%;
2020-06-27 02:50:13 +00:00
}
</style>