traxxx-web/components/entities/tile.vue

52 lines
883 B
Vue

<template>
<a
:href="`/${entity.type}/${entity.slug}`"
class="entity"
>
<img
v-if="entity.hasLogo"
:src="entity.type === 'network' || entity.isIndependent ? `/logos/${entity.slug}/thumbs/network.png` : `/logos/${entity.parent?.slug}/thumbs/${entity.slug}.png`"
:alt="entity.name"
class="logo"
>
<span v-else>{{ entity.name }}</span>
</a>
</template>
<script setup>
defineProps({
entity: {
type: Object,
default: null,
},
});
</script>
<style scoped>
.entity {
width: 15rem;
height: 6rem;
display: flex;
justify-content: center;
align-items: center;
box-sizing: border-box;
padding: 1rem;
border-radius: .5rem;
background: var(--shadow-strong-30);
color: var(--text-light);
font-size: 1.25rem;
font-weight: bold;
&:hover {
box-shadow: 0 0 3px var(--shadow);
}
}
.logo {
height: 100%;
width: 100%;
object-fit: contain;
}
</style>