mirror of
https://github.com/yang991178/fluent-reader.git
synced 2025-03-25 07:50:09 +01:00
32 lines
1.1 KiB
TypeScript
32 lines
1.1 KiB
TypeScript
import * as React from "react"
|
|
import { Card } from "./card"
|
|
import CardInfo from "./info"
|
|
import Highlights from "./highlights"
|
|
import { ViewConfigs } from "../../schema-types"
|
|
|
|
const className = (props: Card.Props) => {
|
|
let cn = ["card", "list-card"]
|
|
if (props.item.hidden) cn.push("hidden")
|
|
return cn.join(" ")
|
|
}
|
|
|
|
const ListCard: React.FunctionComponent<Card.Props> = (props) => (
|
|
<div
|
|
className={className(props)}
|
|
{...Card.bindEventsToProps(props)}
|
|
data-iid={props.item._id}
|
|
data-is-focusable>
|
|
{props.item.thumb && (props.viewConfigs & ViewConfigs.ShowCover) ? (
|
|
<div className="head"><img src={props.item.thumb} /></div>
|
|
) : null}
|
|
<div className="data">
|
|
<CardInfo source={props.source} item={props.item} />
|
|
<h3 className="title"><Highlights text={props.item.title} filter={props.filter} title /></h3>
|
|
{Boolean(props.viewConfigs & ViewConfigs.ShowSnippet) && (
|
|
<p className="snippet"><Highlights text={props.item.snippet} filter={props.filter} /></p>
|
|
)}
|
|
</div>
|
|
</div>
|
|
)
|
|
|
|
export default ListCard |