mirror of
https://github.com/HabitRPG/habitica.git
synced 2025-12-17 14:47:53 +01:00
* Added flagging to show to admins * Fixed filters in my guilds * Fixed login incentives style * Added inital rage bar * Added categoires to get group * Updated profile stats page * Added stat allocation * Updated tests to include categoires * Fixed lint issue * Added another lint fix
368 lines
10 KiB
Vue
368 lines
10 KiB
Vue
<template lang="pug">
|
|
.container
|
|
.row
|
|
.col-12
|
|
copy-as-todo-modal(:copying-message='copyingMessage', :group-name='groupName', :group-id='groupId')
|
|
report-flag-modal
|
|
|
|
div(v-for="(msg, index) in chat", v-if='chat && (inbox || Object.keys(cachedProfileData).length > 0) && canViewFlag(msg)')
|
|
// @TODO: is there a different way to do these conditionals? This creates an infinite loop
|
|
//.hr(v-if='displayDivider(msg)')
|
|
.hr-middle(v-once) {{ msg.timestamp }}
|
|
.row(v-if='user._id !== msg.uuid')
|
|
.col-4
|
|
avatar(v-if='cachedProfileData[msg.uuid]',
|
|
:member="cachedProfileData[msg.uuid]", :avatarOnly="true",
|
|
:hideClassBadge='true')
|
|
.card.col-8
|
|
.message-hidden(v-if='msg.flagCount > 0 && user.contributor.admin') Message Hidden
|
|
.card-block
|
|
h3.leader(:class='userLevelStyle(cachedProfileData[msg.uuid])')
|
|
| {{msg.user}}
|
|
.svg-icon(v-html="icons[`tier${cachedProfileData[msg.uuid].contributor.level}`]", v-if='cachedProfileData[msg.uuid] && cachedProfileData[msg.uuid].contributor && cachedProfileData[msg.uuid].contributor.level')
|
|
p {{msg.timestamp | timeAgo}}
|
|
.text(v-markdown='msg.text')
|
|
hr
|
|
.action(@click='like(msg, index)', v-if='msg.likes', :class='{active: msg.likes[user._id]}')
|
|
.svg-icon(v-html="icons.like")
|
|
span(v-if='!msg.likes[user._id]') {{ $t('like') }}
|
|
span(v-if='msg.likes[user._id]') {{ $t('liked') }}
|
|
span.action( @click='copyAsTodo(msg)')
|
|
.svg-icon(v-html="icons.copy")
|
|
| {{$t('copyAsTodo')}}
|
|
span.action(v-if='user.contributor.admin || (msg.uuid !== user._id && user.flags.communityGuidelinesAccepted)', @click='report(msg)')
|
|
.svg-icon(v-html="icons.report")
|
|
| {{$t('report')}}
|
|
span.action(v-if='msg.uuid === user._id', @click='remove(msg, index)')
|
|
.svg-icon(v-html="icons.delete")
|
|
| {{$t('delete')}}
|
|
span.action.float-right(v-if='likeCount(msg) > 0')
|
|
.svg-icon(v-html="icons.liked")
|
|
| + {{ likeCount(msg) }}
|
|
.row(v-if='user._id === msg.uuid')
|
|
.card.col-8
|
|
.message-hidden(v-if='msg.flagCount > 0 && user.contributor.admin') Message Hidden - {{ msg.flagCount }} Flags
|
|
.card-block
|
|
h3.leader(:class='userLevelStyle(cachedProfileData[msg.uuid])')
|
|
| {{msg.user}}
|
|
.svg-icon(v-html="icons[`tier${cachedProfileData[msg.uuid].contributor.level}`]", v-if='cachedProfileData[msg.uuid] && cachedProfileData[msg.uuid].contributor && cachedProfileData[msg.uuid].contributor.level')
|
|
p {{msg.timestamp | timeAgo}}
|
|
.text(v-markdown='msg.text')
|
|
hr
|
|
.action(@click='like(msg, index)', v-if='msg.likes', :class='{active: msg.likes[user._id]}')
|
|
.svg-icon(v-html="icons.like")
|
|
span(v-if='!msg.likes[user._id]') {{ $t('like') }}
|
|
span(v-if='msg.likes[user._id]') {{ $t('liked') }}
|
|
span.action( @click='copyAsTodo(msg)')
|
|
.svg-icon(v-html="icons.copy")
|
|
| {{$t('copyAsTodo')}}
|
|
span.action(v-if='user.contributor.admin || (msg.uuid !== user._id && user.flags.communityGuidelinesAccepted)', @click='report(msg)')
|
|
.svg-icon(v-html="icons.report")
|
|
| {{$t('report')}}
|
|
span.action(v-if='msg.uuid === user._id', @click='remove(msg, index)')
|
|
.svg-icon(v-html="icons.delete")
|
|
| {{$t('delete')}}
|
|
span.action.float-right(v-if='likeCount(msg) > 0')
|
|
.svg-icon(v-html="icons.liked")
|
|
| + {{ likeCount(msg) }}
|
|
.col-4
|
|
avatar(v-if='cachedProfileData[msg.uuid]',
|
|
:member="cachedProfileData[msg.uuid]", :avatarOnly="true",
|
|
:hideClassBadge='true')
|
|
</template>
|
|
|
|
<style lang="scss" scoped>
|
|
@import '~client/assets/scss/colors.scss';
|
|
|
|
// @TODO: Move this to an scss?
|
|
.tier1 {
|
|
color: #c42870;
|
|
}
|
|
|
|
.tier2 {
|
|
color: #b01515;
|
|
}
|
|
|
|
.tier3 {
|
|
color: #d70e14;
|
|
}
|
|
|
|
.tier4 {
|
|
color: #c24d00;
|
|
}
|
|
|
|
.tier5 {
|
|
color: #9e650f;
|
|
}
|
|
|
|
.tier6 {
|
|
color: #2b8363;
|
|
}
|
|
|
|
.tier7 {
|
|
color: #167e87;
|
|
}
|
|
|
|
.tier8 {
|
|
color: #277eab;
|
|
}
|
|
|
|
.tier9 {
|
|
color: #6133b4;
|
|
}
|
|
|
|
.tier10 {
|
|
color: #77f4c7;
|
|
fill: #77f4c7;
|
|
stroke: #005737;
|
|
}
|
|
// End of tier colors
|
|
|
|
h3 {
|
|
.svg-icon {
|
|
width: 10px;
|
|
display: inline-block;
|
|
margin-left: .5em;
|
|
}
|
|
}
|
|
|
|
.hr {
|
|
width: 100%;
|
|
height: 20px;
|
|
border-bottom: 1px solid $gray-500;
|
|
text-align: center;
|
|
margin: 2em 0;
|
|
}
|
|
|
|
.hr-middle {
|
|
font-size: 16px;
|
|
font-weight: bold;
|
|
font-family: 'Roboto Condensed';
|
|
line-height: 1.5;
|
|
text-align: center;
|
|
color: $gray-200;
|
|
background-color: $gray-700;
|
|
padding: .2em;
|
|
margin-top: .2em;
|
|
display: inline-block;
|
|
width: 100px;
|
|
}
|
|
|
|
.card {
|
|
margin-bottom: .5em;
|
|
}
|
|
|
|
.text {
|
|
font-size: 14px;
|
|
color: #4e4a57;
|
|
}
|
|
|
|
.action {
|
|
display: inline-block;
|
|
color: #878190;
|
|
margin-right: 1em;
|
|
}
|
|
|
|
.action:hover {
|
|
cursor: pointer;
|
|
}
|
|
|
|
.action .svg-icon {
|
|
margin-right: .2em;
|
|
width: 16px;
|
|
display: inline-block;
|
|
color: #A5A1AC;
|
|
}
|
|
|
|
.action.active, .active .svg-icon {
|
|
color: #46a7d9
|
|
}
|
|
|
|
.message-hidden {
|
|
margin-left: 1.5em;
|
|
margin-top: 1em;
|
|
color: red;
|
|
}
|
|
</style>
|
|
|
|
<script>
|
|
import axios from 'axios';
|
|
import moment from 'moment';
|
|
import cloneDeep from 'lodash/cloneDeep';
|
|
import { mapState } from 'client/libs/store';
|
|
import throttle from 'lodash/throttle';
|
|
import markdownDirective from 'client/directives/markdown';
|
|
import Avatar from '../avatar';
|
|
import styleHelper from 'client/mixins/styleHelper';
|
|
|
|
import copyAsTodoModal from './copyAsTodoModal';
|
|
import reportFlagModal from './reportFlagModal';
|
|
|
|
import deleteIcon from 'assets/svg/delete.svg';
|
|
import copyIcon from 'assets/svg/copy.svg';
|
|
import likeIcon from 'assets/svg/like.svg';
|
|
import likedIcon from 'assets/svg/liked.svg';
|
|
import reportIcon from 'assets/svg/report.svg';
|
|
import tier1 from 'assets/svg/tier-1.svg';
|
|
import tier2 from 'assets/svg/tier-2.svg';
|
|
import tier3 from 'assets/svg/tier-3.svg';
|
|
import tier4 from 'assets/svg/tier-4.svg';
|
|
import tier5 from 'assets/svg/tier-5.svg';
|
|
import tier6 from 'assets/svg/tier-6.svg';
|
|
import tier7 from 'assets/svg/tier-7.svg';
|
|
import tier8 from 'assets/svg/tier-mod.svg';
|
|
import tier9 from 'assets/svg/tier-staff.svg';
|
|
import tier10 from 'assets/svg/tier-npc.svg';
|
|
|
|
export default {
|
|
props: ['chat', 'groupId', 'groupName', 'inbox'],
|
|
mixins: [styleHelper],
|
|
components: {
|
|
copyAsTodoModal,
|
|
reportFlagModal,
|
|
Avatar,
|
|
},
|
|
directives: {
|
|
markdown: markdownDirective,
|
|
},
|
|
mounted () {
|
|
this.loadProfileCache();
|
|
},
|
|
created () {
|
|
window.addEventListener('scroll', throttle(() => {
|
|
this.loadProfileCache(window.scrollY / 1000);
|
|
}, 1000));
|
|
},
|
|
destroyed () {
|
|
// window.removeEventListener('scroll', this.handleScroll);
|
|
},
|
|
data () {
|
|
return {
|
|
icons: Object.freeze({
|
|
like: likeIcon,
|
|
copy: copyIcon,
|
|
report: reportIcon,
|
|
delete: deleteIcon,
|
|
liked: likedIcon,
|
|
tier1,
|
|
tier2,
|
|
tier3,
|
|
tier4,
|
|
tier5,
|
|
tier6,
|
|
tier7,
|
|
tier8,
|
|
tier9,
|
|
tier10,
|
|
}),
|
|
copyingMessage: {},
|
|
currentDayDividerDisplay: moment().day(),
|
|
cachedProfileData: {},
|
|
currentProfileLoadedCount: 0,
|
|
currentProfileLoadedEnd: 10,
|
|
};
|
|
},
|
|
filters: {
|
|
timeAgo (value) {
|
|
return moment(value).fromNow();
|
|
},
|
|
date (value) {
|
|
// @TODO: Add user preference
|
|
return moment(value).toDate();
|
|
},
|
|
},
|
|
computed: {
|
|
...mapState({user: 'user.data'}),
|
|
messages () {
|
|
return this.chat;
|
|
},
|
|
},
|
|
watch: {
|
|
messages () {
|
|
// @TODO: MAybe we should watch insert and remove?
|
|
this.loadProfileCache();
|
|
},
|
|
},
|
|
methods: {
|
|
canViewFlag (message) {
|
|
if (message.uuid === this.user._id) return true;
|
|
if (message.flagCount === 0) return true;
|
|
return this.user.contributor.admin;
|
|
},
|
|
async loadProfileCache (screenPosition) {
|
|
let promises = [];
|
|
|
|
// @TODO: write an explination
|
|
if (screenPosition && Math.floor(screenPosition) + 1 > this.currentProfileLoadedEnd / 10) {
|
|
this.currentProfileLoadedEnd = 10 * (Math.floor(screenPosition) + 1);
|
|
} else if (screenPosition) {
|
|
return;
|
|
}
|
|
|
|
// @TODO: Not sure we need this hash
|
|
let aboutToCache = {};
|
|
this.messages.forEach(message => {
|
|
let uuid = message.uuid;
|
|
if (uuid && !this.cachedProfileData[uuid] && !aboutToCache[uuid]) {
|
|
if (uuid === 'system' || this.currentProfileLoadedCount === this.currentProfileLoadedEnd) return;
|
|
aboutToCache[uuid] = {};
|
|
promises.push(axios.get(`/api/v3/members/${uuid}`));
|
|
this.currentProfileLoadedCount += 1;
|
|
}
|
|
});
|
|
|
|
let results = await Promise.all(promises);
|
|
results.forEach(result => {
|
|
let userData = result.data.data;
|
|
this.$set(this.cachedProfileData, userData._id, userData);
|
|
});
|
|
},
|
|
displayDivider (message) {
|
|
if (this.currentDayDividerDisplay !== moment(message.timestamp).day()) {
|
|
this.currentDayDividerDisplay = moment(message.timestamp).day();
|
|
return true;
|
|
}
|
|
|
|
return false;
|
|
},
|
|
likeCount (message) {
|
|
if (!message.likes) return 0;
|
|
return Object.keys(message.likes).length;
|
|
},
|
|
async like (messageToLike, index) {
|
|
let message = cloneDeep(messageToLike);
|
|
|
|
await this.$store.dispatch('chat:like', {
|
|
groupId: this.groupId,
|
|
chatId: message.id,
|
|
});
|
|
|
|
if (!message.likes[this.user._id]) {
|
|
message.likes[this.user._id] = true;
|
|
} else {
|
|
message.likes[this.user._id] = !message.likes[this.user._id];
|
|
}
|
|
|
|
this.chat.splice(index, 1, message);
|
|
},
|
|
copyAsTodo (message) {
|
|
this.copyingMessage = message;
|
|
this.$root.$emit('show::modal', 'copyAsTodo');
|
|
},
|
|
async report (message) {
|
|
this.$store.state.flagChatOptions.message = message;
|
|
this.$store.state.flagChatOptions.groupId = this.groupId;
|
|
|
|
this.$root.$emit('show::modal', 'report-flag');
|
|
},
|
|
async remove (message, index) {
|
|
this.chat.splice(index, 1);
|
|
await this.$store.dispatch('chat:deleteChat', {
|
|
groupId: this.groupId,
|
|
chatId: message.id,
|
|
});
|
|
},
|
|
},
|
|
};
|
|
</script>
|