Add edit and delete flight in the frontend

Co-authored-by: shadad00 <shadad@itba.edu.ar>
This commit is contained in:
Santiago Lo Coco 2023-12-04 10:37:30 -03:00
parent 76751ba003
commit 809eef2b02
1 changed files with 15 additions and 0 deletions

View File

@ -24,13 +24,20 @@ interface CardProps {
subscribed: boolean; subscribed: boolean;
refresh: any; refresh: any;
isAirline: boolean; isAirline: boolean;
<<<<<<< HEAD
isAdmin: boolean; isAdmin: boolean;
=======
>>>>>>> 8b9f006 (Add edit and delete flight in the frontend)
refreshFlights: any; refreshFlights: any;
} }
const { Text } = Typography; const { Text } = Typography;
<<<<<<< HEAD
export const Card: React.FC<CardProps> = ({ flight, user, subscribed, refresh, refreshFlights, isAirline, isAdmin }) => { export const Card: React.FC<CardProps> = ({ flight, user, subscribed, refresh, refreshFlights, isAirline, isAdmin }) => {
=======
export const Card: React.FC<CardProps> = ({ flight, user, subscribed, refresh, refreshFlights, isAirline }) => {
>>>>>>> 8b9f006 (Add edit and delete flight in the frontend)
const [modalVisible, setModalVisible] = useState<boolean>(false); const [modalVisible, setModalVisible] = useState<boolean>(false);
const navigate = useNavigate(); const navigate = useNavigate();
@ -158,7 +165,11 @@ export const Card: React.FC<CardProps> = ({ flight, user, subscribed, refresh, r
<Text>{flight.id}</Text> <Text>{flight.id}</Text>
</Space> </Space>
</div> </div>
<<<<<<< HEAD
{!isAirline && !isAdmin ? {!isAirline && !isAdmin ?
=======
{!isAirline ?
>>>>>>> 8b9f006 (Add edit and delete flight in the frontend)
( (
!(subscribed) ? !(subscribed) ?
<Button type="primary" onClick={handleSubscribe}> <Button type="primary" onClick={handleSubscribe}>
@ -171,7 +182,11 @@ export const Card: React.FC<CardProps> = ({ flight, user, subscribed, refresh, r
) )
: :
( (
<<<<<<< HEAD
(user && flight.user_id == user.id) || isAdmin ? (user && flight.user_id == user.id) || isAdmin ?
=======
user && flight.user_id == user.id ?
>>>>>>> 8b9f006 (Add edit and delete flight in the frontend)
<> <>
<Button type="primary" onClick={handleEdit}> <Button type="primary" onClick={handleEdit}>
Edit Edit