Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Contribute to GitLab
Sign in
Toggle navigation
P
planner-team-one
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
21
Issues
21
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Евгений Положенцев
planner-team-one
Commits
91e2ce16
Commit
91e2ce16
authored
Nov 12, 2022
by
Ermolaev Timur
Browse files
Options
Browse Files
Download
Plain Diff
Merge branch 'task-35-enhance/optimize-code' into 'development'
Task 35 enhance/optimize code See merge request
!20
parents
f89b7a3f
f5e10dd8
Show whitespace changes
Inline
Side-by-side
Showing
11 changed files
with
258 additions
and
200 deletions
+258
-200
CalendarRow.js
...c/components/MonthCalendarBody/CalendarRow/CalendarRow.js
+2
-1
CalendarSmallCell.js
.../MonthCalendarBody/CalendarSmallCell/CalendarSmallCell.js
+2
-1
CalendarStandartCell.js
...endarBody/CalendarStandartCell.js/CalendarStandartCell.js
+7
-4
CalendarTask.js
...components/MonthCalendarBody/CalendarTask/CalendarTask.js
+5
-12
MonthCalendarBody.js
...ont/src/components/MonthCalendarBody/MonthCalendarBody.js
+5
-60
MonthAndYearInfo.js
.../MonthCalendarHeader/MonthAndYearInfo/MonthAndYearInfo.js
+40
-0
MonthDecrementButton.js
...hAndYearInfo/MonthDecrementButton/MonthDecrementButton.js
+27
-0
MonthIncrementButton.js
...hAndYearInfo/MonthIncrementButton/MonthIncrementButton.js
+27
-0
MonthCalendarHeader.js
...src/components/MonthCalendarHeader/MonthCalendarHeader.js
+27
-77
СustomSelect.js
planner-front/src/components/UI/СustomSelect/СustomSelect.js
+36
-0
MonthCalendar.js
planner-front/src/containers/MonthCalendar/MonthCalendar.js
+80
-45
No files found.
planner-front/src/components/MonthCalendarBody/CalendarRow/CalendarRow.js
View file @
91e2ce16
import
{
Grid
}
from
"@mui/material"
;
import
{
Grid
}
from
"@mui/material"
;
import
{
memo
}
from
"react"
;
const
CalendarRow
=
({
children
})
=>
{
const
CalendarRow
=
({
children
})
=>
{
return
<>
return
<>
...
@@ -12,6 +13,6 @@ const CalendarRow = ({children}) => {
...
@@ -12,6 +13,6 @@ const CalendarRow = ({children}) => {
<
/
>
<
/
>
};
};
export
default
CalendarRow
;
export
default
memo
(
CalendarRow
)
;
planner-front/src/components/MonthCalendarBody/CalendarSmallCell/CalendarSmallCell.js
View file @
91e2ce16
import
{
Grid
}
from
"@mui/material"
;
import
{
Grid
}
from
"@mui/material"
;
import
{
memo
}
from
"react"
;
const
CalendarSmallCell
=
({
children
,
xs
})
=>
{
const
CalendarSmallCell
=
({
children
,
xs
})
=>
{
return
<>
return
<>
...
@@ -8,4 +9,4 @@ const CalendarSmallCell = ({children, xs}) => {
...
@@ -8,4 +9,4 @@ const CalendarSmallCell = ({children, xs}) => {
<
/
>
<
/
>
};
};
export
default
CalendarSmallCell
;
export
default
memo
(
CalendarSmallCell
);
\ No newline at end of file
\ No newline at end of file
planner-front/src/components/MonthCalendarBody/CalendarStandartCell.js/CalendarStandartCell.js
View file @
91e2ce16
import
{
Grid
,
TextField
,
Typography
}
from
"@mui/material"
;
import
{
Grid
,
TextField
,
Typography
}
from
"@mui/material"
;
import
{
useEffect
,
useState
}
from
"react"
;
import
{
memo
,
useEffect
,
useState
}
from
"react"
;
const
CalendarStandartCell
=
({
children
,
xs
,
currentTask
,
hours
,
dayNumber
,
createTaskInCellHandler
,
handleOpen
,
modal
})
=>
{
const
CalendarStandartCell
=
({
children
,
xs
,
hours
,
dayNumber
,
createTaskInCellHandler
,
handleOpen
,
modal
})
=>
{
const
[
isThisCell
,
setIsThisCell
]
=
useState
(
false
)
const
[
isThisCell
,
setIsThisCell
]
=
useState
(
false
)
useEffect
(()
=>
{
useEffect
(()
=>
{
if
(
!
modal
)
{
if
(
!
modal
)
{
...
@@ -19,11 +19,14 @@ const CalendarStandartCell = ({children, xs, currentTask, hours, dayNumber, cre
...
@@ -19,11 +19,14 @@ const CalendarStandartCell = ({children, xs, currentTask, hours, dayNumber, cre
sx
=
{{
backgroundColor
:
'lightgreen'
,
padding
:
'10px'
,
whiteSpace
:
'nowrap'
,
overflow
:
'hidden'
,
textOverflow
:
'ellipsis'
}}
sx
=
{{
backgroundColor
:
'lightgreen'
,
padding
:
'10px'
,
whiteSpace
:
'nowrap'
,
overflow
:
'hidden'
,
textOverflow
:
'ellipsis'
}}
>
>
<
span
>
<
span
>
{
currentTask
.
title
}
Задача
<
/span
>
<
/span
>
<
/Grid> : null
}
<
/Grid> : null
}
<
/Grid
>
<
/Grid
>
<
/
>
<
/
>
};
};
export
default
CalendarStandartCell
;
export
default
memo
(
CalendarStandartCell
,
(
prevProps
,
nextProps
)
=>
{
\ No newline at end of file
if
(
!
prevProps
.
modal
)
return
false
if
(
nextProps
.
modal
)
return
true
});
\ No newline at end of file
planner-front/src/components/MonthCalendarBody/CalendarTask/CalendarTask.js
View file @
91e2ce16
import
{
Grid
,
TextField
,
Typography
}
from
"@mui/material"
;
import
{
Grid
,
TextField
,
Typography
}
from
"@mui/material"
;
import
React
,
{
useEffect
,
useState
}
from
"react"
;
import
React
,
{
memo
,
useState
,
useEffect
}
from
"react"
;
const
CalendarTask
=
({
year
,
month
,
tasks
,
day
,
hours
,
setCurrentTask
,
hourFormat
,
handleOpen
,
currentTask
})
=>
{
const
CalendarTask
=
({
year
,
month
,
tasks
,
day
,
hours
,
setCurrentTask
,
hourFormat
,
handleOpen
,
currentTask
})
=>
{
const
[
thisCellCurrentTask
,
setThisCellCurrentTask
]
=
useState
({})
const
[
thisCellCurrentTask
,
setThisCellCurrentTask
]
=
useState
({})
...
@@ -34,13 +34,6 @@ const CalendarTask = ({year, month, tasks, day, hours, setCurrentTask, hourForma
...
@@ -34,13 +34,6 @@ const CalendarTask = ({year, month, tasks, day, hours, setCurrentTask, hourForma
}
}
},
[
currentTask
])
},
[
currentTask
])
const
renderText
=
(
i
,
task
)
=>
{
if
(
thisCellCurrentTask
&&
i
===
thisCellCurrentTask
.
i
)
{
return
(
<>
{
currentTask
.
title
}
<
/>
)
}
else
{
return
(
<>
{
task
.
title
}
<
/>
)
}
}
return
(
<>
return
(
<>
{
tasksCell
.
length
?
tasksCell
.
map
((
task
,
i
)
=>
{
tasksCell
.
length
?
tasksCell
.
map
((
task
,
i
)
=>
...
@@ -49,9 +42,9 @@ const CalendarTask = ({year, month, tasks, day, hours, setCurrentTask, hourForma
...
@@ -49,9 +42,9 @@ const CalendarTask = ({year, month, tasks, day, hours, setCurrentTask, hourForma
<
Grid
<
Grid
key
=
{
task
.
id
}
key
=
{
task
.
id
}
sx
=
{{
backgroundColor
:
'lightgreen'
,
whiteSpace
:
'nowrap'
,
overflow
:
'hidden'
,
textOverflow
:
'ellipsis'
,
padding
:
'10px'
,
borderBottom
:
'1px solid rgb(29, 161, 51);;'
}}
sx
=
{{
backgroundColor
:
'lightgreen'
,
whiteSpace
:
'nowrap'
,
overflow
:
'hidden'
,
textOverflow
:
'ellipsis'
,
padding
:
'10px'
,
borderBottom
:
'1px solid rgb(29, 161, 51);;'
}}
onClick
=
{(
e
)
=>
{
e
.
stopPropagation
();
setCurrentTask
(
task
);
handleOpen
(
e
)
;
setThisCellCurrentTask
({...
task
,
i
:
i
})
}}
onClick
=
{(
e
)
=>
{
e
.
stopPropagation
();
setCurrentTask
(
task
);
handleOpen
(
e
)}}
>
>
{
renderText
(
i
,
task
)
}
{
task
.
title
}
<
/Grid
>
<
/Grid
>
)}
)}
)
)
...
@@ -59,4 +52,4 @@ const CalendarTask = ({year, month, tasks, day, hours, setCurrentTask, hourForma
...
@@ -59,4 +52,4 @@ const CalendarTask = ({year, month, tasks, day, hours, setCurrentTask, hourForma
<
/>
)
<
/>
)
};
};
export
default
CalendarTask
;
export
default
memo
(
CalendarTask
);
\ No newline at end of file
\ No newline at end of file
planner-front/src/components/MonthCalendarBody/MonthCalendarBody.js
View file @
91e2ce16
import
{
FormControlLabel
,
Switch
}
from
"@mui/material"
;
import
{
FormControlLabel
,
Switch
}
from
"@mui/material"
;
import
{
useEffect
,
useState
}
from
"react"
;
import
{
memo
,
useEffect
,
useState
}
from
"react"
;
import
CalendarRow
from
"./CalendarRow/CalendarRow"
;
import
CalendarRow
from
"./CalendarRow/CalendarRow"
;
import
CalendarSmallCell
from
"./CalendarSmallCell/CalendarSmallCell"
;
import
CalendarSmallCell
from
"./CalendarSmallCell/CalendarSmallCell"
;
import
CalendarStandartCell
from
"./CalendarStandartCell.js/CalendarStandartCell"
;
import
CalendarStandartCell
from
"./CalendarStandartCell.js/CalendarStandartCell"
;
...
@@ -7,11 +7,8 @@ import CalendarTask from "./CalendarTask/CalendarTask";
...
@@ -7,11 +7,8 @@ import CalendarTask from "./CalendarTask/CalendarTask";
import
ModalTask
from
"../UI/ModalTask/ModalTask"
;
import
ModalTask
from
"../UI/ModalTask/ModalTask"
;
import
MonthCalendarModalContent
from
"../MonthCalendarModalContent/MonthCalendarModalContent"
;
import
MonthCalendarModalContent
from
"../MonthCalendarModalContent/MonthCalendarModalContent"
;
function
MonthCalendarBody
({
month
,
year
,
tasks
,
createTaskInCellHandler
,
currentTask
,
setCurrentTask
,
hourFormat
,
setHourFormat
,
onChangeCurrentTaskHandler
,
sendNewTaskHandler
,
deleteTaskHandler
})
{
function
MonthCalendarBody
({
month
,
year
,
tasks
,
createTaskInCellHandler
,
currentTask
,
setCurrentTask
,
hourFormat
,
setHourFormat
,
onChangeCurrentTaskHandler
,
sendNewTaskHandler
,
deleteTaskHandler
,
cellSizes
,
hoursInDay
,
daysInMonth
})
{
const
[
hoursInDay
,
setHoursInDay
]
=
useState
([
'8:00'
,
'10:00'
,
'12:00'
,
'14:00'
,
'16:00'
,
'18:00'
,
'20:00'
,
'22:00'
])
const
[
daysInMonth
,
setDaysInMonth
]
=
useState
([])
const
[
cellSizes
,
setCellSizes
]
=
useState
({})
const
[
modal
,
setModal
]
=
useState
({
open
:
false
,
y
:
0
,
x
:
0
,});
const
[
modal
,
setModal
]
=
useState
({
open
:
false
,
y
:
0
,
x
:
0
,});
const
handleOpen
=
(
e
)
=>
{
const
handleOpen
=
(
e
)
=>
{
setModal
(
{
setModal
(
{
...
@@ -30,58 +27,6 @@ function MonthCalendarBody({month, year, tasks, createTaskInCellHandler, current
...
@@ -30,58 +27,6 @@ function MonthCalendarBody({month, year, tasks, createTaskInCellHandler, current
};
};
useEffect
(()
=>
{
const
cells
=
hoursInDay
.
length
const
xs
=
10.8
/
cells
setCellSizes
(()
=>
{
return
{
smallCell
:
0.6
,
standarCell
:
xs
}
})
},
[])
useEffect
(()
=>
{
if
(
hourFormat
)
{
const
arr
=
[
'8:00'
,
'9:00'
,
'10:00'
,
'11:00'
,
'12:00'
,
'13:00'
,
'14:00'
,
'15:00'
,
'16:00'
,
'17:00'
,
'18:00'
,
'19:00'
,
'20:00'
,
'21:00'
,
'22:00'
]
const
cells
=
arr
.
length
const
xs
=
10.8
/
cells
setCellSizes
(()
=>
{
return
{
smallCell
:
0.6
,
standarCell
:
xs
}
})
setHoursInDay
(()
=>
arr
)
}
else
{
const
arr
=
[
'8:00'
,
'10:00'
,
'12:00'
,
'14:00'
,
'16:00'
,
'18:00'
,
'20:00'
,
'22:00'
]
const
cells
=
arr
.
length
const
xs
=
10.8
/
cells
setCellSizes
(()
=>
{
return
{
smallCell
:
0.6
,
standarCell
:
xs
}
})
setHoursInDay
(()
=>
arr
)
}
},
[
hourFormat
])
useEffect
(()
=>
{
setNewMonthDays
()
},
[
month
])
const
getDaysInMonth
=
()
=>
{
return
new
Date
(
year
,
month
+
1
,
0
).
getDate
();
}
const
getDayOfWeekString
=
(
day
)
=>
{
return
[
"ВС"
,
"ПН"
,
"ВТ"
,
"СР"
,
"ЧТ"
,
"ПТ"
,
"СБ"
][
day
];
}
const
getDayOfWeekNumber
=
(
day
)
=>
{
return
new
Date
(
year
,
month
,
day
).
getDay
()
}
const
setNewMonthDays
=
()
=>
{
const
newDaysInMonth
=
[]
for
(
let
i
=
1
;
i
<=
getDaysInMonth
();
i
++
)
{
const
dayOfWeekNumber
=
getDayOfWeekNumber
(
i
)
newDaysInMonth
.
push
({
dayNumber
:
i
,
dayOfWeek
:
getDayOfWeekString
(
dayOfWeekNumber
)})
}
setDaysInMonth
(
prevState
=>
newDaysInMonth
)
}
return
(
return
(
<>
<>
...
@@ -94,7 +39,7 @@ function MonthCalendarBody({month, year, tasks, createTaskInCellHandler, current
...
@@ -94,7 +39,7 @@ function MonthCalendarBody({month, year, tasks, createTaskInCellHandler, current
labelPlacement
=
"end"
labelPlacement
=
"end"
/>
/>
<
/CalendarSmallCell
>
<
/CalendarSmallCell
>
{
hoursInDay
.
map
((
hours
,
i
)
=>
{
{
hoursInDay
?
.
map
((
hours
,
i
)
=>
{
return
(
return
(
<
CalendarStandartCell
key
=
{
i
}
xs
=
{
cellSizes
.
standarCell
}
>
<
CalendarStandartCell
key
=
{
i
}
xs
=
{
cellSizes
.
standarCell
}
>
{
hours
}
{
hours
}
...
@@ -102,7 +47,7 @@ function MonthCalendarBody({month, year, tasks, createTaskInCellHandler, current
...
@@ -102,7 +47,7 @@ function MonthCalendarBody({month, year, tasks, createTaskInCellHandler, current
)
)
})}
})}
<
/CalendarRow
>
<
/CalendarRow
>
{
daysInMonth
.
map
((
day
,
i
)
=>
{
{
daysInMonth
?
.
map
((
day
,
i
)
=>
{
return
(
return
(
<
CalendarRow
<
CalendarRow
key
=
{
i
}
key
=
{
i
}
...
...
planner-front/src/components/MonthCalendarHeader/MonthAndYearInfo/MonthAndYearInfo.js
0 → 100644
View file @
91e2ce16
import
{
Box
,
Typography
}
from
'@mui/material'
;
import
{
memo
}
from
'react'
;
import
MonthDecrementButton
from
'./MonthDecrementButton/MonthDecrementButton'
;
import
MonthIncrementButton
from
'./MonthIncrementButton/MonthIncrementButton'
;
function
MonthAndYearInfo
({
getCurrentMonthString
,
year
,
incrementMonth
,
decrementMonth
})
{
return
(
<>
<
Box
sx
=
{{
flexGrow
:
1
,
display
:
'flex'
,
alignItems
:
'center'
,
gap
:
'10px'
}}
>
<
MonthDecrementButton
decrementMonth
=
{
decrementMonth
}
/
>
<
Box
sx
=
{{
flexBasis
:
'150px'
}}
>
<
Typography
variant
=
"h6"
sx
=
{{
display
:
'flex'
,
justifyContent
:
'center'
,
}}
>
{
getCurrentMonthString
}
<
/Typography
>
<
Typography
align
=
'center'
>
{
year
}
<
/Typography
>
<
/Box
>
<
MonthIncrementButton
incrementMonth
=
{
incrementMonth
}
/>
<
/Box
>
<
/>
)
;
}
export
default
memo
(
MonthAndYearInfo
);
\ No newline at end of file
planner-front/src/components/MonthCalendarHeader/MonthAndYearInfo/MonthDecrementButton/MonthDecrementButton.js
0 → 100644
View file @
91e2ce16
import
ArrowBackIcon
from
'@mui/icons-material/ArrowBack'
;
import
{
memo
}
from
'react'
;
const
arrowClass
=
{
borderRadius
:
'50%'
,
cursor
:
'pointer'
,
transition
:
'0.5s'
,
"&:hover"
:
{
background
:
'rgb(48, 154, 252, 0.65)'
,
transition
:
'0.5s'
,
transform
:
'scale(1.2)'
}
}
function
MonthDecrementButton
({
decrementMonth
})
{
return
(
<>
<
ArrowBackIcon
sx
=
{
arrowClass
}
onClick
=
{
decrementMonth
}
/>
<
/>
)
;
}
export
default
memo
(
MonthDecrementButton
);
\ No newline at end of file
planner-front/src/components/MonthCalendarHeader/MonthAndYearInfo/MonthIncrementButton/MonthIncrementButton.js
0 → 100644
View file @
91e2ce16
import
ArrowForwardIcon
from
'@mui/icons-material/ArrowForward'
;
import
{
memo
}
from
'react'
;
const
arrowClass
=
{
borderRadius
:
'50%'
,
cursor
:
'pointer'
,
transition
:
'0.5s'
,
"&:hover"
:
{
background
:
'rgb(48, 154, 252, 0.65)'
,
transition
:
'0.5s'
,
transform
:
'scale(1.2)'
}
}
function
MonthIncrementButton
({
incrementMonth
})
{
return
(
<>
<
ArrowForwardIcon
sx
=
{
arrowClass
}
onClick
=
{
incrementMonth
}
/>
<
/>
)
;
}
export
default
memo
(
MonthIncrementButton
);
\ No newline at end of file
planner-front/src/components/MonthCalendarHeader/MonthCalendarHeader.js
View file @
91e2ce16
import
{
AppBar
,
FormControl
,
InputLabel
,
MenuItem
,
Select
,
Toolbar
,
Typography
}
from
'@mui/material'
;
import
{
AppBar
,
Toolbar
}
from
'@mui/material'
;
import
ArrowBackIcon
from
'@mui/icons-material/ArrowBack'
;
import
ArrowForwardIcon
from
'@mui/icons-material/ArrowForward'
;
import
{
Box
}
from
'@mui/system'
;
import
{
Box
}
from
'@mui/system'
;
import
MonthAndYearInfo
from
'./MonthAndYearInfo/MonthAndYearInfo'
;
import
С
ustomSelect
from
'../UI/СustomSelect/СustomSelect'
const
arrowClass
=
{
const
workers
=
[{
value
:
''
,
text
:
'--выберите сотрудника'
},
{
value
:
'Василий'
,
text
:
'Василий'
},
{
value
:
'Никита'
,
text
:
'Никита'
}]
borderRadius
:
'50%'
,
const
types
=
[{
value
:
'Месяц'
,
text
:
'Месяц'
},
{
value
:
'Неделя'
,
text
:
'Неделя'
}]
cursor
:
'pointer'
,
transition
:
'0.5s'
,
"&:hover"
:
{
background
:
'rgb(48, 154, 252, 0.65)'
,
function
MonthCalendarHeader
({
getCurrentMonthString
,
decrementMonth
,
incrementMonth
,
calendarType
,
onChangeWorkerHandler
,
onChangeCalendarTypeHandler
,
worker
,
year
})
{
transition
:
'0.5s'
,
transform
:
'scale(1.2)'
}
}
function
MonthCalendarHeader
({
month
,
getCurrentMonthString
,
decrementMonth
,
incrementMonth
,
calendarType
,
onChangeWorkerHandler
,
onChangeCalendarTypeHandler
,
worker
,
year
})
{
return
(
return
(
<>
<>
<
Box
sx
=
{{
flexGrow
:
1
}}
>
<
Box
sx
=
{{
flexGrow
:
1
}}
>
<
AppBar
position
=
"static"
>
<
AppBar
position
=
"static"
>
<
Toolbar
>
<
Toolbar
>
<
Box
sx
=
{{
flexGrow
:
1
,
display
:
'flex'
,
alignItems
:
'center'
,
gap
:
'10px'
}}
>
<
ArrowBackIcon
onClick
=
{()
=>
{
decrementMonth
()}}
sx
=
{
arrowClass
}
/
>
<
Box
sx
=
{{
flexBasis
:
'150px'
}}
>
<
Typography
variant
=
"h6"
sx
=
{{
display
:
'flex'
,
justifyContent
:
'center'
,
}}
>
{
getCurrentMonthString
(
month
)}
<
/Typography
>
<
Typography
align
=
'center'
>
{
year
}
<
/Typography
>
<
/Box
>
<
ArrowForwardIcon
sx
=
{
arrowClass
}
onClick
=
{()
=>
{
incrementMonth
()}}
/>
<
/Box
>
<
FormControl
variant
=
"standard"
sx
=
{{
m
:
1
,
minWidth
:
120
}}
>
<
MonthAndYearInfo
<
InputLabel
id
=
"worker-select-label"
>
Сотрудник
<
/InputLabel
>
getCurrentMonthString
=
{
getCurrentMonthString
}
<
Select
decrementMonth
=
{
decrementMonth
}
labelId
=
"worker-select-label"
incrementMonth
=
{
incrementMonth
}
id
=
"worker-select"
year
=
{
year
}
/
>
<
С
ustomSelect
value
=
{
worker
}
value
=
{
worker
}
onChange
=
{(
e
)
=>
{
onChangeWorkerHandler
(
e
)}}
onChange
=
{(
e
)
=>
{
onChangeWorkerHandler
(
e
)}}
label
=
"Worker"
label
=
{
'Сотрудник'
}
>
id
=
{
'worker'
}
<
MenuItem
value
=
""
>
items
=
{
workers
}
<
em
>--
Выберите
сотрудника
--<
/em
>
/
>
<
/MenuItem
>
<
MenuItem
value
=
{
"Василий"
}
>
Василий
<
/MenuItem
>
<
MenuItem
value
=
{
"Никита"
}
>
Никита
<
/MenuItem
>
<
MenuItem
value
=
{
"Артем"
}
>
Артем
<
/MenuItem
>
<
/Select
>
<
/FormControl
>
<
FormControl
variant
=
"standard"
sx
=
{{
m
:
1
,
minWidth
:
120
}}
>
<
С
ustomSelect
<
InputLabel
id
=
"calendar-type-label"
>
Календарь
<
/InputLabel
>
<
Select
labelId
=
"calendar-type-label"
id
=
"calendar-type"
value
=
{
calendarType
}
value
=
{
calendarType
}
onChange
=
{(
e
)
=>
{
onChangeCalendarTypeHandler
(
e
)}}
onChange
=
{(
e
)
=>
{
onChangeCalendarTypeHandler
(
e
)}}
label
=
"Type"
label
=
{
'Календарь'
}
>
id
=
{
'calendar-type'
}
<
MenuItem
value
=
{
"Месяц"
}
>
Месяц
<
/MenuItem
>
items
=
{
types
}
<
MenuItem
value
=
{
"Неделя"
}
>
Неделя
<
/MenuItem
>
/
>
<
/Select
>
<
/FormControl
>
<
/Toolbar
>
<
/Toolbar
>
<
/AppBar
>
<
/AppBar
>
<
/Box
>
<
/Box
>
...
...
planner-front/src/components/UI/СustomSelect/СustomSelect.js
0 → 100644
View file @
91e2ce16
import
{
FormControl
,
InputLabel
,
MenuItem
,
Select
}
from
'@mui/material'
;
import
{
memo
}
from
'react'
;
function
С
ustomSelect
({
value
,
onChange
,
label
,
variant
=
'standard'
,
items
,
id
})
{
return
(
<>
<
FormControl
variant
=
{
variant
}
sx
=
{{
m
:
1
,
minWidth
:
120
}}
>
<
InputLabel
id
=
{
id
+
'-select'
+
'-label'
}
>
{
label
}
<
/InputLabel
>
<
Select
labelId
=
{
id
+
'-select'
+
'-label'
}
id
=
{
id
+
'-select'
}
value
=
{
value
}
onChange
=
{
onChange
}
label
=
{
label
}
>
{
items
.
map
((
item
,
i
)
=>
{
return
(
<
MenuItem
key
=
{
i
}
value
=
{
item
?.
value
}
>
{
item
?.
text
}
<
/MenuItem
>
)
})}
<
/Select
>
<
/FormControl
>
<
/>
)
;
}
export
default
memo
(
С
ustomSelect
,
(
prevProps
,
nextProps
)
=>
{
if
(
prevProps
.
value
!==
nextProps
.
value
)
{
return
false
}
else
{
return
true
}
});
\ No newline at end of file
planner-front/src/containers/MonthCalendar/MonthCalendar.js
View file @
91e2ce16
import
{
useEffect
,
use
State
}
from
'react'
;
import
{
useEffect
,
use
Callback
,
useState
,
useMemo
}
from
'react'
;
import
{
useDispatch
,
useSelector
}
from
'react-redux'
;
import
{
useDispatch
,
useSelector
}
from
'react-redux'
;
import
MonthCalendarBody
from
'../../components/MonthCalendarBody/MonthCalendarBody'
;
import
MonthCalendarBody
from
'../../components/MonthCalendarBody/MonthCalendarBody'
;
import
MonthCalendarHeader
from
'../../components/MonthCalendarHeader/MonthCalendarHeader'
;
import
MonthCalendarHeader
from
'../../components/MonthCalendarHeader/MonthCalendarHeader'
;
...
@@ -9,58 +9,84 @@ function MonthCalendar() {
...
@@ -9,58 +9,84 @@ function MonthCalendar() {
const
{
calendarTasks
}
=
useSelector
(
state
=>
state
.
tasks
);
const
{
calendarTasks
}
=
useSelector
(
state
=>
state
.
tasks
);
const
[
hourFormat
,
setHourFormat
]
=
useState
(
false
);
const
[
hourFormat
,
setHourFormat
]
=
useState
(
false
);
const
[
month
,
setMonth
]
=
useState
(
''
)
const
[
dateNow
,
setDateNow
]
=
useState
({
month
:
''
,
year
:
''
})
const
[
year
,
setYear
]
=
useState
(
''
)
const
[
worker
,
setWorker
]
=
useState
(
''
);
const
[
worker
,
setWorker
]
=
useState
(
''
);
const
[
calendarType
,
setCalendarType
]
=
useState
(
'Месяц'
);
const
[
calendarType
,
setCalendarType
]
=
useState
(
'Месяц'
);
const
[
currentTask
,
setCurrentTask
]
=
useState
({
title
:
''
,
description
:
''
,
priority
:
null
,
dateTimeStart
:
''
,
dateTimeDue
:
''
})
const
[
currentTask
,
setCurrentTask
]
=
useState
({
title
:
''
,
description
:
''
,
priority
:
''
})
const
[
cellSizes
,
setCellSizes
]
=
useState
({})
useEffect
(()
=>
{
useEffect
(()
=>
{
setMonth
(
new
Date
().
getMonth
())
setDateNow
({
setYear
(
new
Date
().
getFullYear
())
month
:
new
Date
().
getMonth
(),
year
:
new
Date
().
getFullYear
(),
})
dispatch
(
fetchCalendarTasks
())
dispatch
(
fetchCalendarTasks
())
},
[
dispatch
])
},
[
dispatch
])
const
onChangeWorkerHandler
=
(
event
)
=>
{
const
hoursInDay
=
useMemo
(()
=>
{
if
(
hourFormat
)
{
const
arr
=
[
'8:00'
,
'9:00'
,
'10:00'
,
'11:00'
,
'12:00'
,
'13:00'
,
'14:00'
,
'15:00'
,
'16:00'
,
'17:00'
,
'18:00'
,
'19:00'
,
'20:00'
,
'21:00'
,
'22:00'
]
const
cells
=
arr
.
length
const
xs
=
10.8
/
cells
setCellSizes
(()
=>
{
return
{
smallCell
:
0.6
,
standarCell
:
xs
}
})
return
arr
}
else
{
const
arr
=
[
'8:00'
,
'10:00'
,
'12:00'
,
'14:00'
,
'16:00'
,
'18:00'
,
'20:00'
,
'22:00'
]
const
cells
=
arr
.
length
const
xs
=
10.8
/
cells
setCellSizes
(()
=>
{
return
{
smallCell
:
0.6
,
standarCell
:
xs
}
})
return
arr
}
},
[
hourFormat
])
const
daysInMonth
=
useMemo
(()
=>
{
const
newDaysInMonth
=
[]
const
daysInMonthNumber
=
new
Date
(
dateNow
.
year
,
dateNow
.
month
+
1
,
0
).
getDate
()
for
(
let
i
=
1
;
i
<=
daysInMonthNumber
;
i
++
)
{
const
dayOfWeekNumber
=
new
Date
(
dateNow
.
year
,
dateNow
.
month
,
i
).
getDay
()
const
getDayOfWeekString
=
[
"ВС"
,
"ПН"
,
"ВТ"
,
"СР"
,
"ЧТ"
,
"ПТ"
,
"СБ"
][
dayOfWeekNumber
]
newDaysInMonth
.
push
({
dayNumber
:
i
,
dayOfWeek
:
getDayOfWeekString
})
}
return
newDaysInMonth
},
[
dateNow
.
month
,
dateNow
.
year
])
const
onChangeWorkerHandler
=
useCallback
((
event
)
=>
{
setWorker
(
event
.
target
.
value
);
setWorker
(
event
.
target
.
value
);
};
}
,
[])
;
const
onChangeCalendarTypeHandler
=
(
event
)
=>
{
const
onChangeCalendarTypeHandler
=
useCallback
(
(
event
)
=>
{
setCalendarType
(
event
.
target
.
value
);
setCalendarType
(
event
.
target
.
value
);
};
}
,
[])
;
const
getCurrentMonthString
=
(
month
)
=>
{
const
getCurrentMonthString
=
useMemo
((
)
=>
{
return
[
"Январь"
,
"Февраль"
,
"Март"
,
"Апрель"
,
"Май"
,
"Июнь"
,
"Июль"
,
"Август"
,
"Сентябрь"
,
"Октябрь"
,
"Ноябрь"
,
"Декабрь"
][
month
];
return
[
"Январь"
,
"Февраль"
,
"Март"
,
"Апрель"
,
"Май"
,
"Июнь"
,
"Июль"
,
"Август"
,
"Сентябрь"
,
"Октябрь"
,
"Ноябрь"
,
"Декабрь"
][
dateNow
.
month
];
}
}
,
[
dateNow
.
month
])
const
incrementMonth
=
()
=>
{
const
incrementMonth
=
useCallback
(()
=>
{
setMonth
((
prevState
)
=>
{
setDateNow
((
prevState
)
=>
{
if
(
prevState
+
1
===
12
)
{
if
(
prevState
.
month
+
1
===
12
)
{
setYear
(
prevState
=>
prevState
+
1
)
return
{
month
:
0
,
year
:
prevState
.
year
+
1
}
return
0
}
}
return
prevState
+
1
return
{...
prevState
,
month
:
prevState
.
month
+
1
}
})
})
}
}
,
[])
const
decrementMonth
=
()
=>
{
const
decrementMonth
=
useCallback
(()
=>
{
setMonth
((
prevState
)
=>
{
setDateNow
((
prevState
)
=>
{
if
(
prevState
-
1
===
-
1
)
{
if
(
prevState
.
month
-
1
===
-
1
)
{
setYear
(
prevState
=>
prevState
-
1
)
return
{
month
:
11
,
year
:
prevState
.
year
-
1
}
return
11
}
}
return
prevState
-
1
return
{...
prevState
,
month
:
prevState
.
month
-
1
}
})
})
}
}
,
[])
function
dateToISOLikeButLocal
(
date
)
{
const
onChangeCurrentTaskHandler
=
useCallback
((
e
)
=>
{
const
offsetMs
=
date
.
getTimezoneOffset
()
*
60
*
1000
;
const
msLocal
=
date
.
getTime
()
-
offsetMs
;
const
dateLocal
=
new
Date
(
msLocal
);
const
iso
=
dateLocal
.
toISOString
();
return
iso
;
}
const
onChangeCurrentTaskHandler
=
(
e
)
=>
{
const
{
name
,
value
}
=
e
.
target
;
const
{
name
,
value
}
=
e
.
target
;
setCurrentTask
((
prevState
)
=>
{
setCurrentTask
((
prevState
)
=>
{
return
{
return
{
...
@@ -68,8 +94,14 @@ function MonthCalendar() {
...
@@ -68,8 +94,14 @@ function MonthCalendar() {
[
name
]:
value
[
name
]:
value
}
}
});
});
};
},
[]);
function
dateToISOLikeButLocal
(
date
)
{
const
offsetMs
=
date
.
getTimezoneOffset
()
*
60
*
1000
;
const
msLocal
=
date
.
getTime
()
-
offsetMs
;
const
dateLocal
=
new
Date
(
msLocal
);
const
iso
=
dateLocal
.
toISOString
();
return
iso
;
}
const
createTaskInCellHandler
=
(
dayNumber
,
dayHour
)
=>
{
const
createTaskInCellHandler
=
(
dayNumber
,
dayHour
)
=>
{
const
hour
=
parseInt
(
dayHour
.
split
(
':'
)[
0
])
const
hour
=
parseInt
(
dayHour
.
split
(
':'
)[
0
])
let
hourDue
let
hourDue
...
@@ -82,14 +114,13 @@ function MonthCalendar() {
...
@@ -82,14 +114,13 @@ function MonthCalendar() {
title
:
"Задача"
,
title
:
"Задача"
,
description
:
"описание"
,
description
:
"описание"
,
priority
:
null
,
priority
:
null
,
dateTimeStart
:
dateToISOLikeButLocal
(
new
Date
(
year
,
month
,
dayNumber
,
hour
,
0
)),
dateTimeStart
:
dateToISOLikeButLocal
(
new
Date
(
dateNow
.
year
,
dateNow
.
month
,
dayNumber
,
hour
,
0
)),
dateTimeDue
:
dateToISOLikeButLocal
(
new
Date
(
year
,
month
,
dayNumber
,
hourDue
,
59
)),
dateTimeDue
:
dateToISOLikeButLocal
(
new
Date
(
dateNow
.
year
,
dateNow
.
month
,
dayNumber
,
hourDue
,
59
)),
}
}
setCurrentTask
((
newTask
))
setCurrentTask
((
newTask
))
}
}
const
sendNewTaskHandler
=
async
()
=>
{
const
sendNewTaskHandler
=
async
()
=>
{
if
(
currentTask
.
id
)
{
if
(
currentTask
.
id
)
{
setCurrentTask
(()
=>
{
setCurrentTask
(()
=>
{
return
{
return
{
...
@@ -104,6 +135,7 @@ function MonthCalendar() {
...
@@ -104,6 +135,7 @@ function MonthCalendar() {
...
currentTask
,
...
currentTask
,
}}
}}
)
)
console
.
log
(
currentTask
)
delete
currentTask
.
infoForCell
delete
currentTask
.
infoForCell
await
dispatch
(
addTask
(
currentTask
))
await
dispatch
(
addTask
(
currentTask
))
}
}
...
@@ -116,8 +148,7 @@ function MonthCalendar() {
...
@@ -116,8 +148,7 @@ function MonthCalendar() {
return
(
return
(
<>
<>
<
MonthCalendarHeader
<
MonthCalendarHeader
month
=
{
month
}
year
=
{
dateNow
.
year
}
year
=
{
year
}
getCurrentMonthString
=
{
getCurrentMonthString
}
getCurrentMonthString
=
{
getCurrentMonthString
}
decrementMonth
=
{
decrementMonth
}
decrementMonth
=
{
decrementMonth
}
incrementMonth
=
{
incrementMonth
}
incrementMonth
=
{
incrementMonth
}
...
@@ -127,8 +158,8 @@ function MonthCalendar() {
...
@@ -127,8 +158,8 @@ function MonthCalendar() {
calendarType
=
{
calendarType
}
calendarType
=
{
calendarType
}
/
>
/
>
<
MonthCalendarBody
<
MonthCalendarBody
month
=
{
month
}
month
=
{
dateNow
.
month
}
year
=
{
year
}
year
=
{
dateNow
.
year
}
tasks
=
{
calendarTasks
}
tasks
=
{
calendarTasks
}
createTaskInCellHandler
=
{
createTaskInCellHandler
}
createTaskInCellHandler
=
{
createTaskInCellHandler
}
setCurrentTask
=
{
setCurrentTask
}
setCurrentTask
=
{
setCurrentTask
}
...
@@ -138,7 +169,11 @@ function MonthCalendar() {
...
@@ -138,7 +169,11 @@ function MonthCalendar() {
onChangeCurrentTaskHandler
=
{
onChangeCurrentTaskHandler
}
onChangeCurrentTaskHandler
=
{
onChangeCurrentTaskHandler
}
sendNewTaskHandler
=
{
sendNewTaskHandler
}
sendNewTaskHandler
=
{
sendNewTaskHandler
}
deleteTaskHandler
=
{
deleteTaskHandler
}
deleteTaskHandler
=
{
deleteTaskHandler
}
cellSizes
=
{
cellSizes
}
hoursInDay
=
{
hoursInDay
}
daysInMonth
=
{
daysInMonth
}
/
>
/
>
<
/
>
<
/
>
);
);
}
}
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment