Songs.vue 3.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146
  1. <template>
  2. <div class='container'>
  3. <input type='text' class='input' v-model='searchQuery' placeholder='Search for Songs'>
  4. <br /><br />
  5. <table class='table is-striped'>
  6. <thead>
  7. <tr>
  8. <td>Thumbnail</td>
  9. <td>Title</td>
  10. <td>YouTube ID</td>
  11. <td>Artists</td>
  12. <td>Genres</td>
  13. <td>Requested By</td>
  14. <td>Options</td>
  15. </tr>
  16. </thead>
  17. <tbody>
  18. <tr v-for='(index, song) in filteredSongs' track-by='$index'>
  19. <td>
  20. <img class='song-thumbnail' :src='song.thumbnail' onerror="this.src='/assets/notes-transparent.png'">
  21. </td>
  22. <td>
  23. <strong>{{ song.title }}</strong>
  24. </td>
  25. <td>{{ song._id }}</td>
  26. <td>{{ song.artists.join(', ') }}</td>
  27. <td>{{ song.genres.join(', ') }}</td>
  28. <td>{{ song.requestedBy }}</td>
  29. <td>
  30. <button class='button is-primary' @click='edit(song, index)'>Edit</button>
  31. <button class='button is-danger' @click='remove(song._id, index)'>Remove</button>
  32. </td>
  33. </tr>
  34. </tbody>
  35. </table>
  36. </div>
  37. <edit-song v-show='modals.editSong'></edit-song>
  38. </template>
  39. <script>
  40. import { Toast } from 'vue-roaster';
  41. import EditSong from '../Modals/EditSong.vue';
  42. import io from '../../io';
  43. export default {
  44. components: { EditSong },
  45. data() {
  46. return {
  47. position: 1,
  48. maxPosition: 1,
  49. songs: [],
  50. searchQuery: '',
  51. modals: { editSong: false },
  52. editing: {
  53. index: 0,
  54. song: {}
  55. },
  56. video: {
  57. player: null,
  58. paused: false,
  59. playerReady: false
  60. }
  61. }
  62. },
  63. computed: {
  64. filteredSongs: function () {
  65. return this.$eval('songs | filterBy searchQuery');
  66. }
  67. },
  68. methods: {
  69. toggleModal: function () {
  70. this.modals.editSong = !this.modals.editSong;
  71. },
  72. edit: function (song, index) {
  73. this.$broadcast('editSong', song, index, 'songs');
  74. },
  75. remove: function (id) {
  76. this.socket.emit('songs.remove', id, res => {
  77. if (res.status == 'success') Toast.methods.addToast(res.message, 4000);
  78. else Toast.methods.addToast(res.message, 8000);
  79. });
  80. },
  81. getSet: function () {
  82. let _this = this;
  83. _this.socket.emit('songs.getSet', _this.position, data => {
  84. data.forEach(song => {
  85. _this.songs.push(song);
  86. });
  87. _this.position = _this.position + 1;
  88. if (_this.maxPosition > _this.position - 1) _this.getSet();
  89. });
  90. },
  91. init: function () {
  92. let _this = this;
  93. _this.socket.emit('songs.length', length => {
  94. _this.maxPosition = Math.round(length / 15);
  95. _this.getSet();
  96. });
  97. _this.socket.emit('apis.joinAdminRoom', 'songs', () => {});
  98. }
  99. },
  100. ready: function () {
  101. let _this = this;
  102. io.getSocket((socket) => {
  103. _this.socket = socket;
  104. if (_this.socket.connected) {
  105. _this.init();
  106. _this.socket.on('event:admin.song.added', song => {
  107. _this.songs.push(song);
  108. });
  109. _this.socket.on('event:admin.song.removed', songId => {
  110. _this.songs = _this.songs.filter(function(song) {
  111. return song._id !== songId;
  112. });
  113. });
  114. _this.socket.on('event:admin.song.updated', updatedSong => {
  115. for (let i = 0; i < _this.songs.length; i++) {
  116. let song = _this.songs[i];
  117. if (song._id === updatedSong._id) {
  118. _this.songs.$set(i, updatedSong);
  119. }
  120. }
  121. });
  122. }
  123. io.onConnect(() => {
  124. _this.init();
  125. });
  126. });
  127. }
  128. }
  129. </script>
  130. <style lang='scss' scoped>
  131. body { font-family: 'Roboto', sans-serif; }
  132. .song-thumbnail {
  133. display: block;
  134. max-width: 50px;
  135. margin: 0 auto;
  136. }
  137. td { vertical-align: middle; }
  138. .is-primary:focus { background-color: #029ce3 !important; }
  139. </style>