Songs.vue 3.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132
  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. songs: [],
  48. modals: { editSong: false },
  49. editing: {
  50. index: 0,
  51. song: {}
  52. },
  53. video: {
  54. player: null,
  55. paused: false,
  56. playerReady: false
  57. }
  58. }
  59. },
  60. computed: {
  61. filteredSongs: function () {
  62. return this.$eval('songs | filterBy searchQuery');
  63. }
  64. },
  65. methods: {
  66. toggleModal: function () {
  67. this.modals.editSong = !this.modals.editSong;
  68. },
  69. edit: function (song, index) {
  70. this.$broadcast('editSong', song, index, 'songs');
  71. },
  72. remove: function (id, index) {
  73. this.socket.emit('songs.remove', id, res => {
  74. if (res.status == 'success') Toast.methods.addToast(res.message, 4000);
  75. else Toast.methods.addToast(res.message, 8000);
  76. });
  77. },
  78. init: function() {
  79. let _this = this;
  80. _this.socket.emit('songs.index', data => {
  81. _this.songs = data;
  82. });
  83. _this.socket.emit('apis.joinAdminRoom', 'songs', data => {});
  84. }
  85. },
  86. ready: function () {
  87. let _this = this;
  88. io.getSocket((socket) => {
  89. _this.socket = socket;
  90. if (_this.socket.connected) {
  91. _this.init();
  92. _this.socket.on('event:admin.song.added', song => {
  93. _this.songs.push(song);
  94. });
  95. _this.socket.on('event:admin.song.removed', songId => {
  96. _this.songs = _this.songs.filter(function(song) {
  97. return song._id !== songId;
  98. });
  99. });
  100. _this.socket.on('event:admin.song.updated', updatedSong => {
  101. for (let i = 0; i < _this.songs.length; i++) {
  102. let song = _this.songs[i];
  103. if (song._id === updatedSong._id) {
  104. _this.songs.$set(i, updatedSong);
  105. }
  106. }
  107. });
  108. }
  109. io.onConnect(() => {
  110. _this.init();
  111. });
  112. });
  113. }
  114. }
  115. </script>
  116. <style lang='scss' scoped>
  117. body { font-family: 'Roboto', sans-serif; }
  118. .song-thumbnail {
  119. display: block;
  120. max-width: 50px;
  121. margin: 0 auto;
  122. }
  123. td { vertical-align: middle; }
  124. .is-primary:focus { background-color: #029ce3 !important; }
  125. </style>