mirror of
https://github.com/IT4Change/gradido.git
synced 2025-12-13 07:45:54 +00:00
57 lines
1.6 KiB
Vue
57 lines
1.6 KiB
Vue
<template>
|
|
<div class="contribution-messages-list-item">
|
|
<div v-if="isNotModerator" class="is-not-moderator text-right">
|
|
<b-avatar :text="initialLetters" variant="info"></b-avatar>
|
|
<span class="ml-2 mr-2">{{ message.userFirstName }} {{ message.userLastName }}</span>
|
|
<span class="ml-2">{{ $d(new Date(message.createdAt), 'short') }}</span>
|
|
<div class="mt-2">{{ message.message }}</div>
|
|
</div>
|
|
<div v-else class="is-moderator text-left">
|
|
<b-avatar square :text="initialLetters" variant="warning"></b-avatar>
|
|
<span class="ml-2 mr-2">{{ message.userFirstName }} {{ message.userLastName }}</span>
|
|
<span class="ml-2">{{ $d(new Date(message.createdAt), 'short') }}</span>
|
|
<small class="ml-4 text-success">{{ $t('community.moderator') }}</small>
|
|
<div class="mt-2">{{ message.message }}</div>
|
|
</div>
|
|
</div>
|
|
</template>
|
|
|
|
<script>
|
|
export default {
|
|
name: 'ContributionMessagesListItem',
|
|
props: {
|
|
message: {
|
|
type: Object,
|
|
required: true,
|
|
},
|
|
},
|
|
data() {
|
|
return {
|
|
storeName: `${this.$store.state.firstName} ${this.$store.state.lastName}`,
|
|
moderationName: `${this.message.userFirstName} ${this.message.userLastName}`,
|
|
}
|
|
},
|
|
computed: {
|
|
isNotModerator() {
|
|
return this.storeName === this.moderationName
|
|
},
|
|
},
|
|
}
|
|
</script>
|
|
<style>
|
|
.is-not-moderator {
|
|
float: right;
|
|
/* background-color: rgb(261, 204, 221); */
|
|
width: 75%;
|
|
margin-top: 20px;
|
|
margin-bottom: 20px;
|
|
clear: both;
|
|
}
|
|
.is-moderator {
|
|
clear: both;
|
|
/* background-color: rgb(255, 255, 128); */
|
|
width: 75%;
|
|
margin-top: 20px;
|
|
}
|
|
</style>
|