説明なし

Biography.tsx 3.1KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990
  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. IonItem,
  16. IonIcon
  17. } from '@ionic/react';
  18. import { useParams } from 'react-router';
  19. import React, { useState } from 'react';
  20. import { BioInfo, getMessage } from '../data/BioInfo';
  21. import './Biography.css';
  22. import EnciclopediaPR from '../assets/EnciclopediaPR.png';
  23. import { clipboardOutline } from 'ionicons/icons';
  24. const Biography: React.FC = () => {
  25. const [bioinfo, setMessage] = useState<BioInfo>();
  26. const params = useParams<{ id: string }>();
  27. useIonViewWillEnter(() => {
  28. const msg = getMessage(parseInt(params.id, 10));
  29. setMessage(msg);
  30. });
  31. return (
  32. <IonPage>
  33. <IonHeader>
  34. <IonToolbar className="Header-Color">
  35. <IonGrid fixed={true}>
  36. <IonRow>
  37. <IonCol></IonCol>
  38. <IonCol>
  39. <IonImg style={{ height: 50, width: 100 }} src={EnciclopediaPR} alt='Logo'></IonImg>
  40. <IonTitle>Biografía</IonTitle>
  41. </IonCol>
  42. <IonCol></IonCol>
  43. </IonRow>
  44. </IonGrid>
  45. </IonToolbar>
  46. </IonHeader>
  47. <IonContent fullscreen className="ion-padding">
  48. {bioinfo ? (
  49. <>
  50. <IonItem>
  51. <IonImg style={{ height: 300, width: 600 }} src={bioinfo.photo} alt='Logo'></IonImg>
  52. <p>
  53. <h1>{bioinfo.title}</h1>
  54. {bioinfo.tags}
  55. <p>{bioinfo.birth}</p>
  56. <p>{bioinfo.place}</p>
  57. <p>{bioinfo.death}</p>
  58. </p>
  59. </IonItem>
  60. <p dangerouslySetInnerHTML={{ __html: bioinfo.Text }}></p>
  61. <p>{bioinfo.continue}</p>
  62. <a href={bioinfo.url} target="_blank" rel="noreferrer">For more information press here</a>
  63. <p> </p>
  64. <IonItem routerLink={`/Question/${bioinfo.id}`} detail={true}>
  65. <IonIcon icon={clipboardOutline} />Tomar quiz
  66. </IonItem>
  67. </>
  68. ) : (
  69. <div>Biography not found</div>
  70. )}
  71. </IonContent>
  72. <IonFooter>
  73. <IonToolbar className="Footer-Color">
  74. <div className='Item-Center'>
  75. <IonButtons slot="start">
  76. <IonBackButton defaultHref="/home"></IonBackButton>
  77. </IonButtons>
  78. </div>
  79. </IonToolbar>
  80. </IonFooter>
  81. </IonPage>
  82. );
  83. };
  84. export default Biography;