Nertivia-Client/src/components/app/MessageTemplate.vue
2020-01-13 11:50:34 +00:00

596 lines
14 KiB
Vue

<template>
<div
class="container"
@mouseover="mouseOverEvent"
@mouseleave="hover = false"
>
<div
v-if="!type || type === 0"
:class="{
message: true,
ownMessage: user.uniqueID === $props.uniqueID,
ownMessageLeft:
user.uniqueID === $props.uniqueID &&
apperance &&
apperance.own_message_right === true
}"
>
<div class="avatar">
<profile-picture
:admin="$props.admin"
:url="`${userAvatar}${hover || !isGif ? '' : '?type=webp'}`"
size="50px"
:hover="true"
@click.native="openUserInformation"
/>
</div>
<div class="triangle">
<div class="triangle-inner" />
</div>
<div class="content" @dblclick="contentDoubleClickEvent">
<div class="user-info">
<div
class="username"
:style="{ color: roleColor }"
@click="openUserInformation"
>
{{ this.$props.username }}
</div>
<div class="date">{{ getDate }}</div>
</div>
<SimpleMarkdown
class="content-message"
:style="[color && color !== -2 ? { color: color } : '']"
:message="message"
/>
<div
class="file-content"
v-if="getFile && !getFile.fileName.endsWith('.mp3')"
>
<div class="icon">
<i class="material-icons">insert_drive_file</i>
</div>
<div class="information">
<div class="info">{{ getFile.fileName }}</div>
<a :href="getFile.url" download target="_blank">
<div class="download-button">Download</div>
</a>
</div>
</div>
<div
v-if="getFile && getFile.fileName.endsWith('.mp3')"
class="file-content music"
>
<div class="info">{{ getFile.fileName }}</div>
<audio controls>
<source :src="getFile.url" type="audio/mp3" />
</audio>
</div>
<div class="image-content" ref="image" v-if="getImage">
<img :src="getImage" @click="imageClicked" />
</div>
<message-embed-template
v-if="embed && Object.keys(embed).length"
:embed="embed"
/>
</div>
<div class="other-information">
<div
class="drop-down-button"
ref="drop-down-button"
@click="openContextMenu"
>
<i class="material-icons">more_vert</i>
</div>
<div
class="sending-status"
v-if="timeEdited && (status === undefined || status === 1)"
:title="`Edited ${getEditedDate}`"
>
<i class="material-icons">edit</i>
</div>
<div class="sending-status" v-else-if="status === 0">
<i class="material-icons">hourglass_full</i>
</div>
<div class="sending-status" v-else-if="status === 1">
<i class="material-icons">done</i>
</div>
<div class="sending-status" v-else-if="status === 2">
<i class="material-icons">close</i> Failed
</div>
</div>
</div>
<div
v-if="type && (type === 1 || type === 2 || type === 3 || type === 4)"
class="presence-message"
:class="{
join: type === 1,
leave: type === 2,
kick: type === 3,
ban: type === 4
}"
>
<div class="presense-contain">
<span>
<span class="username" @click="openUserInformation">{{
this.$props.username
}}</span>
<span v-if="type === 1" class="text">has joined the server!</span>
<span v-if="type === 2" class="text">has left the server.</span>
<span v-if="type === 3" class="text">has been kicked.</span>
<span v-if="type === 4" class="text">has been banned.</span>
<span class="date">{{ getDate }}</span>
</span>
</div>
<div
class="drop-down-button"
ref="drop-down-button"
@click="openContextMenu"
>
<i class="material-icons">more_vert</i>
</div>
</div>
</div>
</template>
<script>
import ProfilePicture from "@/components/ProfilePictureTemplate.vue";
import SimpleMarkdown from "./SimpleMarkdown.vue";
import messageEmbedTemplate from "./messageEmbedTemplate";
import config from "@/config.js";
import friendlyDate from "@/utils/date";
import path from "path";
import windowProperties from "@/utils/windowProperties";
import { mapState } from "vuex";
export default {
props: [
"message",
"status",
"username",
"avatar",
"date",
"uniqueID",
"files",
"admin",
"type",
"embed",
"messageID",
"channelID",
"timeEdited",
"color",
"isServer"
],
components: {
ProfilePicture,
messageEmbedTemplate,
SimpleMarkdown
},
data() {
return {
hover: false,
isGif: false
};
},
methods: {
mouseOverEvent() {
if (this.isGif) {
this.hover = true;
}
},
openContextMenu(event) {
const x = event.clientX;
const y = event.clientY;
this.$store.dispatch("setMessageContext", {
x,
y,
channelID: this.channelID,
messageID: this.messageID,
message: this.message,
uniqueID: this.uniqueID,
type: this.type,
color: this.color
});
},
openUserInformation() {
this.$store.dispatch("setUserInformationPopout", this.uniqueID);
},
imageClicked(event) {
this.$store.dispatch("setImagePreviewURL", event.target.src);
},
editMessage() {
if (this.uniqueID !== this.user.uniqueID) return;
this.dropDownVisable = false;
this.$store.dispatch("setEditMessage", {
channelID: this.channelID,
messageID: this.messageID,
message: this.message,
color: this.color
});
},
contentDoubleClickEvent(event) {
if (
event.target.classList.contains("content") ||
event.target.closest(".user-info")
)
this.editMessage();
},
clamp(num, min, max) {
return num <= min ? min : num >= max ? max : num;
},
calculateAspectRatioFit(srcWidth, srcHeight, maxWidth, maxHeight) {
let ratio = Math.min(maxWidth / srcWidth, maxHeight / srcHeight);
return { width: srcWidth * ratio, height: srcHeight * ratio };
},
imageSize() {
const files = this.$props.files;
if (!files || files.length === 0 || !files[0].dimensions)
return undefined;
const messageLog = document.querySelector(".message-logs");
const w = messageLog.offsetWidth;
const h = messageLog.offsetHeight;
let minWidth = w / 4;
let minHeight = h / 4;
if (w <= 800) {
minWidth = w / 1.7;
minHeight = h / 1.7;
}
const dimensions = this.$props.files[0].dimensions;
const srcWidth = dimensions.width;
const srcHeight = dimensions.height;
const newDimentions = this.calculateAspectRatioFit(
srcWidth,
srcHeight,
minWidth,
minHeight
);
const imageTag = this.$refs["image"];
imageTag.firstChild.style.width = "100%";
imageTag.firstChild.style.height = "100%";
imageTag.style.width =
this.clamp(newDimentions.width, 0, srcWidth) + "px";
imageTag.style.height =
this.clamp(newDimentions.height, 0, srcHeight) + "px";
},
onResize() {
this.imageSize();
}
},
watch: {
getWindowWidth(dimentions) {
this.onResize(dimentions);
}
},
mounted() {
this.isGif = this.userAvatar.endsWith(".gif");
const files = this.files;
if (!files || files.length === 0 || !files[0].dimensions) return undefined;
this.imageSize();
},
computed: {
...mapState("settingsModule", ["apperance"]),
getImage() {
if (!this.$props.files || this.$props.files.length === 0)
return undefined;
const file = this.$props.files[0];
if (!file.fileID) return undefined;
const filetypes = /jpeg|jpg|gif|png/;
const extname = filetypes.test(path.extname(file.fileName).toLowerCase());
if (!extname) return undefined;
return config.domain + "/media/" + file.fileID;
},
getFile() {
if (!this.$props.files || this.$props.files.length === 0)
return undefined;
let file = this.$props.files[0];
if (!file.fileID) return undefined;
const filetypes = /jpeg|jpg|gif|png/;
const extname = filetypes.test(path.extname(file.fileName).toLowerCase());
if (extname) return undefined;
file.url = config.domain + "/files/" + file.fileID;
return file;
},
getDate() {
return friendlyDate(
this.$props.date,
this.apperance && this.apperance["12h_time"] ? "12h" : false
);
},
getEditedDate() {
return friendlyDate(
this.timeEdited,
this.apperance && this.apperance["12h_time"] ? "12h" : false
);
},
userAvatar() {
return config.domain + "/avatars/" + this.$props.avatar;
},
user() {
return this.$store.getters.user;
},
getWindowWidth() {
return {
width: windowProperties.resizeWidth,
height: windowProperties.resizeHeight
};
},
roles() {
return this.$store.getters["servers/selectedServerRoles"];
},
serverMember() {
const serverMembers = this.$store.getters["servers/serverMembers"];
return serverMembers.find(
m =>
m.uniqueID === this.uniqueID &&
m.server_id === this.$store.getters["servers/selectedServerID"]
);
},
roleColor() {
if (!this.isServer) return undefined;
if (!this.serverMember || !this.serverMember.roles) return undefined;
const filtered = this.roles.filter(r =>
this.serverMember.roles.includes(r.id)
);
if (!filtered.length) return undefined;
return filtered[0].color + " !important";
}
}
};
</script>
<style scoped lang="scss">
$self-message-color: #053746;
$message-color: #03222b;
.container {
position: relative;
z-index: 1;
}
.drop-down-button {
opacity: 0;
transition: 0.2s;
position: relative;
z-index: 1;
}
.container:hover .drop-down-button {
opacity: 1;
}
.presence-message {
margin: 10px;
display: flex;
color: white;
overflow: hidden;
}
.presense-contain {
padding: 10px;
display: table;
color: white;
overflow: hidden;
background: $message-color;
}
.presence-message .text {
margin-left: 5px;
font-size: 15px;
}
.presence-message .username {
font-size: 15px;
font-weight: bold;
}
.presence-message.join .text {
color: #29bf12;
}
.presence-message.leave .text {
color: rgb(150, 139, 139);
}
.presence-message.kick .text {
color: #ff9914;
}
.presence-message.ban .text {
color: #d92121;
}
.ownMessageLeft {
flex-direction: row-reverse;
}
.ownMessageLeft .triangle-inner {
border-left: 8px solid $self-message-color;
border-right: none !important;
}
.ownMessageLeft .avatar {
margin-right: 0px;
}
.ownMessageLeft .sending-status {
margin-left: auto !important;
margin-right: 4px !important;
}
.message {
margin: 10px;
margin-top: 5px;
margin-bottom: 5px;
display: flex;
}
.ownMessage .triangle-inner {
border-right: 8px solid $self-message-color;
}
.ownMessage .content {
background: $self-message-color;
}
.ownMessage .date {
color: #d5e3e6;
}
.file-content {
display: flex;
background: #ffffff21;
padding: 10px;
margin-top: 5px;
&.music {
.info {
margin-bottom: 5px;
}
flex-direction: column;
}
}
.file-content .material-icons {
font-size: 40px;
}
.file-content .download-button {
font-size: 14px;
background: rgba(0, 0, 0, 0.158);
padding: 3px;
text-align: center;
display: inline-block;
margin-top: 3px;
transition: 0.3s;
user-select: none;
cursor: pointer;
color: white;
}
.file-content .download-button:hover {
background: rgba(0, 0, 0, 0.329);
}
.file-content .info {
word-wrap: break-word;
word-break: break-word;
white-space: pre-wrap;
font-size: 14px;
overflow: hidden;
max-width: 100%;
color: white;
overflow-wrap: anywhere;
margin-top: 3px;
}
.avatar {
margin: auto 0 0 0;
}
.triangle {
display: flex;
justify-content: bottom;
flex-direction: column;
margin: auto 0 0 0;
}
.triangle-inner {
width: 0;
height: 0;
border-top: 9px solid transparent;
border-bottom: 0px solid transparent;
border-right: 8px solid $message-color;
}
.content {
background: $message-color;
padding: 10px;
display: flex;
justify-content: center;
flex-direction: column;
// border-radius: 10px;
border-bottom-left-radius: 0;
color: rgb(231, 231, 231);
margin: auto 0;
overflow: hidden;
}
.ownMessageLeft .content {
border-bottom-right-radius: 0;
}
.image-content {
margin-top: 10px;
padding: 5px;
background: #ffffff21;
display: -ms-flexbox;
display: flex;
flex-direction: column;
}
.image-content img {
width: 100px;
object-fit: contain;
height: 100px;
}
.image-content:hover img {
filter: brightness(70%);
}
.user-info {
display: flex;
}
.username {
color: rgb(255, 255, 255);
font-size: 14px;
margin: auto 0;
transition: 0.1s;
cursor: pointer;
}
.username:hover {
color: rgb(255, 255, 255);
text-decoration: underline;
}
.date {
color: #d5e3e6;
font-size: 10px;
margin: auto auto auto 5px;
font-weight: normal;
}
.content-message {
word-wrap: break-word;
word-break: break-word;
white-space: pre-wrap;
overflow-wrap: anywhere;
font-size: 14px;
overflow: hidden;
max-width: 100%;
color: white;
margin-top: 3px;
}
.other-information {
display: flex;
flex-direction: column;
}
.message .sending-status {
display: flex;
justify-content: flex-end;
padding-bottom: 5px;
font-size: 15px;
color: white;
margin: auto auto 0 4px;
user-select: none;
transition: 0.5;
align-content: center;
}
.message .other-information div .material-icons {
font-size: 15px;
color: rgb(306, 306, 306);
display: block;
}
.drop-down-button .material-icons {
font-size: 17px !important;
user-select: none;
cursor: pointer;
margin-top: 5px;
}
@media (max-width: 468px) {
}
</style>