mirror of
				https://github.com/advplyr/audiobookshelf.git
				synced 2025-11-04 03:17:00 -05:00 
			
		
		
		
	
		
			
				
	
	
		
			139 lines
		
	
	
		
			4.3 KiB
		
	
	
	
		
			Vue
		
	
	
	
	
	
			
		
		
	
	
			139 lines
		
	
	
		
			4.3 KiB
		
	
	
	
		
			Vue
		
	
	
	
	
	
<template>
 | 
						|
  <div class="w-full h-full px-4 py-2 mb-4">
 | 
						|
    <div v-if="!showDirectoryPicker" class="w-full h-full py-4">
 | 
						|
      <div class="flex flex-wrap md:flex-nowrap -mx-1">
 | 
						|
        <div class="w-2/5 md:w-72 px-1 py-1 md:py-0">
 | 
						|
          <ui-dropdown v-model="mediaType" :items="mediaTypes" label="Media Type" :disabled="!isNew" small @input="changedMediaType" />
 | 
						|
        </div>
 | 
						|
        <div class="w-full md:flex-grow px-1 py-1 md:py-0">
 | 
						|
          <ui-text-input-with-label v-model="name" label="Library Name" @blur="nameBlurred" />
 | 
						|
        </div>
 | 
						|
        <div class="w-1/5 md:w-18 px-1 py-1 md:py-0">
 | 
						|
          <ui-media-icon-picker v-model="icon" @input="iconChanged" />
 | 
						|
        </div>
 | 
						|
        <div class="w-2/5 md:w-72 px-1 py-1 md:py-0">
 | 
						|
          <ui-dropdown v-model="provider" :items="providers" label="Metadata Provider" small @input="formUpdated" />
 | 
						|
        </div>
 | 
						|
      </div>
 | 
						|
 | 
						|
      <div class="w-full py-4">
 | 
						|
        <p class="px-1 text-sm font-semibold">Folders</p>
 | 
						|
        <div v-for="(folder, index) in folders" :key="index" class="w-full flex items-center py-1 px-2">
 | 
						|
          <span class="material-icons bg-opacity-50 mr-2 text-yellow-200" style="font-size: 1.2rem">folder</span>
 | 
						|
          <ui-editable-text v-model="folder.fullPath" readonly type="text" class="w-full" />
 | 
						|
          <span v-show="folders.length > 1" class="material-icons ml-2 cursor-pointer hover:text-error" @click="removeFolder(folder)">close</span>
 | 
						|
        </div>
 | 
						|
        <div class="flex py-1 px-2 items-center w-full">
 | 
						|
          <span class="material-icons bg-opacity-50 mr-2 text-yellow-200" style="font-size: 1.2rem">folder</span>
 | 
						|
          <ui-editable-text v-model="newFolderPath" placeholder="New folder path" type="text" class="w-full" @blur="newFolderInputBlurred" />
 | 
						|
        </div>
 | 
						|
 | 
						|
        <ui-btn class="w-full mt-2" color="primary" @click="showDirectoryPicker = true">Browse for Folder</ui-btn>
 | 
						|
      </div>
 | 
						|
    </div>
 | 
						|
 | 
						|
    <modals-libraries-folder-chooser v-else :paths="folderPaths" @back="showDirectoryPicker = false" @select="selectFolder" />
 | 
						|
  </div>
 | 
						|
</template>
 | 
						|
 | 
						|
<script>
 | 
						|
export default {
 | 
						|
  props: {
 | 
						|
    isNew: Boolean,
 | 
						|
    library: {
 | 
						|
      type: Object,
 | 
						|
      default: () => null
 | 
						|
    },
 | 
						|
    processing: Boolean
 | 
						|
  },
 | 
						|
  data() {
 | 
						|
    return {
 | 
						|
      name: '',
 | 
						|
      provider: 'google',
 | 
						|
      icon: '',
 | 
						|
      folders: [],
 | 
						|
      showDirectoryPicker: false,
 | 
						|
      newFolderPath: '',
 | 
						|
      mediaType: null,
 | 
						|
      mediaTypes: [
 | 
						|
        {
 | 
						|
          value: 'book',
 | 
						|
          text: 'Books'
 | 
						|
        },
 | 
						|
        {
 | 
						|
          value: 'podcast',
 | 
						|
          text: 'Podcasts'
 | 
						|
        }
 | 
						|
      ]
 | 
						|
    }
 | 
						|
  },
 | 
						|
  computed: {
 | 
						|
    folderPaths() {
 | 
						|
      return this.folders.map((f) => f.fullPath)
 | 
						|
    },
 | 
						|
    providers() {
 | 
						|
      if (this.mediaType === 'podcast') return this.$store.state.scanners.podcastProviders
 | 
						|
      return this.$store.state.scanners.providers
 | 
						|
    }
 | 
						|
  },
 | 
						|
  methods: {
 | 
						|
    getLibraryData() {
 | 
						|
      return {
 | 
						|
        name: this.name,
 | 
						|
        provider: this.provider,
 | 
						|
        folders: this.folders,
 | 
						|
        icon: this.icon,
 | 
						|
        mediaType: this.mediaType
 | 
						|
      }
 | 
						|
    },
 | 
						|
    formUpdated() {
 | 
						|
      this.$emit('update', this.getLibraryData())
 | 
						|
    },
 | 
						|
    newFolderInputBlurred() {
 | 
						|
      if (this.newFolderPath) {
 | 
						|
        this.folders.push({ fullPath: this.newFolderPath })
 | 
						|
        this.newFolderPath = ''
 | 
						|
        this.formUpdated()
 | 
						|
      }
 | 
						|
    },
 | 
						|
    iconChanged() {
 | 
						|
      this.formUpdated()
 | 
						|
    },
 | 
						|
    nameBlurred() {
 | 
						|
      if (this.name !== this.library.name) {
 | 
						|
        this.formUpdated()
 | 
						|
      }
 | 
						|
    },
 | 
						|
    changedMediaType() {
 | 
						|
      this.provider = this.providers[0].value
 | 
						|
      this.formUpdated()
 | 
						|
    },
 | 
						|
    selectFolder(fullPath) {
 | 
						|
      this.folders.push({ fullPath })
 | 
						|
      this.showDirectoryPicker = false
 | 
						|
      this.formUpdated()
 | 
						|
    },
 | 
						|
    removeFolder(folder) {
 | 
						|
      this.folders = this.folders.filter((f) => f.fullPath !== folder.fullPath)
 | 
						|
      this.formUpdated()
 | 
						|
    },
 | 
						|
    backArrowPress() {
 | 
						|
      if (this.showDirectoryPicker) {
 | 
						|
        this.showDirectoryPicker = false
 | 
						|
      }
 | 
						|
    },
 | 
						|
    init() {
 | 
						|
      this.name = this.library ? this.library.name : ''
 | 
						|
      this.provider = this.library ? this.library.provider : 'google'
 | 
						|
      this.folders = this.library ? this.library.folders.map((p) => ({ ...p })) : []
 | 
						|
      this.icon = this.library ? this.library.icon : 'default'
 | 
						|
      this.mediaType = this.library ? this.library.mediaType : 'book'
 | 
						|
      this.showDirectoryPicker = false
 | 
						|
    }
 | 
						|
  },
 | 
						|
  mounted() {
 | 
						|
    this.init()
 | 
						|
  }
 | 
						|
}
 | 
						|
</script>
 |