|
|
|
@ -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 */ |
|
|
|
|