fix communication between question and selecte question cards
This commit is contained in:
@@ -16,7 +16,7 @@ export const QuestionCard: FC<Props> = ({ title, onAddQuestion, onRemoveQuestion
|
||||
setButtonState({
|
||||
bg: 'bg-red-700', label: 'Remover', method: handleRemoveQuestion
|
||||
})
|
||||
onAddQuestion(title)
|
||||
onAddQuestion(title, handleRemoveQuestion)
|
||||
}
|
||||
|
||||
const handleRemoveQuestion = () => {
|
||||
|
||||
@@ -1,6 +1,5 @@
|
||||
import React, { FC } from 'react';
|
||||
import { FaTrash } from 'react-icons/fa';
|
||||
import { Link } from 'react-router-dom';
|
||||
|
||||
type Props = {
|
||||
label: string
|
||||
@@ -18,7 +17,7 @@ export const SelectedQuestionCard: FC<Props> = ({ label, id, onRemoveQuestion })
|
||||
<div className="flex flex-col relative flex-grow justify-center">
|
||||
<button className="group-hover:block absolute bg-gray-300 hover:bg-primary-normal text-gray-500 hover:text-gray-100 hover:shadow-lg rounded-full p-2 cursor-pointer shadow-inner transition-all duration-500"
|
||||
style={{ left: '-1.5rem' }}
|
||||
onClick={() => onRemoveQuestion(id)}>
|
||||
onClick={() => onRemoveQuestion()}>
|
||||
<FaTrash />
|
||||
</button>
|
||||
</div>
|
||||
|
||||
@@ -1,13 +1,14 @@
|
||||
import React, { FC, PropsWithChildren } from "react";
|
||||
import React, { FC, } from "react";
|
||||
import { SideBar } from "./SideBar";
|
||||
import { SelectedQuestionCard } from "./SelectedQuestionCard";
|
||||
|
||||
type Props = {
|
||||
questions: {id: string, label: string}[],
|
||||
onRemoveQuestion: Function
|
||||
questions: {
|
||||
id: string, label: string, removeHandler: Function
|
||||
}[]
|
||||
}
|
||||
|
||||
export const SelectedQuestionsSideBar: FC<Props> = ({ questions, onRemoveQuestion }) => {
|
||||
export const SelectedQuestionsSideBar: FC<Props> = ({ questions }) => {
|
||||
return (
|
||||
<SideBar>
|
||||
<h1>Questões Selecionadas</h1>
|
||||
@@ -16,7 +17,7 @@ export const SelectedQuestionsSideBar: FC<Props> = ({ questions, onRemoveQuestio
|
||||
{questions.length ?
|
||||
questions.map(q => <SelectedQuestionCard
|
||||
key={q.id} id={q.id} label={q.label}
|
||||
onRemoveQuestion={onRemoveQuestion}/>) :
|
||||
onRemoveQuestion={q.removeHandler}/>) :
|
||||
<h2 className="text-gray-700 mt-3">
|
||||
Nenhuma questão selecionada
|
||||
</h2>
|
||||
|
||||
Reference in New Issue
Block a user