Files
Cultivation/src/ui/components/mods/ModTile.tsx
2022-07-24 20:12:30 -07:00

78 lines
2.1 KiB
TypeScript

import React from 'react'
import { ModData, PartialModData } from '../../../utils/gamebanana'
import './ModTile.css'
import Like from '../../../resources/icons/like.svg'
import Eye from '../../../resources/icons/eye.svg'
import Download from '../../../resources/icons/download.svg'
import Folder from '../../../resources/icons/folder.svg'
import { shell } from '@tauri-apps/api'
interface IProps {
mod: ModData | PartialModData
path?: string
onClick: (mod: ModData) => void
}
interface IState {
hover: boolean
}
export class ModTile extends React.Component<IProps, IState> {
constructor(props: IProps) {
super(props)
this.state = {
hover: false,
}
}
async openInExplorer() {
if (this.props.path) shell.open(this.props.path)
}
render() {
const { mod } = this.props
return (
<div
className="ModListItem"
onMouseEnter={() => this.setState({ hover: true })}
onMouseLeave={() => this.setState({ hover: false })}
onClick={() => {
// Disable downloading installed mods
if (this.props.path) return this.openInExplorer()
if (!('id' in mod)) return
this.props.onClick(mod)
}}
>
<span className="ModName">{mod.name}</span>
<span className="ModAuthor">{mod.submitter.name}</span>
<div className="ModImage">
{this.state.hover &&
(!this.props.path ? (
<img src={Download} className="ModTileDownload" alt="Download" />
) : (
<img src={Folder} className="ModTileOpen" alt="Open" />
))}
<img
src={mod.images[0]}
className={`${'id' in mod && mod.nsfw ? 'nsfw' : ''} ${this.state.hover ? 'blur' : ''}`}
/>
</div>
<div className="ModInner">
<div className="likes">
<img src={Like} />
<span>{mod.likes.toLocaleString()}</span>
</div>
<div className="views">
<img src={Eye} />
<span>{mod.views.toLocaleString()}</span>
</div>
</div>
</div>
)
}
}