import React, { useEffect, useState } from "react"; import { Link, useNavigate } from "react-router-dom"; import { Avatar, Space, Typography, Tag, Button, Modal } from "antd"; import { RightOutlined, ClockCircleOutlined, SwapOutlined, EnvironmentOutlined, CalendarOutlined } from "@ant-design/icons"; import "./Card.css"; import { getChatId, getSubscription, subscribeToFlight, unsubscribeFromFlight, editFlight } from "../../../Api"; import { Flight, FlightEdit, User } from "../../../Types"; // interface FlightProps { // id: number; // flight_code: string; // status: string; // origin: string; // destination: string; // departure_time: string; // arrival_time: string; // gate: string; // } interface CardProps { flight: Flight; user: User | undefined; subscribed: boolean; refresh: any; isAirline: boolean; isAdmin: boolean; refreshFlights: any; } const { Text } = Typography; export const Card: React.FC = ({ flight, user, subscribed, refresh, refreshFlights, isAirline, isAdmin }) => { const [modalVisible, setModalVisible] = useState(false); const navigate = useNavigate(); const handleSubscribe = async (event: React.FormEvent) => { event.preventDefault(); const token = localStorage.getItem("token"); if (!token || !user) { return; } const data = { user_id: user.id, flight_id: flight.id } console.log(data) subscribeToFlight(data, token) .then(() => { refresh() getChatId(user.id, token) .then(() => {}) .catch((error) => { setModalVisible(true); }) }) .catch((error) => { }); }; const handleEdit = async (event: React.FormEvent) => { event.preventDefault(); navigate(`/edit-flight/${flight.id}`); }; const handleDelete = async (event: React.FormEvent) => { event.preventDefault(); const token = localStorage.getItem("token"); if (!token || !user) { return; } let data: any = { status: "Deleted" } editFlight("" + flight.id, data, token) .then(() => { refreshFlights() }) .catch((error) => { console.log(error) }); }; const handleModalClose = () => { setModalVisible(false); }; const handleUnsubscribe = async (event: React.FormEvent) => { event.preventDefault(); const token = localStorage.getItem("token"); if (!token || !user) { return; } const data = { user_id: user.id, flight_id: flight.id } console.log(data) unsubscribeFromFlight(data, token) .then(() => { refresh() }) .catch((error) => { console.log(error) }); }; console.log(flight.user_id) console.log(user?.id) return (
{flight.flight_code} {flight.origin} {flight.destination}
Status: {flight.status} Departure: {flight.departure_time} Arrival: {flight.arrival_time} Gate: {flight.gate} ID: {flight.id}
{!isAirline && !isAdmin ? ( !(subscribed) ? : ) : ( (user && flight.user_id == user.id) || isAdmin ? <> : <> ) } OK ]} >

To start receiving messages open this link on your smartphone:

{`https://t.me/fids_system_bot?start=${user?.id}`}
); };