diff --git a/assets/components/tags/photos.vue b/assets/components/tags/photos.vue index 46f3662f..37d943c8 100644 --- a/assets/components/tags/photos.vue +++ b/assets/components/tags/photos.vue @@ -10,9 +10,11 @@ class="photo-link" > @@ -122,6 +124,7 @@ export default { .poster, .photo { + width: auto; max-height: 15rem; max-width: 100%; box-shadow: 0 0 3px var(--shadow-weak); diff --git a/assets/js/tags/actions.js b/assets/js/tags/actions.js index 69aa0508..7d67df83 100644 --- a/assets/js/tags/actions.js +++ b/assets/js/tags/actions.js @@ -39,6 +39,8 @@ function initTagsActions(store, _router) { thumbnail lazy path + width + height comment entity { id @@ -69,6 +71,8 @@ function initTagsActions(store, _router) { thumbnail lazy path + width + height comment entity { id @@ -160,6 +164,8 @@ function initTagsActions(store, _router) { thumbnail comment lazy + width + height entity { id name diff --git a/seeds/04_media.js b/seeds/04_media.js index 6841e300..0a2969a5 100644 --- a/seeds/04_media.js +++ b/seeds/04_media.js @@ -1,4 +1,7 @@ -// const nanoid = require('nanoid/non-secure'); +const path = require('path'); +const Promise = require('bluebird'); +const sharp = require('sharp'); + const upsert = require('../src/utils/upsert'); const sfw = Object.entries({ @@ -951,13 +954,27 @@ exports.seed = knex => Promise.resolve() [entity.slug]: entity, }), {}); - const { inserted, updated } = await upsert('media', tagMedia.map(media => ({ + const tagMediaWithDimensions = await Promise.map(tagMedia, async (media) => { + const { width, height } = await sharp(path.join('public/img', media.path)).metadata(); // size not available from filepath + + return { + ...media, + width, + height, + }; + }, { + concurrency: 20, + }); + + const { inserted, updated } = await upsert('media', tagMediaWithDimensions.map(media => ({ id: media.id, path: media.path, thumbnail: media.thumbnail, lazy: media.lazy, mime: media.mime, index: media.index, + width: media.width, + height: media.height, comment: media.comment, entity_id: entitiesBySlug[media.entitySlug]?.id, })), 'path', knex);