1
0
Fork 0
mirror of https://github.com/pawelmalak/flame.git synced 2025-07-24 21:39:36 +02:00

Bookmarks Form

This commit is contained in:
unknown 2021-05-24 11:51:05 +02:00
parent 4e89e4c568
commit 38edb76929
5 changed files with 189 additions and 8 deletions

View file

@ -1,4 +1,4 @@
import { useEffect } from 'react';
import { useEffect, useState } from 'react';
import { Link } from 'react-router-dom';
import { connect } from 'react-redux';
import { getCategories } from '../../store/actions';
@ -12,6 +12,8 @@ import ActionButton from '../UI/Buttons/ActionButton/ActionButton';
import BookmarkGrid from './BookmarkGrid/BookmarkGrid';
import { Category, GlobalState } from '../../interfaces';
import Spinner from '../UI/Spinner/Spinner';
import Modal from '../UI/Modal/Modal';
import BookmarkForm from './BookmarkForm/BookmarkForm';
interface ComponentProps {
loading: boolean;
@ -19,15 +21,45 @@ interface ComponentProps {
getCategories: () => void;
}
export enum FormContentType {
category,
bookmark
}
const Bookmarks = (props: ComponentProps): JSX.Element => {
const [modalIsOpen, setModalIsOpen] = useState(false);
const [formContentType, setFormContentType] = useState(FormContentType.category);
useEffect(() => {
if (props.categories.length === 0) {
props.getCategories();
}
}, [props.getCategories])
const toggleModal = (): void => {
setModalIsOpen(!modalIsOpen);
}
const addActionHandler = (contentType: FormContentType) => {
setFormContentType(contentType);
toggleModal();
}
return (
<Container>
<Modal isOpen={modalIsOpen} setIsOpen={toggleModal}>
{formContentType === FormContentType.category
? <BookmarkForm
modalHandler={toggleModal}
contentType={FormContentType.category}
/>
: <BookmarkForm
modalHandler={toggleModal}
contentType={FormContentType.bookmark}
/>
}
</Modal>
<Headline
title='All Bookmarks'
subtitle={(<Link to='/'>Go back</Link>)}
@ -35,11 +67,21 @@ const Bookmarks = (props: ComponentProps): JSX.Element => {
<div className={classes.ActionsContainer}>
<ActionButton
name='Add'
name='Add Category'
icon='mdiPlusBox'
handler={() => addActionHandler(FormContentType.category)}
/>
<ActionButton
name='Edit'
name='Add Bookmark'
icon='mdiPlusBox'
handler={() => addActionHandler(FormContentType.bookmark)}
/>
<ActionButton
name='Edit Categories'
icon='mdiPencil'
/>
<ActionButton
name='Edit Bookmarks'
icon='mdiPencil'
/>
</div>