/* 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 { Button, createStyles, makeStyles } from '@material-ui/core'; import React, { useState } from 'react'; import CategorySelect from './CategorySelect'; const useStyles = makeStyles(() => createStyles({ root: { display: 'flex', flexDirection: 'row-reverse', '& button': { marginLeft: 10, }, }, })); interface IProps{ manga: IManga } export default function MangaDetails(props: IProps) { const classes = useStyles(); const { manga } = props; const [inLibrary, setInLibrary] = useState( manga.inLibrary ? 'In Library' : 'Not In Library', ); const [categoryDialogOpen, setCategoryDialogOpen] = useState(false); function addToLibrary() { setInLibrary('adding'); fetch(`http://127.0.0.1:4567/api/v1/manga/${manga.id}/library/`).then(() => { setInLibrary('In Library'); }); } function removeFromLibrary() { setInLibrary('removing'); fetch(`http://127.0.0.1:4567/api/v1/manga/${manga.id}/library/`, { method: 'DELETE', mode: 'cors' }).then(() => { setInLibrary('Not In Library'); }); } function handleButtonClick() { if (inLibrary === 'Not In Library') { addToLibrary(); } else { removeFromLibrary(); } } return (

{manga && manga.title}

{inLibrary === 'In Library' && }
); }