/* * Copyright (C) Contributors to the Suwayomi project * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this * file, You can obtain one at https://mozilla.org/MPL/2.0/. */ import React from 'react'; import makeStyles from '@mui/styles/makeStyles'; import Card from '@mui/material/Card'; import CardContent from '@mui/material/CardContent'; import { useHistory } from 'react-router-dom'; import SearchIcon from '@mui/icons-material/Search'; import Button from '@mui/material/Button'; import IconButton from '@mui/material/IconButton'; import FiberNewOutlinedIcon from '@mui/icons-material/FiberNewOutlined'; import Avatar from '@mui/material/Avatar'; import Typography from '@mui/material/Typography'; import useLocalStorage from 'util/useLocalStorage'; import { langCodeToName } from 'util/language'; const useStyles = makeStyles((theme) => ({ root: { display: 'flex', justifyContent: 'space-between', alignItems: 'center', padding: 16, }, bullet: { display: 'inline-block', margin: '0 2px', transform: 'scale(0.8)', }, title: { fontSize: 14, }, pos: { marginBottom: 12, }, icon: { width: theme.spacing(7), height: theme.spacing(7), flex: '0 0 auto', marginRight: 16, }, card: { margin: '10px', '&:hover': { backgroundColor: theme.palette.action.hover, transition: 'background-color 100ms cubic-bezier(0.4, 0, 0.2, 1) 0ms', }, '&:active': { backgroundColor: theme.palette.action.selected, transition: 'background-color 100ms cubic-bezier(0.4, 0, 0.2, 1) 0ms', }, }, showMobile: { display: 'flex', [theme.breakpoints.up('sm')]: { display: 'none', }, }, showBigger: { display: 'flex', [theme.breakpoints.down('sm')]: { display: 'none', }, }, })); interface IProps { source: ISource } export default function SourceCard(props: IProps) { const { source: { id, name, lang, iconUrl, supportsLatest, }, } = props; const history = useHistory(); const [serverAddress] = useLocalStorage('serverBaseURL', ''); const [useCache] = useLocalStorage('useCache', true); const classes = useStyles(); const redirectTo = (e: any, to: string) => { history.push(to); // prevent parent tags from getting the event e.stopPropagation(); }; return ( redirectTo(e, `/sources/${id}/popular/`)} >
{name} {id !== '0' && ( {langCodeToName(lang)} )}
redirectTo(e, `/sources/${id}/search/`)} size="large" edge="end" > {supportsLatest && ( redirectTo(e, `/sources/${id}/latest/`)} size="large" > )}
{supportsLatest && ( )}
); }