traxxx/assets/components/entities/entity.vue

262 lines
4.3 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">
2020-06-30 22:25:27 +00:00
<a
:href="entity.url"
target="_blank"
rel="noopener"
class="link link-child"
>
<template v-if="entity.hasLogo">
<img
v-if="$route.name === 'network'"
class="logo logo-child"
:src="`/img/logos/${entity.slug}/thumbs/network.png`"
>
<img
v-else-if="entity.parent && !entity.independent"
2020-06-30 22:25:27 +00:00
class="logo logo-child"
:src="`/img/logos/${entity.parent.slug}/thumbs/${entity.slug}.png`"
>
<img
v-else
class="logo logo-child"
:src="`/img/logos/${entity.slug}/thumbs/${entity.slug}.png`"
>
</template>
2020-06-30 22:25:27 +00:00
<h2
v-else
2020-06-30 22:25:27 +00:00
class="name"
>{{ entity.name }}</h2>
<Icon icon="share2" />
2020-06-30 22:25:27 +00:00
</a>
<ul
v-if="entity.tags.length > 0"
class="tags"
>
<li
v-for="tag in entity.tags"
:key="`tag-${tag.slug}`"
>{{ tag.name }}</li>
</ul>
2020-06-27 02:50:13 +00:00
<router-link
v-if="entity.parent"
:to="`/${entity.parent.type}/${entity.parent.slug}`"
2020-06-30 22:25:27 +00:00
class="link link-parent"
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`"
>
<img
v-if="entity.parent.hasLogo"
class="favicon"
:src="`/img/logos/${entity.parent.slug}/favicon.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"
>
2020-06-29 23:07:48 +00:00
<Scroll
v-if="entity.children.length > 0"
:expanded="expanded"
2020-06-29 23:07:48 +00:00
class="scroll-dark"
@expand="(state) => expanded = state"
2020-06-29 23:07:48 +00:00
>
<Children
:entity="entity"
:class="{ expanded }"
/>
</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-07-20 02:20:33 +00:00
import FilterBar from '../filters/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();
this.expanded = false;
2020-06-27 02:50:13 +00:00
}
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,
expanded: false,
2020-06-27 02:50:13 +00:00
};
},
watch: {
$route: route,
},
mounted,
methods: {
fetchEntity,
},
};
</script>
<style lang="scss" scoped>
2020-07-05 02:40:57 +00:00
@import 'breakpoints';
2020-06-27 02:50:13 +00:00
.info {
display: flex;
justify-content: space-between;
background: var(--profile);
border-bottom: solid 1px var(--lighten-hint);
}
.link {
max-width: 20rem;
display: flex;
align-items: center;
box-sizing: border-box;
padding: 1rem;
text-decoration: none;
}
2020-06-30 22:25:27 +00:00
.link-child {
.icon {
fill: var(--lighten);
margin: 0 0 0 1rem;
2020-06-30 22:25:27 +00:00
}
&:hover .icon {
fill: var(--text-light);
}
2020-06-27 02:50:13 +00:00
}
.link-parent {
flex-direction: row-reverse;
margin: 0 0 0 3rem;
}
2020-06-27 02:50:13 +00:00
.logo {
height: 100%;
max-width: 100%;
2020-06-27 02:50:13 +00:00
object-fit: contain;
}
.logo-child {
height: 2.5rem;
}
.logo-parent {
height: 1.5rem;
}
.favicon {
height: 1rem;
}
.name {
color: var(--text-light);
display: flex;
align-items: center;
padding: 0;
margin: 0;
2020-06-30 22:25:27 +00:00
white-space: nowrap;
font-size: 1.5rem;
}
.favicon {
display: none;
}
@media(max-width: $breakpoint) {
.tags {
display: none;
}
}
2020-07-05 02:40:57 +00:00
@media(max-width: $breakpoint-micro) {
.logo-parent {
display: none;
}
.favicon {
display: inline-block;
}
2020-06-27 02:50:13 +00:00
}
@media(max-width: $breakpoint-nano) {
.link-child .icon {
display: none;
}
}
2020-06-27 02:50:13 +00:00
</style>