mirror of
https://github.com/danbulant/Nertivia-Client
synced 2026-06-20 06:41:46 +00:00
64 lines
1.4 KiB
Vue
64 lines
1.4 KiB
Vue
<template>
|
|
<div class="friends" >
|
|
<div class="tab" @click="expanded = !expanded">
|
|
<Tab :expanded="expanded" tabname="Offline" />
|
|
</div>
|
|
<transition name="list" appear>
|
|
<div class="list" v-if="expanded">
|
|
<FriendsTemplate v-for="(friend, key) of friends" :key="key" :channelID="friend.channelID" :recipient="friends[key].recipient" />
|
|
</div>
|
|
</transition>
|
|
</div>
|
|
</template>
|
|
|
|
<script>
|
|
import Tab from './Tab.vue'
|
|
import FriendsTemplate from './FriendsTemplate.vue'
|
|
export default {
|
|
components: {
|
|
Tab,
|
|
FriendsTemplate
|
|
},
|
|
data() {
|
|
return {
|
|
expanded: true
|
|
}
|
|
},
|
|
computed: {
|
|
friends() {
|
|
const allFriend = this.$store.getters.user.friends;
|
|
const result = Object.keys(allFriend).map(function(key) {
|
|
return allFriend[key];
|
|
});
|
|
return result.filter(friend => friend.status == 2 && (friend.recipient.status === undefined || friend.recipient.status == 0 ));
|
|
}
|
|
}
|
|
}
|
|
</script>
|
|
<style scoped>
|
|
.list-enter-active, .list-leave-active {
|
|
transition: .3s;
|
|
}
|
|
.list-enter, .list-leave-to /* .fade-leave-active below version 2.1.8 */ {
|
|
transform: translateY(-20px);
|
|
opacity: 0;
|
|
}
|
|
|
|
.friends{
|
|
background-color: rgba(0, 0, 0, 0);
|
|
margin: 5px;
|
|
user-select: none;
|
|
padding-bottom: 3px;
|
|
border-radius: 5px;
|
|
transition: 0.3s;
|
|
}
|
|
.tab{
|
|
border-radius: 5px;
|
|
transition: 0.3s;
|
|
}
|
|
.tab:hover{
|
|
background-color: rgba(0, 0, 0, 0.123);
|
|
}
|
|
</style>
|
|
|
|
|