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
0fe75260
Commit
0fe75260
authored
Dec 13, 2022
by
Ermolaev Timur
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
#103
Реализовал возможность перехода в чужой календарь и возвращения назад
parent
61d26665
Show whitespace changes
Inline
Side-by-side
Showing
8 changed files
with
181 additions
and
135 deletions
+181
-135
tasks.ts
planner-api/src/routers/tasks.ts
+0
-6
App.js
planner-front/src/App.js
+113
-95
CalendarModalWorkerContent.js
.../CalendarModalWorkerContent/CalendarModalWorkerContent.js
+24
-19
MonthCalendarHeader.js
.../MonthCalendar/MonthCalendarHeader/MonthCalendarHeader.js
+2
-2
DefaultModal.js
planner-front/src/components/UI/DefaultModal/DefaultModal.js
+1
-1
MonthCalendar.js
planner-front/src/containers/MonthCalendar/MonthCalendar.js
+39
-9
projectsActions.js
planner-front/src/store/actions/projectsActions.js
+1
-1
tasksActions.js
planner-front/src/store/actions/tasksActions.js
+1
-2
No files found.
planner-api/src/routers/tasks.ts
View file @
0fe75260
...
...
@@ -52,7 +52,6 @@ router.get('/user/:userId', async (req: Request, res: Response):Promise<Response
.
find
({
relations
:{
executor
:
true
,
author
:
true
,
},
where
:[
{
...
...
@@ -60,11 +59,6 @@ router.get('/user/:userId', async (req: Request, res: Response):Promise<Response
id
:
userId
}
},
{
author
:{
id
:
userId
}
},
]
})
return
res
.
send
({
tasks
})
...
...
planner-front/src/App.js
View file @
0fe75260
import
{
Routes
,
Route
,
Outlet
,
Navigate
,
BrowserRouter
}
from
"react-router-dom"
;
import
{
Container
}
from
"@mui/material"
;
import
{
useSelector
}
from
"react-redux"
;
import
{
Routes
,
Route
,
Outlet
,
Navigate
,
BrowserRouter
}
from
"react-router-dom"
;
import
{
Container
}
from
"@mui/material"
;
import
{
useSelector
}
from
"react-redux"
;
import
AppToolbar
from
"./components/UI/AppToolBar/AppToolBar"
;
import
MyTasks
from
'./containers/MyTasks/MyTasks'
;
import
Login
from
'./containers/Login/Login'
;
...
...
@@ -12,7 +12,7 @@ import FullProject from "./containers/FullProject/FullProject";
import
NewProject
from
"./containers/NewProject/NewProject"
;
import
WeekCalendar
from
"./containers/WeekCalendar/WeekCalendar"
;
const
ProtectedRoute
=
({
isAllowed
,
roles
,
redirectUrl
,
children
})
=>
{
const
ProtectedRoute
=
({
isAllowed
,
roles
,
redirectUrl
,
children
})
=>
{
const
user
=
useSelector
(
state
=>
state
.
users
?.
user
);
if
(
!
isAllowed
&&
!
roles
?.
includes
(
user
?.
role
))
{
return
<
Navigate
to
=
{
redirectUrl
}
/
>
...
...
@@ -28,10 +28,10 @@ const App = () => {
<
Routes
>
<
Route
element
=
{
<>
<
AppToolbar
/>
<
AppToolbar
/>
<
main
>
<
Container
maxWidth
=
{
false
}
sx
=
{{
maxWidth
:
'2500px'
}}
>
<
Outlet
/>
<
Container
maxWidth
=
{
false
}
sx
=
{{
maxWidth
:
'2500px'
}}
>
<
Outlet
/>
<
/Container
>
<
/main
>
<
/
>
...
...
@@ -41,34 +41,43 @@ const App = () => {
isAllowed
=
{
user
}
redirectUrl
=
{
"/sign-in"
}
>
<
Projects
/>
<
Projects
/>
<
/ProtectedRoute
>
}
/
>
}
/
>
<
Route
path
=
{
"/projects/:id"
}
element
=
{
<
ProtectedRoute
isAllowed
=
{
user
}
redirectUrl
=
{
"/sign-in"
}
>
<
FullProject
/>
<
FullProject
/>
<
/ProtectedRoute
>
}
/
>
}
/
>
<
Route
path
=
{
"/"
}
element
=
{
<
ProtectedRoute
isAllowed
=
{
user
}
redirectUrl
=
{
"/sign-in"
}
>
<
WeekCalendar
/>
<
WeekCalendar
/>
<
/ProtectedRoute
>
}
/
>
}
/
>
<
Route
path
=
{
"/week"
}
element
=
{
<
ProtectedRoute
isAllowed
=
{
user
}
redirectUrl
=
{
"/sign-in"
}
>
<
WeekCalendar
/>
<
WeekCalendar
/>
<
/ProtectedRoute
>
}
/
>
}
/
>
<
Route
path
=
{
"/week/:id"
}
element
=
{
<
ProtectedRoute
isAllowed
=
{
user
}
redirectUrl
=
{
"/sign-in"
}
>
<
WeekCalendar
/>
<
/ProtectedRoute
>
}
/
>
<
Route
path
=
{
"/month"
}
element
=
{
<
ProtectedRoute
...
...
@@ -77,16 +86,25 @@ const App = () => {
>
<
MonthCalendar
><
/MonthCalendar
>
<
/ProtectedRoute
>
}
/
>
}
/
>
<
Route
path
=
{
"/month/:id"
}
element
=
{
<
ProtectedRoute
isAllowed
=
{
user
}
redirectUrl
=
{
"/sign-in"
}
>
<
MonthCalendar
><
/MonthCalendar
>
<
/ProtectedRoute
>
}
/
>
<
Route
path
=
{
"/my-tasks"
}
element
=
{
<
ProtectedRoute
isAllowed
=
{
user
}
redirectUrl
=
{
"/sign-in"
}
>
<
MyTasks
/>
<
MyTasks
/>
<
/ProtectedRoute
>
}
/
>
}
/
>
<
Route
path
=
{
"/profile/:id"
}
element
=
{
<
ProtectedRoute
...
...
@@ -95,7 +113,7 @@ const App = () => {
>
<
h1
>
profile
page
<
/h1
>
<
/ProtectedRoute
>
}
/
>
}
/
>
<
Route
path
=
{
"/workers-tasks"
}
element
=
{
<
ProtectedRoute
...
...
@@ -104,20 +122,20 @@ const App = () => {
>
<
h1
>
workers
tasks
page
<
/h1
>
<
/ProtectedRoute
>
}
/
>
}
/
>
<
Route
path
=
{
"/sign-up"
}
element
=
{
<
ProtectedRoute
roles
=
{[
"superuser"
]}
redirectUrl
=
{
"/"
}
>
<
Register
/>
<
Register
/>
<
/ProtectedRoute
>
}
/
>
}
/
>
<
Route
path
=
{
"/sign-in"
}
element
=
{
<
Login
/>
}
/
>
<
Route
path
=
{
"/forgottenpassword"
}
element
=
{
<
ForgottenPassword
/>
}
/
>
<
Route
path
=
'*'
element
=
{
<
h1
>
404
<
/h1>}
/
>
<
Route
path
=
{
"/sign-in"
}
element
=
{
<
Login
/>
}
/
>
<
Route
path
=
{
"/forgottenpassword"
}
element
=
{
<
ForgottenPassword
/>
}
/
>
<
Route
path
=
'*'
element
=
{
<
h1
>
404
<
/h1>}
/
>
<
/Route
>
<
/Routes
>
<
/BrowserRouter
>
...
...
planner-front/src/components/Calendars/CalendarModalWorkerContent/CalendarModalWorkerContent.js
View file @
0fe75260
import
{
Autocomplete
,
TextField
}
from
"@mui/material"
;
import
{
Autocomplete
,
Button
,
TextField
}
from
"@mui/material"
;
import
{
memo
}
from
"react"
;
function
CalendarModalWorkerContent
({
allUserProjects
,
onChangeProjectHandler
,
workerInfo
})
{
console
.
log
(
workerInfo
)
function
CalendarModalWorkerContent
({
allUserProjects
,
onChangeProjectHandler
,
onChangeWorkerHandler
,
workerInfo
,
workers
,
handleClose
,
onChangeCalendarUser
})
{
return
(
<>
<
Autocomplete
id
=
"choose-project"
...
...
@@ -11,30 +10,36 @@ function CalendarModalWorkerContent({ allUserProjects, onChangeProjectHandler, w
options
=
{
allUserProjects
}
getOptionLabel
=
{(
item
)
=>
item
.
title
||
""
}
onChange
=
{
onChangeProjectHandler
}
name
=
{
"
userId
"
}
name
=
{
"
project
"
}
value
=
{
workerInfo
.
project
}
renderInput
=
{(
params
)
=>
<
TextField
style
=
{{
margin
:
"
5px"
}}
style
=
{{
margin
Bottom
:
"1
5px"
}}
label
=
{
"Проект"
}
state
=
{
workerInfo
.
project
}
{...
params
}
/>
}
/>
{
workerInfo
.
project
?
<>
<
Autocomplete
id
=
"choose-worker"
freeSolo
options
=
{
allUserProject
s
}
getOptionLabel
=
{(
item
)
=>
item
.
titl
e
||
""
}
onChange
=
{(
e
,
value
)
=>
{
onChangeProjectHandler
(
e
,
value
)
}}
name
=
{
"userId
"
}
value
=
{
workerInfo
.
project
}
options
=
{
worker
s
}
getOptionLabel
=
{(
item
)
=>
item
?.
user
?.
displayNam
e
||
""
}
onChange
=
{(
e
,
value
)
=>
{
onChangeWorkerHandler
(
e
,
value
)
}}
name
=
{
"worker
"
}
value
=
{
workerInfo
.
worker
}
renderInput
=
{(
params
)
=>
<
TextField
style
=
{{
margin
:
"5px"
}}
label
=
{
"Проект"
}
state
=
{
workerInfo
.
project
}
label
=
{
"Участник"
}
state
=
{
workerInfo
.
worker
}
{...
params
}
/>
}
/>
<
div
style
=
{{
display
:
'flex'
,
justifyContent
:
'space-between'
,
margin
:
'10px 0'
}}
>
<
Button
onClick
=
{()
=>
{
onChangeCalendarUser
()}}
>
Выбрать
<
/Button
>
<
Button
onClick
=
{()
=>
handleClose
()}
>
Отмена
<
/Button
>
<
/div
>
<
/
>
:
null
}
<
/>
)
;
}
...
...
planner-front/src/components/Calendars/MonthCalendar/MonthCalendarHeader/MonthCalendarHeader.js
View file @
0fe75260
...
...
@@ -2,7 +2,7 @@ import { AppBar, Button, Toolbar, Typography } from '@mui/material';
import
{
Box
}
from
'@mui/system'
;
import
MonthAndYearInfo
from
'./MonthAndYearInfo/MonthAndYearInfo'
;
function
MonthCalendarHeader
({
currentMonthString
,
decrementMonth
,
incrementMonth
,
year
,
handleOpen
,
currentCalendarDisplayName
})
{
function
MonthCalendarHeader
({
currentMonthString
,
decrementMonth
,
incrementMonth
,
year
,
handleOpen
,
currentCalendarDisplayName
,
user
,
userId
})
{
return
(
<>
...
...
@@ -27,7 +27,7 @@ function MonthCalendarHeader({ currentMonthString, decrementMonth, incrementMont
size
=
"large"
sx
=
{{
marginLeft
:
'auto'
}}
>
Выбрать
сотрудника
{
user
.
id
===
userId
?
'Выбрать сотрудника'
:
'Вернуться назад'
}
<
/Button
>
<
/Toolbar
>
<
/AppBar
>
...
...
planner-front/src/components/UI/DefaultModal/DefaultModal.js
View file @
0fe75260
...
...
@@ -13,7 +13,7 @@ const style = {
bgcolor
:
'background.paper'
,
border
:
'2px solid #000'
,
boxShadow
:
24
,
p
:
4
,
p
:
2
};
export
default
function
DefaultModal
({
modal
,
handleClose
,
children
})
{
...
...
planner-front/src/containers/MonthCalendar/MonthCalendar.js
View file @
0fe75260
import
{
useEffect
,
useCallback
,
useState
,
useMemo
}
from
'react'
;
import
{
useDispatch
,
useSelector
}
from
'react-redux'
;
import
{
useParams
}
from
'react-router-dom'
;
import
{
use
Navigate
,
use
Params
}
from
'react-router-dom'
;
import
CalendarModalWorkerContent
from
'../../components/Calendars/CalendarModalWorkerContent/CalendarModalWorkerContent'
;
import
MonthCalendarBody
from
'../../components/Calendars/MonthCalendar/MonthCalendarBody/MonthCalendarBody'
;
import
MonthCalendarHeader
from
'../../components/Calendars/MonthCalendar/MonthCalendarHeader/MonthCalendarHeader'
;
import
DefaultModal
from
'../../components/UI/DefaultModal/DefaultModal'
;
import
{
dateToISOLikeButLocal
,
getCurrentMonthString
,
getDaysInMonth
}
from
'../../helpers/CalendarHelpers'
;
import
{
fetchAllUserProjects
}
from
'../../store/actions/projectsActions'
;
import
{
fetchAllUserProjects
,
fetchProject
}
from
'../../store/actions/projectsActions'
;
import
{
addCalendarTask
,
addCopyCalendarTask
,
deleteCalendarTask
,
editCalendarTask
,
fetchCalendarTasks
}
from
'../../store/actions/tasksActions'
;
import
{
fetchCurrentCalendarDisplayName
}
from
'../../store/actions/usersActions'
;
function
MonthCalendar
()
{
const
dispatch
=
useDispatch
();
const
navigate
=
useNavigate
()
const
{
calendarTasks
}
=
useSelector
(
state
=>
state
.
tasks
);
const
{
user
,
currentCalendarDisplayName
}
=
useSelector
(
state
=>
state
.
users
);
const
{
allUserProjects
}
=
useSelector
(
state
=>
state
.
projects
)
const
{
allUserProjects
,
project
}
=
useSelector
(
state
=>
state
.
projects
)
const
params
=
useParams
()
const
[
hourFormat
,
setHourFormat
]
=
useState
(
false
);
const
[
dateNow
,
setDateNow
]
=
useState
({
month
:
''
,
year
:
''
})
const
[
workerInfo
,
setWorkerInfo
]
=
useState
({
project
:
''
,
worker
:
''
});
const
[
workerInfo
,
setWorkerInfo
]
=
useState
({
project
:
''
,
worker
:
''
});
const
[
currentTask
,
setCurrentTask
]
=
useState
({
title
:
''
,
description
:
''
,
priority
:
null
,
infoForCell
:
{
startHour
:
null
,
endHour
:
null
}
})
const
[
copyTask
,
setCopyTask
]
=
useState
(
null
)
const
[
cellSizes
,
setCellSizes
]
=
useState
({})
...
...
@@ -42,6 +43,11 @@ function MonthCalendar() {
}
},
[
dispatch
])
useEffect
(()
=>
{
if
(
workerInfo
.
project
)
{
dispatch
(
fetchProject
(
workerInfo
.
project
.
id
))
}
},
[
workerInfo
.
project
])
const
hoursInDay
=
useMemo
(()
=>
{
let
arr
...
...
@@ -67,10 +73,11 @@ function MonthCalendar() {
},
[
dateNow
.
month
])
const
onChangeProjectHandler
=
useCallback
((
e
,
value
)
=>
{
setWorkerInfo
((
prevState
)
=>
{
return
{...
prevState
,
project
:
value
}
});
setWorkerInfo
((
prevState
)
=>
{
return
{
...
prevState
,
project
:
value
}
});
},
[]);
const
onChangeWorkerHandler
=
useCallback
((
e
,
value
)
=>
{
setWorkerInfo
((
prevState
)
=>
{
return
{...
prevState
,
worker
:
value
}
});
setWorkerInfo
((
prevState
)
=>
{
return
{
...
prevState
,
worker
:
value
}
});
},
[]);
const
incrementMonth
=
useCallback
(()
=>
{
...
...
@@ -182,7 +189,8 @@ function MonthCalendar() {
...
currentTask
,
dateTimeStart
:
start
,
dateTimeDue
:
due
,
executor
:
user
,
executor
:
userId
,
author
:
user
.
id
,
dateTimeDeadLine
:
due
,
}
delete
newTask
.
infoForCell
...
...
@@ -190,6 +198,7 @@ function MonthCalendar() {
await
dispatch
(
addCalendarTask
(
newTask
,
userId
))
}
}
console
.
log
(
userId
)
const
createCopyTask
=
async
(
dayNumber
,
hour
)
=>
{
const
hourDiff
=
copyTask
.
infoForCell
.
endHour
-
copyTask
.
infoForCell
.
startHour
...
...
@@ -219,10 +228,26 @@ function MonthCalendar() {
const
handleClose
=
()
=>
{
setModal
(
false
)
setWorkerInfo
({
project
:
''
,
worker
:
''
})
}
const
handleOpen
=
async
()
=>
{
if
(
user
.
id
===
userId
)
{
await
dispatch
(
fetchAllUserProjects
())
setModal
(
true
)
}
else
{
navigate
(
"/month"
)
setWorkerInfo
({
project
:
''
,
worker
:
''
})
setUserId
(
user
.
id
)
dispatch
(
fetchCalendarTasks
(
user
.
id
))
dispatch
(
fetchCurrentCalendarDisplayName
(
user
.
id
))
}
}
const
onChangeCalendarUser
=
()
=>
{
navigate
(
`/month/
${
workerInfo
.
worker
.
user
.
id
}
`
)
setModal
(
false
)
setUserId
(
workerInfo
.
worker
.
user
.
id
)
dispatch
(
fetchCalendarTasks
(
workerInfo
.
worker
.
user
.
id
))
dispatch
(
fetchCurrentCalendarDisplayName
(
workerInfo
.
worker
.
user
.
id
))
}
return
(
...
...
@@ -234,8 +259,11 @@ function MonthCalendar() {
<
CalendarModalWorkerContent
workerInfo
=
{
workerInfo
}
allUserProjects
=
{
allUserProjects
}
workers
=
{
project
?.
project
?.
members
}
onChangeProjectHandler
=
{
onChangeProjectHandler
}
onChangeWorkerHandler
=
{
onChangeWorkerHandler
}
handleClose
=
{
handleClose
}
onChangeCalendarUser
=
{
onChangeCalendarUser
}
/
>
<
/DefaultModal
>
...
...
@@ -246,6 +274,8 @@ function MonthCalendar() {
incrementMonth
=
{
incrementMonth
}
handleOpen
=
{
handleOpen
}
currentCalendarDisplayName
=
{
currentCalendarDisplayName
}
user
=
{
user
}
userId
=
{
userId
}
/
>
<
MonthCalendarBody
month
=
{
dateNow
.
month
}
...
...
planner-front/src/store/actions/projectsActions.js
View file @
0fe75260
planner-front/src/store/actions/tasksActions.js
View file @
0fe75260
...
...
@@ -141,8 +141,7 @@ export const editCalendarTask = (task, taskId, userId) => {
return
async
(
dispatch
)
=>
{
dispatch
(
editTaskRequest
());
try
{
const
response
=
await
axios
.
put
(
`/copy-tasks/change-copy/
${
taskId
}
`
,
task
);
console
.
log
(
response
.
data
)
await
axios
.
put
(
`/copy-tasks/change-copy/
${
taskId
}
`
,
task
);
dispatch
(
editTaskSuccess
())
dispatch
(
fetchCalendarTasks
(
userId
))
}
catch
(
error
)
{
...
...
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