index.vue 6.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274
  1. <script setup name="Comments">
  2. import { ref, watch, onMounted } from "vue";
  3. import { placeholderPic } from "~/utils/util";
  4. import CommentRow from "./row.vue";
  5. import { useUser } from "~/store/user";
  6. import { ArrowDown } from "@element-plus/icons-vue";
  7. //评论接口
  8. import * as commentApi from "~/api/comment";
  9. const User = useUser();
  10. const currentCommentType = ref("hot"); // hot, new
  11. const total = ref(); // 评论数量
  12. const Props = defineProps({
  13. type: {
  14. //article.文章, info.资讯, video.视频, post.帖子
  15. type: String,
  16. },
  17. id: {
  18. // article.文章, info.资讯, video.视频, post.帖子
  19. type: Number,
  20. },
  21. comment_count: {
  22. type: Number,
  23. },
  24. });
  25. console.log("tupe", Props.type);
  26. const source_type = ref();
  27. if (Props.type == "articles") {
  28. source_type.value = "article";
  29. } else if (Props.type == "video") {
  30. source_type.value = "video";
  31. } else if (Props.type == "info") {
  32. source_type.value = "info";
  33. } else if (Props.type == "post") {
  34. source_type.value = "post";
  35. }
  36. //回复
  37. const textarea = ref();
  38. const replace1 = async () => {
  39. try {
  40. const { data } = await commentApi.collect({
  41. source_type: source_type.value,
  42. source_id: Props.id,
  43. content: textarea.value,
  44. });
  45. textarea.value = "";
  46. __list__(parent_id);
  47. } catch (error) {}
  48. };
  49. //评论列表
  50. let commentList = ref([]);
  51. const __list__ = async () => {
  52. try {
  53. const { data } = await commentApi.list({
  54. source_type: source_type.value,
  55. source_id: Props.id,
  56. order_type: "desc",
  57. order: currentCommentType.value == "hot" ? "like_count" : "id",
  58. });
  59. commentList.value = data.slice(0, 5);
  60. } catch (error) {}
  61. };
  62. const __childList__ = async (parent_id) => {
  63. try {
  64. const { data } = await commentApi.list({
  65. source_type: source_type.value,
  66. source_id: Props.id,
  67. order_type: "desc",
  68. order: currentCommentType.value == "hot" ? "like_count" : "id",
  69. top_parent_id: parent_id,
  70. });
  71. commentList.value.forEach((item) => {
  72. if (item.id == parent_id) {
  73. item.children = data;
  74. }
  75. });
  76. } catch (error) {}
  77. };
  78. const showa = ref(true);
  79. const tomore = async () => {
  80. try {
  81. const { data } = await commentApi.list({
  82. source_type: source_type.value,
  83. source_id: Props.id,
  84. order_type: "desc",
  85. order: currentCommentType.value == "hot" ? "like_count" : "id",
  86. });
  87. commentList.value = data;
  88. showa.value = false;
  89. } catch (error) {}
  90. };
  91. onMounted(__list__);
  92. watch(currentCommentType, () => {
  93. console.log(currentCommentType.value);
  94. });
  95. const end = ref(2);
  96. const childshow = ref(true);
  97. //更多
  98. const childmore = (parent_id, num) => {
  99. end.value = num;
  100. childshow.value = ref(false);
  101. __childList__(parent_id);
  102. };
  103. const change = (type) => {
  104. currentCommentType.value = type;
  105. __list__();
  106. };
  107. //评论列表
  108. </script>
  109. <template>
  110. <div class="comment-container">
  111. <div class="comment-header flex-row flex-aic flex-jc-sb">
  112. <!-- TODO: 标题位置根据类型更改 -->
  113. <div class="total">{{ Props.comment_count }}条评论</div>
  114. <div class="btns">
  115. <el-button
  116. :type="currentCommentType === 'hot' ? 'primary' : ''"
  117. @click="change('hot')"
  118. >最热</el-button
  119. >
  120. <el-button
  121. :type="currentCommentType === 'new' ? 'primary' : ''"
  122. @click="change('new')"
  123. >最新</el-button
  124. >
  125. </div>
  126. </div>
  127. <!-- TODO: 书写评论与登录 -->
  128. <div
  129. style="margin-top: 10px"
  130. class="comment-wrapper flex-row flex-aic flex-jc-sb"
  131. >
  132. <div class="avatar">
  133. <!-- <img class="circle" :src="commentList.user.avatar" alt="" /> -->
  134. </div>
  135. <div class="comment-wrapper__main">
  136. <el-input placeholder="发表一下你的想法吧" v-model="textarea" />
  137. </div>
  138. <div class="comment-wrapper__btn">
  139. <el-button type="primary" @click="replace1">评论</el-button>
  140. </div>
  141. </div>
  142. <!-- TODO: 评论列表 -->
  143. <div class="comment-list">
  144. <dl v-for="(item, idx) in commentList" :key="idx">
  145. <dt>
  146. <CommentRow
  147. :source_type="source_type"
  148. :name="item.user.username"
  149. reply=""
  150. :descs="item.content"
  151. :like_count="item.like_count"
  152. :comment_count="item.comment_count"
  153. :parent_id="item.id"
  154. :source_id="Props.id"
  155. :crateTime="item.created_at"
  156. :is_like="item.is_like"
  157. :avatar="item.user.avatar"
  158. :author_id = "item.author_id"
  159. :user_id = "item.user_id"
  160. @list="__list__"
  161. />
  162. </dt>
  163. <dd v-for="(child, index) in item.children" :key="index">
  164. <CommentRow
  165. :source_type="source_type"
  166. :crateTime="child.created_at"
  167. :reply="child.parent_user.username"
  168. :name="child.user.username"
  169. :descs="child.content"
  170. :like_count="child.like_count"
  171. :comment_count="child.comment_count"
  172. :parent_id="child.id"
  173. :source_id="Props.id"
  174. :is_like="child.is_like"
  175. :avatar="child.user.avatar"
  176. :author_id = "child.author_id"
  177. :user_id = "child.user_id"
  178. @list="__list__"
  179. />
  180. </dd>
  181. <dd v-if="item.children.length <= 2 && item.children.length != 0">
  182. <span
  183. class="comment-list-more"
  184. @click="childmore(item.children[0].parent_id, item.children.length)"
  185. >
  186. 查看全部回复<el-icon>
  187. <ArrowDown></ArrowDown>
  188. </el-icon>
  189. </span>
  190. </dd>
  191. </dl>
  192. </div>
  193. <!-- TODO: see more -->
  194. <div v-if="commentList.length > 2 && showa == true" class="comment-morebox">
  195. <span style="cursor: pointer" @click="tomore">更多评论</span>
  196. </div>
  197. </div>
  198. </template>
  199. <style lang="scss" scoped>
  200. .comment {
  201. &-header {
  202. .total {
  203. font-size: 20px;
  204. font-weight: 600;
  205. color: #222222;
  206. }
  207. }
  208. &-wrapper {
  209. &__main {
  210. width: 0;
  211. margin: 0 10px;
  212. flex: 1;
  213. }
  214. }
  215. &-morebox {
  216. text-align: center;
  217. height: 50px;
  218. line-height: 50px;
  219. background: #f4f4f4;
  220. border-radius: 6px;
  221. span {
  222. font-size: 16px;
  223. font-weight: 400;
  224. color: #444444;
  225. }
  226. }
  227. &-list {
  228. dl {
  229. margin-bottom: 16px;
  230. }
  231. dt {
  232. margin-bottom: 25px;
  233. }
  234. dd {
  235. margin-bottom: 20px;
  236. margin-inline-start: 56px;
  237. }
  238. &-more {
  239. display: inline-block;
  240. line-height: 30px;
  241. font-size: 15px;
  242. font-weight: 400;
  243. padding: 0 10px;
  244. color: #444444;
  245. background: #f4f4f4;
  246. user-select: none;
  247. cursor: pointer;
  248. .el-icon {
  249. vertical-align: middle;
  250. }
  251. }
  252. }
  253. }
  254. </style>