Update db.js

This commit is contained in:
freearhey 2021-02-11 07:16:19 +03:00
parent 0b3d447aee
commit 859cd32f86

View File

@ -28,9 +28,50 @@ db.load = function () {
db.channels = { db.channels = {
list: [], list: [],
filter: null,
add(channel) { add(channel) {
this.list.push(channel) this.list.push(channel)
}, },
get() {
let output
if (this.filter) {
switch (this.filter.field) {
case 'countries':
if (!this.filter.value) {
output = this.list.filter(channel => !channel.countries.length)
} else {
output = this.list.filter(channel =>
channel.countries.map(c => c.code).includes(this.filter.value)
)
}
break
case 'languages':
if (!this.filter.value) {
output = this.list.filter(channel => !channel.languages.length)
} else {
output = this.list.filter(channel =>
channel.countries.map(c => c.code).includes(this.filter.value)
)
}
break
case 'category':
if (!this.filter.value) {
output = this.list.filter(channel => !channel.category)
} else {
output = this.list.filter(
channel => channel.category.toLowerCase() === this.filter.value
)
}
break
}
} else {
output = this.all()
}
this.filter = null
return output
},
all() { all() {
return this.list return this.list
}, },
@ -40,22 +81,31 @@ db.channels = {
return this.list.filter(i => sfwCategories.includes(i.category)) return this.list.filter(i => sfwCategories.includes(i.category))
}, },
forCountry(country) { forCountry(country) {
if (!country.code) return this.list.filter(channel => !channel.countries.length) this.filter = {
field: 'countries',
value: country.code
}
return this.list.filter(channel => channel.countries.map(c => c.code).includes(country.code)) return this
}, },
forLanguage(language) { forLanguage(language) {
if (!language.code) return this.list.filter(channel => !channel.languages.length) this.filter = {
field: 'languages',
value: language.code
}
return this.list.filter(channel => channel.languages.map(c => c.code).includes(language.code)) return this
}, },
forCategory(category) { forCategory(category) {
if (!category.id) return this.list.filter(channel => !channel.category) this.filter = {
field: 'category',
value: category.id
}
return this.list.filter(channel => channel.category.toLowerCase() === category.id) return this
}, },
count() { count() {
return this.list.length return this.get().length
}, },
sortBy(fields) { sortBy(fields) {
this.list = utils.sortBy(this.list, fields) this.list = utils.sortBy(this.list, fields)