RecentActivity.vue 3.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169
  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. content="Hide Activity"
  24. v-tippy
  25. >
  26. <i class="material-icons hide-icon"
  27. >visibility_off</i
  28. >
  29. </a>
  30. </div>
  31. </activity-item>
  32. </div>
  33. </div>
  34. <div v-else>
  35. <h3>No recent activity.</h3>
  36. </div>
  37. </div>
  38. </template>
  39. <script>
  40. import { mapState, mapGetters, mapActions } from "vuex";
  41. import Toast from "toasters";
  42. import ws from "../../../ws";
  43. import ActivityItem from "../../../components/ActivityItem.vue";
  44. export default {
  45. components: { ActivityItem },
  46. props: {
  47. userId: {
  48. type: String,
  49. default: ""
  50. }
  51. },
  52. data() {
  53. return {
  54. username: "",
  55. activities: [],
  56. position: 1,
  57. maxPosition: 1,
  58. offsettedFromNextSet: 0,
  59. isGettingSet: false
  60. };
  61. },
  62. computed: {
  63. ...mapState({
  64. ...mapState("modalVisibility", {
  65. modals: state => state.modals.station
  66. }),
  67. myUserId: state => state.user.auth.userId
  68. }),
  69. ...mapGetters({
  70. socket: "websockets/getSocket"
  71. })
  72. },
  73. mounted() {
  74. if (this.myUserId !== this.userId) {
  75. ws.onConnect(() =>
  76. this.socket.dispatch(
  77. "apis.joinRoom",
  78. `profile-${this.userId}-activities`
  79. )
  80. );
  81. this.getUsernameFromId(this.userId).then(res => {
  82. if (res) this.username = res;
  83. });
  84. }
  85. this.socket.dispatch("activities.length", this.userId, length => {
  86. this.maxPosition = Math.ceil(length / 15) + 1;
  87. this.getSet();
  88. });
  89. this.socket.on("event:activity.create", activity => {
  90. this.activities.unshift(activity);
  91. this.offsettedFromNextSet += 1;
  92. });
  93. this.socket.on("event:activity.hide", activityId => {
  94. this.activities = this.activities.filter(
  95. activity => activity._id !== activityId
  96. );
  97. this.offsettedFromNextSet -= 1;
  98. });
  99. this.socket.on("event:activity.removeAllForUser", () => {
  100. this.activities = [];
  101. this.position = 1;
  102. this.maxPosition = 1;
  103. this.offsettedFromNextSet = 0;
  104. });
  105. },
  106. methods: {
  107. hideActivity(activityId) {
  108. this.socket.dispatch("activities.hideActivity", activityId, res => {
  109. if (res.status !== "success")
  110. new Toast({ content: res.message, timeout: 3000 });
  111. });
  112. },
  113. getSet() {
  114. if (this.isGettingSet) return;
  115. if (this.position >= this.maxPosition) return;
  116. this.isGettingSet = true;
  117. this.socket.dispatch(
  118. "activities.getSet",
  119. this.userId,
  120. this.position,
  121. this.offsettedFromNextSet,
  122. res => {
  123. if (res.status === "success") {
  124. this.activities.push(...res.data);
  125. this.position += 1;
  126. }
  127. this.isGettingSet = false;
  128. }
  129. );
  130. },
  131. handleScroll(event) {
  132. const scrollPosition =
  133. event.target.clientHeight + event.target.scrollTop;
  134. const bottomPosition = event.target.scrollHeight;
  135. if (this.loadAllSongs) return false;
  136. if (scrollPosition + 100 >= bottomPosition) this.getSet();
  137. return this.maxPosition === this.position;
  138. },
  139. ...mapActions("user/auth", ["getUsernameFromId"])
  140. }
  141. };
  142. </script>
  143. <style lang="scss" scoped>
  144. #activity-items {
  145. overflow: auto;
  146. min-height: auto;
  147. max-height: 570px;
  148. }
  149. </style>