From aeb8ed6ef03d8063a84396b1e0d65f01c7d20520 Mon Sep 17 00:00:00 2001 From: Paul-Louis NECH Date: Mon, 14 Jun 2021 21:52:50 +0200 Subject: [PATCH] feat: Modulated Links --- TODO.md | 2 -- lib/utils.js | 39 +++++++++++++++++++++++++++++++++++---- package.json | 1 + pages/index.js | 6 +++--- pages/photos/[id].js | 52 ++++++++++++++++++++++++++++++++++++++++++++++++++++ yarn.lock | 14 ++++++++++++++ 6 files changed, 105 insertions(+), 9 deletions(-) diff --git a/TODO.md b/TODO.md index 59863b6..0dd03fe 100644 --- a/TODO.md +++ b/TODO.md @@ -1,5 +1,3 @@ -# FEAT -- Pages detail # FIX - Support MOV (e.g. GABRIEL.mov) - Placeholder fleurs diff --git a/lib/utils.js b/lib/utils.js index 0bb14db..9521d1d 100644 --- a/lib/utils.js +++ b/lib/utils.js @@ -1,5 +1,6 @@ import path from "path"; import fs from "fs"; +const sizeOf = require('image-size') function getContentDirectory(name) { return path.join(process.cwd(), "public", name); @@ -11,23 +12,53 @@ function photoPath(fileName) { return "/" + photoDir + "/" + fileName; } +function photoDimensions(fileName) { + return sizeOf("public/" + fileName); +} + function getAllPhotos() { const contentDirectory = getContentDirectory(photoDir); const fileNames = fs.readdirSync(contentDirectory); console.log(`gACD: total pictures: ${fileNames.length}`); return fileNames.map((f, i) => { - return { - id: i + 1, // Photos are 1-indexed + let id = i+1; // Photos are 1-indexed + let photo = { + id: id, path: photoPath(f), + dimensions: photoDimensions(photoPath(f)), + prev: getPrevID(id), + next: getNextID(id) }; + console.log(`Photo ${photo.id} -> ${photo.prev} -> X -> ${photo.next}`); + return photo; }); } function getPhotoById(id) { const contentDirectory = getContentDirectory(photoDir); const fileNames = fs.readdirSync(contentDirectory); - return { id: id, path: photoPath(fileNames[id - 1]) }; // Photos are 1-indexed + const path = photoPath(fileNames[id - 1]); + return { id: id, + path: path, + dimensions: photoDimensions(path), + prev: getPrevID(id), + next: getNextID(id) + }; // Photos are 1-indexed +} + +function getNextID(id) { + const contentDirectory = getContentDirectory(photoDir); + const count = fs.readdirSync(contentDirectory).length; + return (id % count)+1; } -export { getAllPhotos, getPhotoById }; +function getPrevID(id) { + const contentDirectory = getContentDirectory(photoDir); + const count = fs.readdirSync(contentDirectory).length; + return ((id+count-2) % count)+1; +} + + + +export { getAllPhotos, getPhotoById, getNextID, getPrevID }; diff --git a/package.json b/package.json index a169d62..d1f056d 100644 --- a/package.json +++ b/package.json @@ -13,6 +13,7 @@ "@emotion/react": "^11.4.0", "@emotion/styled": "^11.3.0", "framer-motion": "^4.1.17", + "image-size": "^1.0.0", "next": "10.2.3", "next-images": "^1.7.0", "react": "17.0.2", diff --git a/pages/index.js b/pages/index.js index 5a587de..4ad043e 100644 --- a/pages/index.js +++ b/pages/index.js @@ -43,17 +43,17 @@ export default function Home({ data }) { Philippe Bureau - Galerie Photo - + {photos.map((photo) => ( {/* 1000 || pic.dimensions.heigth > 1000) { + pic.dimensions.width = pic.dimensions.width / 2; + pic.dimensions.heigth = pic.dimensions.heigth / 2; + console.log("Resized: ", pic.dimensions.width, pic.dimensions.height); +>>>>>>> 54109d5 (feat: Modulated Links) } return { props: { @@ -67,6 +78,7 @@ export default function Photos({ photo, placeholder }) { +<<<<<<< HEAD @@ -84,12 +96,44 @@ export default function Photos({ photo, placeholder }) { loading="eager" /> +======= + + + + + + + +
+ +>>>>>>> 54109d5 (feat: Modulated Links)
+<<<<<<< HEAD +======= + +>>>>>>> 54109d5 (feat: Modulated Links) diff --git a/yarn.lock b/yarn.lock index 70a393f..27fe753 100644 --- a/yarn.lock +++ b/yarn.lock @@ -1752,6 +1752,13 @@ ieee754@^1.1.4: resolved "https://registry.yarnpkg.com/ieee754/-/ieee754-1.2.1.tgz#8eb7a10a63fff25d15a57b001586d177d1b0d352" integrity sha512-dcyqhDvX1C46lXZcVqCpK+FtMRQVdIMN6/Df5js2zouUsqG7I6sFxitIC+7KYK29KdXOLHdu9zL4sFnoVQnqaA== +image-size@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/image-size/-/image-size-1.0.0.tgz#58b31fe4743b1cec0a0ac26f5c914d3c5b2f0750" + integrity sha512-JLJ6OwBfO1KcA+TvJT+v8gbE6iWbj24LyDNFgFEN0lzegn6cC6a/p3NIDaepMsJjQjlUWqIC7wJv8lBFxPNjcw== + dependencies: + queue "6.0.2" + import-fresh@^3.1.0: version "3.3.0" resolved "https://registry.yarnpkg.com/import-fresh/-/import-fresh-3.3.0.tgz#37162c25fcb9ebaa2e6e53d5b4d88ce17d9e0c2b" @@ -2421,6 +2428,13 @@ querystring@^0.2.0: resolved "https://registry.yarnpkg.com/querystring/-/querystring-0.2.1.tgz#40d77615bb09d16902a85c3e38aa8b5ed761c2dd" integrity sha512-wkvS7mL/JMugcup3/rMitHmd9ecIGd2lhFhK9N3UUQ450h66d1r3Y9nvXzQAW1Lq+wyx61k/1pfKS5KuKiyEbg== +queue@6.0.2: + version "6.0.2" + resolved "https://registry.yarnpkg.com/queue/-/queue-6.0.2.tgz#b91525283e2315c7553d2efa18d83e76432fed65" + integrity sha512-iHZWu+q3IdFZFX36ro/lKBkSvfkztY5Y7HMiPlOUjhupPcG2JMfst2KKEpu5XndviX/3UhFbRngUPNKtgvtZiA== + dependencies: + inherits "~2.0.3" + randombytes@^2.0.0, randombytes@^2.0.1, randombytes@^2.0.5: version "2.1.0" resolved "https://registry.yarnpkg.com/randombytes/-/randombytes-2.1.0.tgz#df6f84372f0270dc65cdf6291349ab7a473d4f2a" -- libgit2 0.27.0