mirror of
https://github.com/m1k1o/neko.git
synced 2024-07-24 14:40:50 +12:00
better sorting
This commit is contained in:
parent
6db53d8c48
commit
92f2156eef
@ -106,7 +106,7 @@ export const mutations = mutationTree(state, {
|
||||
if (width >= 600 && height >= 300) {
|
||||
for (const j of Object.keys(rates)) {
|
||||
const rate = rates[j]
|
||||
if (rate >= 15 && rate <= 60) {
|
||||
if (rate === 30 || rate === 60) {
|
||||
data.push({
|
||||
width,
|
||||
height,
|
||||
@ -117,7 +117,14 @@ export const mutations = mutationTree(state, {
|
||||
}
|
||||
}
|
||||
|
||||
state.configurations = data.sort((a, b) => (b.width === a.width ? b.rate - a.rate : b.width - a.width))
|
||||
state.configurations = data.sort((a, b) => {
|
||||
if (b.width === a.width && b.height == a.height) {
|
||||
return b.rate - a.rate
|
||||
} else if (b.width === a.width) {
|
||||
return b.height - a.height
|
||||
}
|
||||
return b.width - a.width
|
||||
})
|
||||
},
|
||||
|
||||
setVolume(state, volume: number) {
|
||||
|
Loading…
Reference in New Issue
Block a user