1
0
mirror of https://github.com/PanJiaChen/vue-element-admin.git synced 2025-08-10 12:01:57 +08:00
Elsio Sanchez f4541271e9
Support Notes (#837)
* Support for notes in mobile and desktop mode

* resolve observations

Co-authored-by: elsiosanchez <elsiossanches@gmail.com>
2021-05-12 18:29:57 -04:00

138 lines
3.5 KiB
Vue

<!--
ADempiere-Vue (Frontend) for ADempiere ERP & CRM Smart Business Solution
Copyright (C) 2017-Present E.R.P. Consultores y Asociados, C.A.
Contributor(s): Elsio Sanchez elsiosanches@gmail.com www.erpya.com
This program is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation, either version 3 of the License, or
(at your option) any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with this program. If not, see <https:www.gnu.org/licenses/>.
-->
<template>
<div>
<el-card
v-if="!isEmptyValue(chatEntryList)"
style="padding-left: 0px !important"
>
<el-scrollbar wrap-class="chat-scroll-mobile">
<el-timeline>
<el-timeline-item
v-for="(chats, key) in chatEntryList"
:key="key"
icon="el-icon-postcard"
:timestamp="translateDate(chats.logDate)"
placement="top"
>
<el-card shadow="always" style="border: 2px solid #d2e1ffd6;">
<div v-markdown="chats.characterData" style="padding-top: 2%; padding-bottom: 2%" />
</el-card>
</el-timeline-item>
</el-timeline>
</el-scrollbar>
</el-card>
<div v-else>
<p>
{{ $t('data.emptyNote') }}
</p>
</div>
</div>
</template>
<script>
export default {
name: 'ListChatEntry',
computed: {
chatEntryList() {
const commentLogs = this.$store.getters.getChatEntries
if (this.isEmptyValue(commentLogs)) {
return []
}
// commentLogs.sort((a, b) => {
// const c = new Date(a.logDate)
// const d = new Date(b.logDate)
// return c - d
// })
return commentLogs
},
language() {
return this.$store.getters.language
}
},
methods: {
translateDate(value) {
return this.$d(new Date(value), 'long', this.language)
}
}
}
</script>
<style lang="scss">
.chat-entries-list-card {
// small title of the card
.el-card__header {
max-height: 35px !important;
padding: 10px 20px !important;
}
// brings the card space closer to the timerline
.el-card__body {
padding-left: 0px !important;
}
.el-timeline-item__content {
.el-card {
// remove the right spacing so that it does not overlap with the scroll
margin-right: 20px !important;
// removes excessive card content space from chat logs
.el-card__body {
padding-left: 20px !important;
padding-top: 0px !important;
padding-bottom: 0px !important;
}
}
}
}
.chat-entry-create-card {
// small title of the card
.el-card__header {
max-height: 35px !important;
padding: 10px 20px !important;
}
}
.el-card__body {
padding: 0px;
height: 100%;
}
.chat-scroll-mobile {
max-height: 60vh !important;
}
.chat-scroll-panel-right {
max-height: 50vh !important;
padding-bottom: 10% !important;
}
.el-timeline-item__icon {
color: #1890ff;
font-size: 19px;
background: white;
}
.el-timeline {
margin: 0;
font-size: 14px;
padding-left: 5%;
list-style: none;
}
.el-timeline-item__timestamp {
color: #55575b;
line-height: 1;
font-size: 13px;
}
</style>