mirror of
https://github.com/advplyr/audiobookshelf.git
synced 2025-07-02 13:34:53 +02:00
Add start of library scan scheduling and cron expression builder
This commit is contained in:
parent
01333b6401
commit
9a57fcad40
4 changed files with 255 additions and 3 deletions
|
@ -47,6 +47,11 @@ export default {
|
|||
title: 'Settings',
|
||||
component: 'modals-libraries-library-settings'
|
||||
}
|
||||
// {
|
||||
// id: 'schedule',
|
||||
// title: 'Schedule',
|
||||
// component: 'modals-libraries-schedule-scan'
|
||||
// }
|
||||
],
|
||||
libraryCopy: null
|
||||
}
|
||||
|
@ -84,6 +89,7 @@ export default {
|
|||
},
|
||||
updateLibrary(library) {
|
||||
this.mapLibraryToCopy(library)
|
||||
console.log('Updated library', this.libraryCopy)
|
||||
},
|
||||
getNewLibraryData() {
|
||||
return {
|
||||
|
@ -93,9 +99,11 @@ export default {
|
|||
icon: 'database',
|
||||
mediaType: 'book',
|
||||
settings: {
|
||||
coverAspectRatio: this.$constants.BookCoverAspectRatio.SQUARE,
|
||||
disableWatcher: false,
|
||||
skipMatchingMediaWithAsin: false,
|
||||
skipMatchingMediaWithIsbn: false
|
||||
skipMatchingMediaWithIsbn: false,
|
||||
autoScanCronExpression: null
|
||||
}
|
||||
}
|
||||
},
|
||||
|
@ -112,7 +120,9 @@ export default {
|
|||
if (key === 'folders') {
|
||||
this.libraryCopy.folders = library.folders.map((f) => ({ ...f }))
|
||||
} else if (key === 'settings') {
|
||||
this.libraryCopy.settings = { ...library.settings }
|
||||
for (const settingKey in library.settings) {
|
||||
this.libraryCopy.settings[settingKey] = library.settings[settingKey]
|
||||
}
|
||||
} else {
|
||||
this.libraryCopy[key] = library[key]
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue