From 0dcb532eaac79e5a3d2f8f633c967c3a7b80788c Mon Sep 17 00:00:00 2001 From: "(quasar) nebula" Date: Thu, 2 Nov 2023 13:38:46 -0300 Subject: thumbs: pass paths through sortByName before printing --- src/gen-thumbs.js | 13 +++++++++++-- 1 file changed, 11 insertions(+), 2 deletions(-) diff --git a/src/gen-thumbs.js b/src/gen-thumbs.js index a61baea..1bbcb9c 100644 --- a/src/gen-thumbs.js +++ b/src/gen-thumbs.js @@ -103,6 +103,7 @@ import dimensionsOf from 'image-size'; import {delay, empty, queue, unique} from '#sugar'; import {CacheableObject} from '#things'; +import {sortByName} from '#wiki-data'; import { colors, @@ -769,7 +770,7 @@ export default async function genThumbs({ export function getExpectedImagePaths(mediaPath, {urls, wikiData}) { const fromRoot = urls.from('media.root'); - return [ + const paths = [ wikiData.albumData .flatMap(album => [ album.hasCoverArt && fromRoot.to('media.albumCover', album.directory, album.coverArtFileExtension), @@ -789,6 +790,10 @@ export function getExpectedImagePaths(mediaPath, {urls, wikiData}) { wikiData.flashData .map(flash => fromRoot.to('media.flashArt', flash.directory, flash.coverArtFileExtension)), ].flat(); + + sortByName(paths, {getName: path => path}); + + return paths; } export function checkMissingMisplacedMediaFiles(expectedImagePaths, extantImagePaths) { @@ -954,7 +959,7 @@ export async function traverseSourceImagePaths(mediaPath, {target}) { throw new Error(`Expected target to be 'verify' or 'generate', got ${target}`); } - return await traverse(mediaPath, { + const paths = await traverse(mediaPath, { pathStyle: (target === 'verify' ? 'posix' : 'device'), prefixPath: '', @@ -984,6 +989,10 @@ export async function traverseSourceImagePaths(mediaPath, {target}) { return true; }, }); + + sortByName(paths, {getName: path => path}); + + return paths; } export function isThumb(file) { -- cgit 1.3.0-6-gf8a5