Nertivia-Client/src/components/app/relationships/FriendsTemplate.vue
2019-04-21 21:00:15 +01:00

197 lines
4.6 KiB
Vue

<template>
<div :class="{friend: true, notifyAnimation: (notifications && notifications > 0) }" :style="`background: ${status.bgColor};`" @click="openChat">
<div class="profile-picture" @click="openUserInformation" :style="`border-color: ${status.statusColor}; background-image: url(${userAvatar})`">
<div class="status" :style="`background-image: url(${status.statusURL})`" ></div>
</div>
<div class="information">
<div class="username">{{recipient.username}}</div>
<div class="status-name" :style="`color: ${status.statusColor}`">{{status.statusName}}</div>
</div>
<div class="notification" v-if="notifications && notifications >0">
<div class="notification-inner">
{{notifications}}
</div>
</div>
</div>
</template>
<script>
import channelService from '@/services/channelService';
import messagesService from '@/services/messagesService';
import config from '@/config.js'
import statuses from '@/utils/statuses';
import {bus} from '@/main'
export default {
props: ['username', 'tag', 'channelID', 'uniqueID', 'recipient'],
methods: {
async openChat(event) {
if (event.target.classList[0] === "profile-picture") return;
bus.$emit('closeLeftMenu');
// dismiss notification if exists
// TODO move this into openchat or something :/
if (this.notifications && this.notifications >= 1 && document.hasFocus()) {
this.$socket.emit('notification:dismiss', {channelID: this.channelID});
}
this.$store.dispatch('openChat', {
uniqueID: this.recipient.uniqueID,
channelID: this.channelID,
channelName: this.recipient.username
})
},
openUserInformation() {
this.$store.dispatch('setUserInformationPopout', this.recipient.uniqueID)
}
},
computed: {
notifications () {
const channelID = this.$props.channelID;
const notifications = this.$store.getters.notifications.find(function(e) {
return e.channelID == channelID
})
if (!notifications || (this.$props.channelID === this.$store.getters.selectedChannelID && document.hasFocus())) return;
return notifications.count;
},
userAvatar() {
return config.domain + "/avatars/" + this.recipient.avatar
},
status() {
let status = 0;
if (this.$store.getters.user.friends[this.recipient.uniqueID]) {
status = this.$store.getters.user.friends[this.recipient.uniqueID].recipient.status || 0
}
return {
statusName: statuses[parseInt(status)].name,
statusURL: statuses[parseInt(status)].url,
statusColor: statuses[parseInt(status)].color,
bgColor: statuses[parseInt(status)].bgColor
}
}
}
}
</script>
<style scoped>
.username{
width: 201px;
overflow: hidden;
text-overflow: ellipsis;
}
.friend {
color: white;
background-color: rgba(0, 0, 0, 0.137);
margin: 5px;
padding: 5px;
padding-right: 0;
display: flex;
transition: 0.3s;
border-radius: 5px;
position: relative;
overflow: hidden;
}
.notifyAnimation:before{
content: '';
position: absolute;
z-index: -1;
top: 0;
left: 0;
right: 0;
bottom: 0;
animation: notifyAnime;
animation-duration: 1s;
animation-iteration-count: infinite;
animation-fill-mode: forwards
}
@keyframes notifyAnime {
0%{
background: rgba(255, 0, 0, 0.198);
}
40%{
background: rgba(255, 0, 0, 0.411);
}
60%{
background: rgba(255, 0, 0, 0.411);
}
100%{
background: rgba(255, 0, 0, 0.198);
}
}
.friend:hover {
background-color: rgba(0, 0, 0, 0.246);
}
.profile-picture{
height: 30px;
width: 30px;
background-color: rgba(0, 0, 0, 0.425);
border-radius: 50%;
margin: auto;
margin-left: 2px;
margin-right: 5px;
border: solid 2px;
position: relative;
background-position: center;
background-size: cover;
background-repeat: no-repeat;
transition: 0.3s;
flex-shrink: 0;
}
.information{
margin: auto;
margin-left: 5px;
margin-right: 5px;
flex: 1;
}
.notification{
position: absolute;
display: flex;
background: rgba(134, 134, 134, 0.315);
height: 100%;
right: 0;
top: 0;
bottom: 0;
width: 50px;
border-radius: 1px;
}
.notification-inner{
margin: auto;
}
.status {
position: absolute;
height: 15px;
width: 15px;
background-color: black;
border-radius: 50%;
background-size: calc(100% + 2px);
background-position: center;
bottom: -10px;
right: -5px;
opacity: 0;
transition: 0.3s;
}
.friend:hover .status {
opacity: 1;
bottom: -4px;
}
.status-name{
opacity: 0;
font-size: 13px;
transition: 0.3s;
height: 0;
}
.friend:hover .status-name {
opacity: 0.8;
height: 13px;
}
</style>