Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

refactor: boards page #156

Merged
merged 1 commit into from
May 11, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/deploy_backend.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ name: Deploy backend

on:
push:
branches: [main]
branches: [ main ]

jobs:
build:
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ interface AddCardProps {
defaultOpen?: boolean;
}

const AddCardOrComments = React.memo<AddCardProps>(
const AddCardOrComment = React.memo<AddCardProps>(
({
isUpdate,
colId,
Expand Down Expand Up @@ -196,4 +196,4 @@ const AddCardOrComments = React.memo<AddCardProps>(
);
}
);
export default AddCardOrComments;
export default AddCardOrComment;
207 changes: 207 additions & 0 deletions frontend/components/Board/Card/AddCard.tsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,207 @@
import * as z from "zod";
import React, { useState } from "react";
import { FormProvider, useForm } from "react-hook-form";
import { zodResolver } from "@hookform/resolvers/zod";
import { styled } from "../../../stitches.config";
import { CardToAdd } from "../../../types/card/card";
import AddCardDto from "../../../types/card/addCard.dto";
import Button from "../../Primitives/Button";
import Flex from "../../Primitives/Flex";
import useCards from "../../../hooks/useCards";
import TextArea from "../../Primitives/TextArea";
import CrossIcon from "../../icons/CrossIcon";
import CheckIcon from "../../icons/Check";
import PlusIcon from "../../icons/PlusIcon";
import UpdateCardDto from "../../../types/card/updateCard.dto";
import useComments from "../../../hooks/useComments";
import AddCommentDto from "../../../types/comment/addComment.dto";
import UpdateCommentDto from "../../../types/comment/updateComment.dto";

const ActionButton = styled(Button, {});

const StyledForm = styled("form", Flex, { width: "100%" });

interface AddCardProps {
isUpdate: boolean;
isCard: boolean;
colId: string;
boardId: string;
socketId: string;
cardId?: string;
cardItemId?: string;
cardText?: string;
commentId?: string;
cancelUpdate?: () => void;
defaultOpen?: boolean;
}

const AddCard = React.memo<AddCardProps>(
({
isUpdate,
colId,
boardId,
socketId,
cardId,
cardItemId,
cardText,
cancelUpdate,
isCard,
commentId,
defaultOpen,
}) => {
const { addCardInColumn, updateCard } = useCards();
const { addCommentInCard, updateComment } = useComments();
const [isOpen, setIsOpen] = useState(!!isUpdate || !!cancelUpdate || defaultOpen);

const methods = useForm<{ text: string }>({
mode: "onSubmit",
reValidateMode: "onChange",
defaultValues: {
text: cardText || "",
},
resolver: zodResolver(z.object({ text: z.string().min(1) })),
});

const handleAddCard = (text: string) => {
const newCard: CardToAdd = {
items: [
{
text: text.trim(),
votes: [],
comments: [],
},
],
text: text.trim(),
votes: [],
comments: [],
};
const changes: AddCardDto = {
colIdToAdd: colId,
boardId,
card: newCard,
socketId,
};

addCardInColumn.mutate(changes);
methods.reset({ text: "" });
};

const handleUpdateCard = (text: string) => {
if (!cardId || !cancelUpdate) return;
const cardUpdated: UpdateCardDto = {
cardId,
cardItemId: cardItemId ?? "",
text,
boardId,
socketId,
isCardGroup: !cardItemId,
};

updateCard.mutate(cardUpdated);
cancelUpdate();
};

const handleAddComment = (text: string) => {
if (!cardId || !cancelUpdate) return;
const commentDto: AddCommentDto = {
cardId,
cardItemId,
text,
boardId,
socketId,
isCardGroup: !cardItemId,
};

addCommentInCard.mutate(commentDto);
cancelUpdate();
};

const handleUpdateComment = (text: string) => {
if (!cardId || !cancelUpdate || !commentId) return;
const updateCommentDto: UpdateCommentDto = {
cardId,
cardItemId,
text,
boardId,
socketId,
isCardGroup: !cardItemId,
commentId,
};

updateComment.mutate(updateCommentDto);
cancelUpdate();
};

const handleClear = () => {
if ((isUpdate || !isCard) && cancelUpdate) {
cancelUpdate();
return;
}

methods.reset({ text: "" });
setIsOpen(false);
};

if (!isOpen)
return (
<ActionButton css={{ display: "flex" }} onClick={() => setIsOpen(true)}>
<PlusIcon size="16" css={{ size: "$12", color: "white" }} />
Add new card
</ActionButton>
);

return (
<StyledForm
direction="column"
align="center"
justify="center"
gap="8"
tabIndex={0}
onSubmit={methods.handleSubmit(({ text }) => {
if (isCard) {
if (!isUpdate) {
handleAddCard(text);
return;
}
handleUpdateCard(text);
}
if (!isCard) {
if (!isUpdate) {
handleAddComment(text);
return;
}
handleUpdateComment(text);
}
})}
>
<FormProvider {...methods}>
<TextArea
id="text"
// variant={!isEmpty(cardText) ? default : undefined} }
floatPlaceholder={false}
placeholder="Write your comment here..."
/>
<Flex justify="end" gap="4" css={{ width: "100%" }}>
<ActionButton
size="sm"
css={{ width: "$48", height: "$36" }}
variant={!isUpdate && isCard ? "lightOutline" : "primaryOutline"}
onClick={handleClear}
>
<CrossIcon size="16" />
</ActionButton>
<ActionButton
css={{ width: "$48", height: "$36" }}
size="sm"
type="submit"
variant="primary"
>
<CheckIcon />
</ActionButton>
</Flex>
</FormProvider>
</StyledForm>
);
}
);
export default AddCard;
Loading