Fixed books without cover display and added links to book page
This commit is contained in:
@ -3,23 +3,28 @@ import React from "react";
|
||||
import styles from "./BookItem.module.css";
|
||||
|
||||
import { IBook } from "~/types/book";
|
||||
import { Link } from "wouter";
|
||||
|
||||
interface IBookItemProps extends IBook {}
|
||||
|
||||
export const BookItem = ({ author, title, cover }: IBookItemProps) => {
|
||||
export const BookItem = ({ author, title, cover, hash }: IBookItemProps) => {
|
||||
return (
|
||||
<div className={styles.bookCard}>
|
||||
<div className={styles.cardHeading}>
|
||||
<h1>{title}</h1>
|
||||
<h2>{author}</h2>
|
||||
</div>
|
||||
<div className={styles.imageContainer}>
|
||||
<img
|
||||
className={styles.image}
|
||||
src={cover}
|
||||
alt={title + " cover picture"}
|
||||
/>
|
||||
</div>
|
||||
</div>
|
||||
<Link href={hash!}>
|
||||
<a className={styles.bookCard}>
|
||||
<div className={styles.cardHeading}>
|
||||
<h1>{title}</h1>
|
||||
<h2>{author}</h2>
|
||||
</div>
|
||||
{cover && (
|
||||
<div className={styles.imageContainer}>
|
||||
<img
|
||||
className={styles.image}
|
||||
src={cover}
|
||||
alt={title + " cover picture"}
|
||||
/>
|
||||
</div>
|
||||
)}
|
||||
</a>
|
||||
</Link>
|
||||
);
|
||||
};
|
||||
|
Reference in New Issue
Block a user