calendar and styles fixes
This commit is contained in:
parent
6315a4e7bb
commit
d8720a9eb2
@ -64,7 +64,6 @@
|
|||||||
&__btn {
|
&__btn {
|
||||||
width: 280px;
|
width: 280px;
|
||||||
height: 62px;
|
height: 62px;
|
||||||
box-shadow: 6px 5px 20px rgba(82, 151, 34, 0.21);
|
|
||||||
border-radius: 31px;
|
border-radius: 31px;
|
||||||
background-color: #ffffff;
|
background-color: #ffffff;
|
||||||
background-image: linear-gradient(to top, #6aaf5c 0%, #52b709 100%),
|
background-image: linear-gradient(to top, #6aaf5c 0%, #52b709 100%),
|
||||||
@ -81,6 +80,12 @@
|
|||||||
font-size: 1.6em;
|
font-size: 1.6em;
|
||||||
letter-spacing: normal;
|
letter-spacing: normal;
|
||||||
text-align: center;
|
text-align: center;
|
||||||
|
transition: all 0.3s ease;
|
||||||
|
|
||||||
|
&:hover {
|
||||||
|
box-shadow: 6px 5px 20px rgb(87 98 80 / 21%);
|
||||||
|
transform: scale(1.02);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
&__hours {
|
&__hours {
|
||||||
|
@ -92,6 +92,11 @@
|
|||||||
letter-spacing: normal;
|
letter-spacing: normal;
|
||||||
line-height: normal;
|
line-height: normal;
|
||||||
text-align: center;
|
text-align: center;
|
||||||
|
|
||||||
|
a {
|
||||||
|
text-decoration: none;
|
||||||
|
color: #000000;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@ -263,3 +268,7 @@
|
|||||||
.selected {
|
.selected {
|
||||||
background-color: #f9f9c3 !important;
|
background-color: #f9f9c3 !important;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.block {
|
||||||
|
pointer-events: none;
|
||||||
|
}
|
||||||
|
@ -49,7 +49,7 @@ export const ProfileCalendar = () => {
|
|||||||
}, [month])
|
}, [month])
|
||||||
|
|
||||||
return (
|
return (
|
||||||
<div className='calendar'>
|
<div className='profile__calendar'>
|
||||||
<ProfileHeader/>
|
<ProfileHeader/>
|
||||||
<div className='container'>
|
<div className='container'>
|
||||||
<h2 className='summary__title'>Ваши отчеты</h2>
|
<h2 className='summary__title'>Ваши отчеты</h2>
|
||||||
|
@ -28,23 +28,33 @@ export const ProfileCalendarComponent = ({reportsDates}) => {
|
|||||||
return day.isSame(new Date(), 'day')
|
return day.isSame(new Date(), 'day')
|
||||||
}
|
}
|
||||||
|
|
||||||
|
function correctDay(day) {
|
||||||
|
if (day < 10) {
|
||||||
|
return `0${day}`
|
||||||
|
} return day
|
||||||
|
}
|
||||||
|
|
||||||
function dayStyles(day) {
|
function dayStyles(day) {
|
||||||
if (value < day) return ``
|
if (value < day) return `block`
|
||||||
if (day.day() === 6 || day.day() === 0) return `selected`
|
|
||||||
function correctDay(day) {
|
|
||||||
if (day < 10) {
|
|
||||||
return `0${day}`
|
|
||||||
} return day
|
|
||||||
}
|
|
||||||
for (const date of reportsDates) {
|
for (const date of reportsDates) {
|
||||||
if (`${new Date(day).getFullYear()}-${new Date(day).getMonth() + 1}-${correctDay(new Date(day).getDate())}` === date.date) {
|
if (`${new Date(day).getFullYear()}-${correctDay(new Date(day).getMonth() + 1)}-${correctDay(new Date(day).getDate())}` === date.date) {
|
||||||
return `before`
|
return `before`
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
if (day.day() === 6 || day.day() === 0) return `selected`
|
||||||
if (isToday(day)) return `today`
|
if (isToday(day)) return `today`
|
||||||
return 'pass'
|
return 'pass'
|
||||||
}
|
}
|
||||||
|
|
||||||
|
function correctRoute(day) {
|
||||||
|
for (const date of reportsDates) {
|
||||||
|
if (`${new Date(day).getFullYear()}-${correctDay(new Date(day).getMonth() + 1)}-${correctDay(new Date(day).getDate())}` === date.date) {
|
||||||
|
return `/view/report`
|
||||||
|
}
|
||||||
|
}
|
||||||
|
return '/profile/report'
|
||||||
|
}
|
||||||
|
|
||||||
// function prevMonth() {
|
// function prevMonth() {
|
||||||
// return value.clone().subtract(1, 'month')
|
// return value.clone().subtract(1, 'month')
|
||||||
// }
|
// }
|
||||||
@ -85,7 +95,6 @@ export const ProfileCalendarComponent = ({reportsDates}) => {
|
|||||||
<div className='calendar-component__form'>
|
<div className='calendar-component__form'>
|
||||||
{calendar.map((week) =>
|
{calendar.map((week) =>
|
||||||
week.map((day) => (
|
week.map((day) => (
|
||||||
<Link to='/profile/report' key={day}>
|
|
||||||
<button
|
<button
|
||||||
onClick={() => {
|
onClick={() => {
|
||||||
dispatch(setReportDate(day))
|
dispatch(setReportDate(day))
|
||||||
@ -95,10 +104,11 @@ export const ProfileCalendarComponent = ({reportsDates}) => {
|
|||||||
name={day.format('dddd')}
|
name={day.format('dddd')}
|
||||||
id='btn'
|
id='btn'
|
||||||
>
|
>
|
||||||
<img className={'calendar__icon'} src={calendarIcon} alt='' />
|
<Link to={() => correctRoute(day)}>
|
||||||
{currentMonthAndDay(day)}
|
<img className={'calendar__icon'} src={calendarIcon} alt='' />
|
||||||
|
{currentMonthAndDay(day)}
|
||||||
|
</Link>
|
||||||
</button>
|
</button>
|
||||||
</Link>
|
|
||||||
))
|
))
|
||||||
)}
|
)}
|
||||||
</div>
|
</div>
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
.calendar {
|
.profile__calendar {
|
||||||
background: #F1F1F1;
|
background: #F1F1F1;
|
||||||
height: 100%;
|
height: 100%;
|
||||||
min-height: 100vh;
|
min-height: 100vh;
|
||||||
|
@ -61,7 +61,7 @@ const ReportForm = () => {
|
|||||||
<div>
|
<div>
|
||||||
<div className='report__head'>
|
<div className='report__head'>
|
||||||
<Link className='calendar__back' to={`/profile/profilecalendar`}>
|
<Link className='calendar__back' to={`/profile/profilecalendar`}>
|
||||||
<div><img src={arrow} alt=''/>Вернуться</div>
|
<img src={arrow} alt=''/><p>Вернуться</p>
|
||||||
</Link>
|
</Link>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
@ -22,6 +22,24 @@
|
|||||||
|
|
||||||
.report__head {
|
.report__head {
|
||||||
margin-top: 20px;
|
margin-top: 20px;
|
||||||
|
|
||||||
|
a {
|
||||||
|
display: flex;
|
||||||
|
align-items: center;
|
||||||
|
grid-column-gap: 30px;
|
||||||
|
column-gap: 30px;
|
||||||
|
margin-top: 20px;
|
||||||
|
cursor: pointer;
|
||||||
|
text-decoration: none;
|
||||||
|
|
||||||
|
p {
|
||||||
|
margin-bottom: 0;
|
||||||
|
font-size: 14px;
|
||||||
|
line-height: 32px;
|
||||||
|
font-weight: 500;
|
||||||
|
color: black;
|
||||||
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
&__block-title {
|
&__block-title {
|
||||||
|
Loading…
Reference in New Issue
Block a user