mirror of
				https://github.com/advplyr/audiobookshelf.git
				synced 2025-10-31 02:17:01 -04:00 
			
		
		
		
	
		
			
				
	
	
		
			66 lines
		
	
	
		
			1.5 KiB
		
	
	
	
		
			Vue
		
	
	
	
	
	
			
		
		
	
	
			66 lines
		
	
	
		
			1.5 KiB
		
	
	
	
		
			Vue
		
	
	
	
	
	
| <template>
 | |
|   <div class="w-full h-full overflow-y-auto overflow-x-hidden">
 | |
|     <div class="flex mb-4">
 | |
|       <nuxt-link :to="`/audiobook/${audiobook.id}/edit`">
 | |
|         <ui-btn color="primary">Edit Track Order</ui-btn>
 | |
|       </nuxt-link>
 | |
|     </div>
 | |
|     <table class="text-sm tracksTable">
 | |
|       <tr class="font-book">
 | |
|         <th>#</th>
 | |
|         <th class="text-left">Filename</th>
 | |
|         <th class="text-left">Size</th>
 | |
|         <th class="text-left">Duration</th>
 | |
|       </tr>
 | |
|       <template v-for="track in tracks">
 | |
|         <tr :key="track.index">
 | |
|           <td class="text-center">
 | |
|             <p>{{ track.index }}</p>
 | |
|           </td>
 | |
|           <td class="font-book">
 | |
|             {{ track.filename }}
 | |
|           </td>
 | |
|           <td class="font-mono">
 | |
|             {{ $bytesPretty(track.size) }}
 | |
|           </td>
 | |
|           <td class="font-mono">
 | |
|             {{ $secondsToTimestamp(track.duration) }}
 | |
|           </td>
 | |
|         </tr>
 | |
|       </template>
 | |
|     </table>
 | |
|   </div>
 | |
| </template>
 | |
| 
 | |
| <script>
 | |
| export default {
 | |
|   props: {
 | |
|     audiobook: {
 | |
|       type: Object,
 | |
|       default: () => {}
 | |
|     }
 | |
|   },
 | |
|   data() {
 | |
|     return {
 | |
|       tracks: null,
 | |
|       audioFiles: null
 | |
|     }
 | |
|   },
 | |
|   watch: {
 | |
|     audiobook: {
 | |
|       immediate: true,
 | |
|       handler(newVal) {
 | |
|         if (newVal) this.init()
 | |
|       }
 | |
|     }
 | |
|   },
 | |
|   computed: {},
 | |
|   methods: {
 | |
|     init() {
 | |
|       this.audioFiles = this.audiobook.audioFiles
 | |
|       this.tracks = this.audiobook.tracks
 | |
|       console.log('INIT', this.audiobook)
 | |
|     }
 | |
|   }
 | |
| }
 | |
| </script> |