Няма описание

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374
  1. import {
  2. IonPage,
  3. IonContent,
  4. IonHeader,
  5. IonTitle,
  6. IonToolbar,
  7. IonFooter,
  8. IonImg,
  9. IonGrid,
  10. IonRow,
  11. IonCol,
  12. IonButtons,
  13. IonBackButton,
  14. useIonViewWillEnter
  15. } from '@ionic/react';
  16. import { useParams } from 'react-router';
  17. import React, { useState } from 'react';
  18. import './Capsule.css';
  19. import { CapsuleInfo, getCapsule} from '../data/CapsuleInfo';
  20. import EnciclopediaPR from '../assets/EnciclopediaPR.png';
  21. const Capsule: React.FC = () => {
  22. const [capinfo, setCapsule] = useState<CapsuleInfo>();
  23. const params = useParams<{ id: string }>();
  24. useIonViewWillEnter(() => {
  25. const capsule = getCapsule(parseInt(params.id, 10));
  26. setCapsule(capsule);
  27. });
  28. return (
  29. <IonPage>
  30. <IonHeader>
  31. <IonToolbar className="Header-Color">
  32. <IonGrid fixed={true}>
  33. <IonRow>
  34. <IonCol></IonCol>
  35. <IonCol>
  36. <IonImg style={{ height: 50, width: 100 }} src={EnciclopediaPR} alt='Logo'></IonImg>
  37. <IonTitle>Cápsula</IonTitle>
  38. </IonCol>
  39. <IonCol></IonCol>
  40. </IonRow>
  41. </IonGrid>
  42. </IonToolbar>
  43. </IonHeader>
  44. <IonContent fullscreen className="ion-padding">
  45. {capinfo ? (
  46. <>
  47. <IonImg style={{ height: 300, width: 600 }} src={capinfo.photo} alt='Logo'></IonImg>
  48. <h1>{capinfo.title}</h1>
  49. <p>{capinfo.content}</p>
  50. </>
  51. ) : (
  52. <div>Capsule not found</div>
  53. )}
  54. </IonContent>
  55. <IonFooter>
  56. <IonToolbar className="Footer-Color">
  57. <div className='Item-Center'>
  58. <IonButtons slot="start">
  59. <IonBackButton defaultHref="/ListCapsules"></IonBackButton>
  60. </IonButtons>
  61. </div>
  62. </IonToolbar>
  63. </IonFooter>
  64. </IonPage>
  65. );
  66. };
  67. export default Capsule;