diff --git a/src/App.vue b/src/App.vue index da62b8a..42bf589 100644 --- a/src/App.vue +++ b/src/App.vue @@ -864,6 +864,13 @@ export default { return right - left; }); break; + case "blue": + result.sort((a, b) => { + let left = (a.video & this.VideoFlag.Active) ? (a.video & this.VideoFlag.NSFW ? 1 : 2) : 0, + right = (b.video & this.VideoFlag.Active) ? (b.video & this.VideoFlag.NSFW ? 1 : 2) : 0; + return right - left; + }); + break; case "status": result.sort((a, b) => { if (a.status === b.status) return 0; @@ -921,6 +928,13 @@ export default { return right - left; }); break; + case "blue": + result.sort((a, b) => { + let left = (a.video & this.VideoFlag.Active) ? (a.video & this.VideoFlag.NSFW ? 1 : 2) : 0, + right = (b.video & this.VideoFlag.Active) ? (b.video & this.VideoFlag.NSFW ? 1 : 2) : 0; + return right - left; + }); + break; case "status": result.sort((a, b) => { if (a.status === b.status) return 0; @@ -5309,15 +5323,20 @@ export default {