From 83b06a8176a75e93a77b2e1a7433466bf4baa6a3 Mon Sep 17 00:00:00 2001 From: Aaron Yarborough <3855819+AaronJY@users.noreply.github.com> Date: Sun, 30 Mar 2025 17:38:28 +0100 Subject: [PATCH] feat: add ratings to book list --- package-lock.json | 10 +++++----- package.json | 2 +- src/components/BookListItem/BookListItem.jsx | 15 +++++++++++++-- .../BookListItem/BookListItem.module.css | 15 +++++++++++++++ 4 files changed, 34 insertions(+), 8 deletions(-) diff --git a/package-lock.json b/package-lock.json index 34e215c..3ad2f0c 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,12 +1,12 @@ { "name": "www-aaronjy-me", - "version": "1.7.0.0", + "version": "1.7.3.0", "lockfileVersion": 3, "requires": true, "packages": { "": { "name": "www-aaronjy-me", - "version": "1.7.0.0", + "version": "1.7.3.0", "dependencies": { "@highlightjs/cdn-assets": "^11.11.1", "date-fns": "^4.1.0", @@ -9193,9 +9193,9 @@ } }, "node_modules/caniuse-lite": { - "version": "1.0.30001667", - "resolved": "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001667.tgz", - "integrity": "sha512-7LTwJjcRkzKFmtqGsibMeuXmvFDfZq/nzIjnmgCGzKKRVzjD72selLDK1oPF/Oxzmt4fNcPvTDvGqSDG4tCALw==", + "version": "1.0.30001707", + "resolved": "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001707.tgz", + "integrity": "sha512-3qtRjw/HQSMlDWf+X79N206fepf4SOOU6SQLMaq/0KkZLmSjPxAkBOQQ+FxbHKfHmYLZFfdWsO3KA90ceHPSnw==", "funding": [ { "type": "opencollective", diff --git a/package.json b/package.json index ebeaf1d..a9299ee 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "www-aaronjy-me", - "version": "1.7.2.3", + "version": "1.7.3.0", "private": true, "type": "module", "scripts": { diff --git a/src/components/BookListItem/BookListItem.jsx b/src/components/BookListItem/BookListItem.jsx index cb38036..be56715 100644 --- a/src/components/BookListItem/BookListItem.jsx +++ b/src/components/BookListItem/BookListItem.jsx @@ -9,7 +9,8 @@ export default function BookListItem ({ href, title, author, stars, readDate, ur className={style.thumb} style={{ backgroundImage: `url(${thumbnailUrl ?? '/img/book-placeholder.jpg'})` }} - /> + >
 {stars}
+

@@ -17,8 +18,18 @@ export default function BookListItem ({ href, title, author, stars, readDate, ur

{author}

{tags}

- {/*

{stars}/5

*/}
) } + +function Star () { + return ( + + + ) +} diff --git a/src/components/BookListItem/BookListItem.module.css b/src/components/BookListItem/BookListItem.module.css index a845fe8..e5ad8d3 100644 --- a/src/components/BookListItem/BookListItem.module.css +++ b/src/components/BookListItem/BookListItem.module.css @@ -23,4 +23,19 @@ background-repeat: no-repeat; background-size: cover; border-radius: 6px; + position: relative; +} + +.rating { + position: absolute; + right: 0.5rem; + bottom: 0.5rem; + background-color: var(--lt-color-gray-900); + padding: 0.25rem 0.5rem; + color: var(--lt-color-gray-100); + border-radius: 0.25rem; + display: flex; + flex-direction: row; + align-items: center; + pointer-events: none; } \ No newline at end of file