RecentActivity.vue 3.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170
  1. <template>
  2. <div class="content recent-activity-tab">
  3. <div v-if="activities.length > 0">
  4. <h4 class="section-title">Recent activity</h4>
  5. <p class="section-description">
  6. This is a log of all actions
  7. {{ userId === myUserId ? "you have" : `${username} has` }}
  8. taken recently.
  9. </p>
  10. <hr class="section-horizontal-rule" />
  11. <div id="activity-items" @scroll="handleScroll">
  12. <activity-item
  13. class="item activity-item universal-item"
  14. v-for="activity in activities"
  15. :key="activity._id"
  16. :activity="activity"
  17. >
  18. <div slot="actions">
  19. <a
  20. v-if="userId === myUserId"
  21. href="#"
  22. @click.prevent="hideActivity(activity._id)"
  23. >
  24. <i class="material-icons hide-icon"
  25. >visibility_off</i
  26. >
  27. </a>
  28. </div>
  29. </activity-item>
  30. </div>
  31. </div>
  32. <div v-else>
  33. <h3>No recent activity.</h3>
  34. </div>
  35. </div>
  36. </template>
  37. <script>
  38. import { mapState, mapGetters, mapActions } from "vuex";
  39. import Toast from "toasters";
  40. import ws from "../../../ws";
  41. import ActivityItem from "../../../components/ui/ActivityItem.vue";
  42. export default {
  43. components: { ActivityItem },
  44. props: {
  45. userId: {
  46. type: String,
  47. default: ""
  48. }
  49. },
  50. data() {
  51. return {
  52. username: "",
  53. activities: [],
  54. position: 1,
  55. maxPosition: 1,
  56. offsettedFromNextSet: 0,
  57. isGettingSet: false
  58. };
  59. },
  60. computed: {
  61. ...mapState({
  62. ...mapState("modalVisibility", {
  63. modals: state => state.modals.station
  64. }),
  65. myUserId: state => state.user.auth.userId
  66. }),
  67. ...mapGetters({
  68. socket: "websockets/getSocket"
  69. })
  70. },
  71. mounted() {
  72. if (this.myUserId !== this.userId) {
  73. ws.onConnect(() =>
  74. this.socket.dispatch(
  75. "apis.joinRoom",
  76. `profile-${this.userId}-activities`,
  77. res => {
  78. console.log("res of joining activities room", res);
  79. }
  80. )
  81. );
  82. this.getUsernameFromId(this.userId).then(res => {
  83. if (res) this.username = res;
  84. });
  85. }
  86. this.socket.dispatch("activities.length", this.userId, length => {
  87. this.maxPosition = Math.ceil(length / 15) + 1;
  88. this.getSet();
  89. });
  90. this.socket.on("event:activity.create", activity => {
  91. this.activities.unshift(activity);
  92. this.offsettedFromNextSet += 1;
  93. });
  94. this.socket.on("event:activity.hide", activityId => {
  95. this.activities = this.activities.filter(
  96. activity => activity._id !== activityId
  97. );
  98. this.offsettedFromNextSet -= 1;
  99. });
  100. this.socket.on("event:activity.removeAllForUser", () => {
  101. this.activities = [];
  102. this.position = 1;
  103. this.maxPosition = 1;
  104. this.offsettedFromNextSet = 0;
  105. });
  106. },
  107. methods: {
  108. hideActivity(activityId) {
  109. this.socket.dispatch("activities.hideActivity", activityId, res => {
  110. if (res.status !== "success")
  111. new Toast({ content: res.message, timeout: 3000 });
  112. });
  113. },
  114. getSet() {
  115. if (this.isGettingSet) return;
  116. if (this.position >= this.maxPosition) return;
  117. this.isGettingSet = true;
  118. this.socket.dispatch(
  119. "activities.getSet",
  120. this.userId,
  121. this.position,
  122. this.offsettedFromNextSet,
  123. res => {
  124. if (res.status === "success") {
  125. this.activities.push(...res.data);
  126. this.position += 1;
  127. }
  128. this.isGettingSet = false;
  129. }
  130. );
  131. },
  132. handleScroll(event) {
  133. const scrollPosition =
  134. event.target.clientHeight + event.target.scrollTop;
  135. const bottomPosition = event.target.scrollHeight;
  136. if (this.loadAllSongs) return false;
  137. if (scrollPosition + 100 >= bottomPosition) this.getSet();
  138. return this.maxPosition === this.position;
  139. },
  140. ...mapActions("user/auth", ["getUsernameFromId"])
  141. }
  142. };
  143. </script>
  144. <style lang="scss" scoped>
  145. #activity-items {
  146. overflow: auto;
  147. min-height: auto;
  148. max-height: 570px;
  149. }
  150. </style>