Event Description Showing Correctly

master
Pedram Keshavarzi 3 years ago
parent bf4d7a1ec7
commit a5ca336e39
  1. 31
      src/components/Calendar/CalendarComponents/components/DaysList.js
  2. 2
      src/components/Calendar/index.js

@ -255,28 +255,45 @@ const DaysList = ({
isOnActiveSlide,
isStandard,
});
const specialDate = (sDay, sMonth, sYear) => {
for (var i = 0; i < events.length; i++) {
if (sDay == events[i].day && sMonth == events[i].month && sYear == events[i].year) {
return (sDay, sMonth, sYear);
}
}
};
const logEachDateDes = (sDay, sMonth, sYear) =>{
return events.map((e) =>{
if (sDay == e.day && sMonth == e.month && sYear == e.year) {
return <p key={'description' + e.id}>{e.description}</p>
}
})
}
const showEventDescription = (sDay , sMonth, sYear) => {
for (var i = 0; i < events.length; i++) {
if (sDay == events[i].day && sMonth == events[i].month && sYear == events[i].year) {
return(events[i].description);
}
}
}
return (
<div
style={{
@ -289,10 +306,10 @@ const DaysList = ({
className={`Calendar__day -${isRtl ? 'rtl' : 'ltr'} ${additionalClass}`}
onClick={() => {
handleDayPress({ ...dayItem, isDisabled });
console.log(specialDate(day));
console.log(showEventDescription(day))
showEvent(showEventDescription(day, month, year))
console.log(month)
// console.log(specialDate(day));
// console.log(showEventDescription(day))
// showEvent(showEventDescription(day, month, year))
showEvent(logEachDateDes(day, month, year))
}}
onKeyDown={({ key }) => {
/* istanbul ignore else */

@ -53,7 +53,7 @@ const eventsList = [
date: "2022-01-12T00:00:00.000Z",
categoryId: 1,
year: 1400,
month: 11,
month: 10,
day: 3
},
{

Loading…
Cancel
Save