mirror of
https://github.com/AmruthPillai/Reactive-Resume.git
synced 2025-11-24 21:51:34 +10:00
54 lines
1.6 KiB
JavaScript
54 lines
1.6 KiB
JavaScript
import React, { memo, useContext } from 'react';
|
|
import { useTranslation } from 'react-i18next';
|
|
import ReactMarkdown from 'react-markdown';
|
|
import PageContext from '../../../contexts/PageContext';
|
|
import { formatDateRange, safetyCheck } from '../../../utils';
|
|
|
|
const EducationItem = ({ item, i18n }) => (
|
|
<div>
|
|
<div className="flex justify-between items-center">
|
|
<div className="flex flex-col text-left mr-2">
|
|
<h6 className="font-semibold">{item.institution}</h6>
|
|
<span className="text-xs">
|
|
<strong>{item.degree}</strong> {item.field}
|
|
</span>
|
|
</div>
|
|
<div className="flex flex-col items-end text-right">
|
|
{item.startDate && (
|
|
<h6 className="text-xs font-medium mb-1">
|
|
(
|
|
{formatDateRange({
|
|
startDate: item.startDate,
|
|
endDate: item.endDate,
|
|
language: i18n.language,
|
|
})}
|
|
)
|
|
</h6>
|
|
)}
|
|
<span className="text-sm font-medium">{item.gpa}</span>
|
|
</div>
|
|
</div>
|
|
{item.summary && (
|
|
<ReactMarkdown className="markdown mt-2 text-sm" source={item.summary} />
|
|
)}
|
|
</div>
|
|
);
|
|
|
|
const EducationA = () => {
|
|
const { i18n } = useTranslation();
|
|
const { data, heading: Heading } = useContext(PageContext);
|
|
|
|
return safetyCheck(data.education) ? (
|
|
<div>
|
|
<Heading>{data.education.heading}</Heading>
|
|
<div className="grid gap-4">
|
|
{data.education.items.map((x) => (
|
|
<EducationItem key={x.id} item={x} i18n={i18n} />
|
|
))}
|
|
</div>
|
|
</div>
|
|
) : null;
|
|
};
|
|
|
|
export default memo(EducationA);
|