Add a filter for media that is missing specific fields

This commit is contained in:
Selfhost Alt 2022-04-17 23:31:39 -07:00
parent 7ef44eb75b
commit 02bf55b401
2 changed files with 25 additions and 1 deletions

View file

@ -107,6 +107,11 @@ export default {
value: 'progress',
sublist: true
},
{
text: 'Missing',
value: 'missing',
sublist: true
},
{
text: 'Issues',
value: 'issues',
@ -200,6 +205,9 @@ export default {
progress() {
return ['Finished', 'In Progress', 'Not Started']
},
missing() {
return ['ASIN', 'ISBN', 'Subtitle', 'Author', 'Publish Year', 'Series', 'Volume Number', 'Description', 'Genres', 'Tags', 'Narrator', 'Publisher', 'Language', ]
},
sublistItems() {
return (this[this.sublist] || []).map((item) => {
if (typeof item === 'string') {