2020-08-18 13:44:21 +00:00
|
|
|
<template>
|
2020-10-24 16:21:41 +00:00
|
|
|
<MkA :to="`/channels/${channel.id}`" class="eftoefju _panel" tabindex="-1">
|
2020-10-30 20:53:02 +00:00
|
|
|
<div class="banner" :style="bannerStyle">
|
2020-08-18 13:44:21 +00:00
|
|
|
<div class="fade"></div>
|
2021-04-20 14:22:59 +00:00
|
|
|
<div class="name"><i class="fas fa-satellite-dish"></i> {{ channel.name }}</div>
|
2020-08-18 13:44:21 +00:00
|
|
|
<div class="status">
|
2020-10-17 11:12:00 +00:00
|
|
|
<div>
|
2021-04-20 14:22:59 +00:00
|
|
|
<i class="fas fa-users fa-fw"></i>
|
2020-12-26 01:47:36 +00:00
|
|
|
<I18n :src="$ts._channel.usersCount" tag="span" style="margin-left: 4px;">
|
2020-10-17 11:12:00 +00:00
|
|
|
<template #n>
|
|
|
|
<b>{{ channel.usersCount }}</b>
|
|
|
|
</template>
|
2020-12-26 01:01:32 +00:00
|
|
|
</I18n>
|
2020-10-17 11:12:00 +00:00
|
|
|
</div>
|
|
|
|
<div>
|
2021-04-20 14:22:59 +00:00
|
|
|
<i class="fas fa-pencil-alt fa-fw"></i>
|
2020-12-26 01:47:36 +00:00
|
|
|
<I18n :src="$ts._channel.notesCount" tag="span" style="margin-left: 4px;">
|
2020-10-17 11:12:00 +00:00
|
|
|
<template #n>
|
|
|
|
<b>{{ channel.notesCount }}</b>
|
|
|
|
</template>
|
2020-12-26 01:01:32 +00:00
|
|
|
</I18n>
|
2020-10-17 11:12:00 +00:00
|
|
|
</div>
|
2020-08-18 13:44:21 +00:00
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
<article v-if="channel.description">
|
|
|
|
<p :title="channel.description">{{ channel.description.length > 85 ? channel.description.slice(0, 85) + '…' : channel.description }}</p>
|
|
|
|
</article>
|
|
|
|
<footer>
|
2020-10-17 11:12:00 +00:00
|
|
|
<span v-if="channel.lastNotedAt">
|
2020-12-26 01:47:36 +00:00
|
|
|
{{ $ts.updatedAt }}: <MkTime :time="channel.lastNotedAt"/>
|
2020-08-18 13:44:21 +00:00
|
|
|
</span>
|
|
|
|
</footer>
|
2020-10-24 16:21:41 +00:00
|
|
|
</MkA>
|
2020-08-18 13:44:21 +00:00
|
|
|
</template>
|
|
|
|
|
|
|
|
<script lang="ts">
|
2020-10-17 11:12:00 +00:00
|
|
|
import { defineComponent } from 'vue';
|
2020-08-18 13:44:21 +00:00
|
|
|
|
2020-10-17 11:12:00 +00:00
|
|
|
export default defineComponent({
|
2020-08-18 13:44:21 +00:00
|
|
|
props: {
|
|
|
|
channel: {
|
|
|
|
type: Object,
|
|
|
|
required: true
|
|
|
|
},
|
|
|
|
},
|
|
|
|
|
2020-10-30 20:53:02 +00:00
|
|
|
computed: {
|
|
|
|
bannerStyle() {
|
|
|
|
if (this.channel.bannerUrl) {
|
|
|
|
return { backgroundImage: `url(${this.channel.bannerUrl})` };
|
|
|
|
} else {
|
|
|
|
return { backgroundColor: '#4c5e6d' };
|
|
|
|
}
|
|
|
|
}
|
|
|
|
},
|
|
|
|
|
2020-08-18 13:44:21 +00:00
|
|
|
data() {
|
|
|
|
return {
|
|
|
|
};
|
|
|
|
},
|
|
|
|
});
|
|
|
|
</script>
|
|
|
|
|
|
|
|
<style lang="scss" scoped>
|
|
|
|
.eftoefju {
|
|
|
|
display: block;
|
2021-03-02 13:57:16 +00:00
|
|
|
overflow: hidden;
|
2020-08-18 13:44:21 +00:00
|
|
|
width: 100%;
|
|
|
|
|
|
|
|
&:hover {
|
|
|
|
text-decoration: none;
|
|
|
|
}
|
|
|
|
|
|
|
|
> .banner {
|
|
|
|
position: relative;
|
|
|
|
width: 100%;
|
|
|
|
height: 200px;
|
|
|
|
background-position: center;
|
|
|
|
background-size: cover;
|
|
|
|
|
|
|
|
> .fade {
|
|
|
|
position: absolute;
|
|
|
|
bottom: 0;
|
|
|
|
left: 0;
|
|
|
|
width: 100%;
|
|
|
|
height: 64px;
|
|
|
|
background: linear-gradient(0deg, var(--panel), var(--X15));
|
|
|
|
}
|
|
|
|
|
|
|
|
> .name {
|
|
|
|
position: absolute;
|
|
|
|
top: 16px;
|
|
|
|
left: 16px;
|
|
|
|
padding: 12px 16px;
|
|
|
|
background: rgba(0, 0, 0, 0.7);
|
|
|
|
color: #fff;
|
|
|
|
font-size: 1.2em;
|
|
|
|
}
|
|
|
|
|
|
|
|
> .status {
|
|
|
|
position: absolute;
|
|
|
|
z-index: 1;
|
|
|
|
bottom: 16px;
|
|
|
|
right: 16px;
|
|
|
|
padding: 8px 12px;
|
|
|
|
font-size: 80%;
|
|
|
|
background: rgba(0, 0, 0, 0.7);
|
|
|
|
border-radius: 6px;
|
|
|
|
color: #fff;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
> article {
|
|
|
|
padding: 16px;
|
|
|
|
|
|
|
|
> p {
|
|
|
|
margin: 0;
|
|
|
|
font-size: 1em;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
> footer {
|
|
|
|
padding: 12px 16px;
|
2021-04-10 03:40:50 +00:00
|
|
|
border-top: solid 0.5px var(--divider);
|
2020-08-18 13:44:21 +00:00
|
|
|
|
|
|
|
> span {
|
|
|
|
opacity: 0.7;
|
|
|
|
font-size: 0.9em;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
@media (max-width: 550px) {
|
|
|
|
font-size: 0.9em;
|
|
|
|
|
|
|
|
> .banner {
|
|
|
|
height: 80px;
|
|
|
|
|
|
|
|
> .status {
|
|
|
|
display: none;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
> article {
|
|
|
|
padding: 12px;
|
|
|
|
}
|
|
|
|
|
|
|
|
> footer {
|
|
|
|
display: none;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
@media (max-width: 500px) {
|
|
|
|
font-size: 0.8em;
|
|
|
|
|
|
|
|
> .banner {
|
|
|
|
height: 70px;
|
|
|
|
}
|
|
|
|
|
|
|
|
> article {
|
|
|
|
padding: 8px;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
</style>
|