ArticleComment.vue 6.4 KB
Newer Older
yma16's avatar
yma16 已提交
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30
/* eslint-disable vue/valid-template-root */
<template>
  <div class="articleCommentsClass">
    <div class="showComment">
      <div class="contentClass">
        <template v-if="contentRes.length">
          <div v-for="(item, key) in contentRes" :key="key">
            <h5>{{ item.user }}({{ item.date }}):</h5>
            <p>{{ item.content }}</p>
          </div>
        </template>
        <template v-else>
          <h5>{{ noneMsg }}</h5>
        </template>
      </div>
    </div>
    <div class="postComment">
      <div style="position: relative; display: flex; width: 100%">
        <el-input
          type="text"
          :rows="2"
          placeholder="填写评论(20字以内)"
          v-model="articleCommit"
          maxlength="20"
        >
        </el-input>
        <el-button
          type="primary"
          style="margin-left: 5px"
          @click="increment(userId, articleId, articleCommit)"
yma16's avatar
yma16 已提交
31
          v-loading="submitLoading"
yma16's avatar
yma16 已提交
32 33 34 35 36 37 38 39 40
          >提交评论</el-button
        >
      </div>
    </div>
  </div>
</template>

<script>
export default {
yma16's avatar
yma16 已提交
41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63
    name: 'ArticleComment',
    props: ['articleId'],
    // props定义则data()无需定义
    data () {
        return {
            submitLoading: false,
            noneMsg: '还没人评论>_<',
            msg: '评论区',
            baseurl: '/api/',
            // baseurl: "http://yongma16.xyz/comment/",
            userImg: '',
            username: '匿名',
            contentRes: [],
            userId: '匿名',
            articleCommit: '',
            childArticleId: ''
        }
    },
    watch: {
        articleId: function (newData) {
            this.childArticleId = newData
            return newData
        }
yma16's avatar
yma16 已提交
64
    },
yma16's avatar
yma16 已提交
65 66 67 68 69 70 71 72 73 74
    mounted () {
        this.childArticleId && this.getComments(this.childArticleId)
    },
    methods: {
        dateToString (dateValue) {
            let timeCreate = new Date(dateValue)
            let year = timeCreate.getFullYear(),
                month = timeCreate.getMonth() + 1,
                day = timeCreate.getDate(),
                hour =
yma16's avatar
yma16 已提交
75
          timeCreate.getHours() > 9
yma16's avatar
yma16 已提交
76 77 78
              ? timeCreate.getHours()
              : '0' + timeCreate.getHours(),
                minute =
yma16's avatar
yma16 已提交
79
          timeCreate.getMinutes() > 9
yma16's avatar
yma16 已提交
80 81 82
              ? timeCreate.getMinutes()
              : '0' + timeCreate.getMinutes(),
                second =
yma16's avatar
yma16 已提交
83
          timeCreate.getSeconds() > 9
yma16's avatar
yma16 已提交
84 85 86 87 88
              ? timeCreate.getSeconds()
              : '0' + timeCreate.getSeconds()
            return (
                year +
        '' +
yma16's avatar
yma16 已提交
89
        month +
yma16's avatar
yma16 已提交
90
        '' +
yma16's avatar
yma16 已提交
91
        day +
yma16's avatar
yma16 已提交
92 93
        '' +
        ' ' +
yma16's avatar
yma16 已提交
94
        hour +
yma16's avatar
yma16 已提交
95
        ':' +
yma16's avatar
yma16 已提交
96
        minute +
yma16's avatar
yma16 已提交
97
        ':' +
yma16's avatar
yma16 已提交
98
        second
yma16's avatar
yma16 已提交
99 100 101 102 103 104
            )
        },
        getComments (articleId) {
            let that = this
            let params = {
                articleId: articleId || that.articleId
yma16's avatar
yma16 已提交
105
            }
yma16's avatar
yma16 已提交
106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180
            this.$axios
                .post(that.baseurl + 'comment/get/', params)
                .then((res) => {
                    try {
                        let resData = res.data
                        that.contentRes = resData.content
                        that.contentRes.map((item) => {
                            item.date = that.dateToString(item.date)
                        })
                    } catch (e) {
                        throw Error(e)
                    }
                })
                .catch((r) => {
                    throw Error(r)
                })
        },
        increment (userId, articleId, content) {
            let that = this
            if (!localStorage.getItem('yma16siteUserInfo')) {
                that.$router
                    .push({
                        path: '/login'
                    })
                    .catch((error) => {
                        throw Error(error)
                    })
            } else {
                if (content === '' || !content) {
                    that.$notify({
                        title: '评论失败!',
                        message: '评论内容不能为空',
                        position: 'top-left'
                    })
                    return false
                }
                that.submitLoading = true
                const userInfo = JSON.parse(localStorage.getItem('yma16siteUserInfo'))
                that.userId = userInfo.username
                let params = {
                    username: that.userId,
                    articleId: articleId,
                    content: content
                }
                this.$axios
                    .post(that.baseurl + 'comment/post/', params)
                    .then((res) => {
                        that.submitLoading = false
                        that.articleCommit = null
                        try {
                            let resData = res.data
                            that.contentRes = resData.content
                            that.contentRes.map((item) => {
                                item.date = that.dateToString(item.date)
                            })
                        } catch (e) {
                            that.submitLoading = false
                            throw Error(e)
                        }
                    })
                    .catch((r) => {
                        that.submitLoading = false
                        that.$router
                            .push({
                                path: '/login'
                            })
                            .catch((error) => {
                                throw Error(error)
                            })
                        throw Error(r)
                    })
            }
        }
    }
}
yma16's avatar
yma16 已提交
181 182 183 184 185 186 187 188 189 190 191 192 193 194 195
</script>

<style scoped>
.articleCommentsClass {
  position: relative;
  widows: 100%;
  height: 100%;
  /* background: burlywood; */
  margin-bottom: 10px;
}

.showComment {
  position: relative;
  width: 100%;
  height: auto;
yma16's avatar
yma16 已提交
196
  box-sizing: border-box;
yma16's avatar
yma16 已提交
197 198 199 200 201 202
  background: rgba(187, 168, 164, 0.8);
}

.contentClass {
  position: relative;
  width: 100%;
yma16's avatar
yma16 已提交
203
  overflow: auto;
yma16's avatar
yma16 已提交
204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228
}

.postComment {
  position: relative;
  width: 100%;
  height: auto;
  line-height: 10px;
  display: flex;
  width: 100%;
  margin-top: 10px;
}

.loginUsernameClass {
  display: block;
  width: 20px;
  /*内联对象需加*/
  word-break: keep-all;
  /* 不换行 */
  white-space: nowrap;
  /* 不换行 */
  overflow: hidden;
  /* 内容超出宽度时隐藏超出部分的内容 */
  text-overflow: ellipsis;
}
</style>