ArticleComment.vue 5.3 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 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47
/* 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)"
          >提交评论</el-button
        >
      </div>
    </div>
  </div>
</template>

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

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

.showComment {
  position: relative;
  width: 100%;
  height: auto;
  background: rgba(187, 168, 164, 0.8);
}

.contentClass {
  position: relative;
  width: 100%;
  margin: 10px;
  padding: 5px;
}

.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>