Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Contribute to GitLab
Sign in
Toggle navigation
H
hw92
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
5
Issues
5
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
Болатов Ален
hw92
Commits
580111f4
Commit
580111f4
authored
Apr 01, 2023
by
Рахметова Альбина
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
created store and slices
parent
a16d2cc7
Hide whitespace changes
Inline
Side-by-side
Showing
9 changed files
with
336 additions
and
3 deletions
+336
-3
main.tsx
frontend/src/main.tsx
+10
-3
ICommentState.ts
frontend/src/store/comments/ICommentState.ts
+7
-0
comments.slice.ts
frontend/src/store/comments/comments.slice.ts
+75
-0
createAppAsyncThunk.ts
frontend/src/store/createAppAsyncThunk.ts
+8
-0
IPostState.ts
frontend/src/store/posts/IPostState.ts
+8
-0
posts.slice.ts
frontend/src/store/posts/posts.slice.ts
+93
-0
store.ts
frontend/src/store/store.ts
+31
-0
IUserState.ts
frontend/src/store/users/IUserState.ts
+8
-0
users.slice.ts
frontend/src/store/users/users.slice.ts
+96
-0
No files found.
frontend/src/main.tsx
View file @
580111f4
...
@@ -2,9 +2,16 @@ import React from 'react'
...
@@ -2,9 +2,16 @@ import React from 'react'
import
ReactDOM
from
'react-dom/client'
import
ReactDOM
from
'react-dom/client'
import
App
from
'./App'
import
App
from
'./App'
import
'./index.css'
import
'./index.css'
import
{
BrowserRouter
}
from
'react-router-dom'
import
{
Provider
}
from
'react-redux'
import
store
from
'./store/store'
ReactDOM
.
createRoot
(
document
.
getElementById
(
'root'
)
as
HTMLElement
).
render
(
ReactDOM
.
createRoot
(
document
.
getElementById
(
'root'
)
as
HTMLElement
).
render
(
<
React
.
StrictMode
>
<
BrowserRouter
>
<
App
/>
<
Provider
store=
{
store
}
>
</
React
.
StrictMode
>,
<
App
/>
</
Provider
>
</
BrowserRouter
>
)
)
frontend/src/store/comments/ICommentState.ts
0 → 100644
View file @
580111f4
import
IComment
from
"../../interfaces/IComment"
export
default
interface
ICommentState
{
comments
:
IComment
[]
loadingComments
:
boolean
messageComments
:
string
}
\ No newline at end of file
frontend/src/store/comments/comments.slice.ts
0 → 100644
View file @
580111f4
import
{
createSlice
}
from
'@reduxjs/toolkit'
import
{
createAppAsyncThunk
}
from
'../createAppAsyncThunk'
import
IResponse
from
'../../interfaces/IResponse'
import
IComment
from
'../../interfaces/IComment'
import
ICommentState
from
'./ICommentState'
import
{
commentsApi
}
from
'../../api/commentApi'
import
ICommentDto
from
'../../interfaces/ICommentDto'
const
namespace
=
'comments'
export
const
getCommentsByPost
=
createAppAsyncThunk
(
`
${
namespace
}
/getCommentsByPost`
,
async
(
postId
:
string
):
Promise
<
IResponse
<
IComment
[]
|
undefined
>>
=>
{
return
commentsApi
.
getCommentsByPost
(
postId
)
}
)
export
const
createComment
=
createAppAsyncThunk
(
`
${
namespace
}
/createComment`
,
async
(
comment
:
ICommentDto
)
=>
{
return
commentsApi
.
createComment
(
comment
)
}
)
export
const
deleteCommentById
=
createAppAsyncThunk
(
`
${
namespace
}
/deleteCommentById`
,
async
(
id
:
string
)
=>
{
return
commentsApi
.
deleteCommentById
(
id
)
}
)
export
const
commentsSlice
=
createSlice
({
name
:
namespace
,
initialState
:
{
comments
:
[]
as
IComment
[],
loadingComments
:
false
,
messageComments
:
''
}
as
ICommentState
,
reducers
:
{},
extraReducers
:
(
builder
)
=>
{
builder
.
addCase
(
getCommentsByPost
.
rejected
,
(
state
)
=>
{
state
.
loadingComments
=
false
})
.
addCase
(
getCommentsByPost
.
pending
,
(
state
)
=>
{
state
.
loadingComments
=
true
})
.
addCase
(
getCommentsByPost
.
fulfilled
,
(
state
,
action
)
=>
{
state
.
loadingComments
=
false
state
.
comments
=
action
.
payload
.
result
as
IComment
[]
state
.
messageComments
=
action
.
payload
.
message
})
.
addCase
(
createComment
.
rejected
,
(
state
)
=>
{
state
.
loadingComments
=
false
})
.
addCase
(
createComment
.
pending
,
(
state
)
=>
{
state
.
loadingComments
=
true
})
.
addCase
(
createComment
.
fulfilled
,
(
state
,
action
)
=>
{
state
.
loadingComments
=
false
state
.
messageComments
=
action
.
payload
.
message
})
.
addCase
(
deleteCommentById
.
rejected
,
(
state
)
=>
{
state
.
loadingComments
=
false
})
.
addCase
(
deleteCommentById
.
pending
,
(
state
)
=>
{
state
.
loadingComments
=
true
})
.
addCase
(
deleteCommentById
.
fulfilled
,
(
state
,
action
)
=>
{
state
.
loadingComments
=
false
state
.
messageComments
=
action
.
payload
.
message
})
}
})
\ No newline at end of file
frontend/src/store/createAppAsyncThunk.ts
0 → 100644
View file @
580111f4
import
{
createAsyncThunk
}
from
"@reduxjs/toolkit"
import
{
AppDispatch
,
AppState
}
from
"./store"
export
const
createAppAsyncThunk
=
createAsyncThunk
.
withTypes
<
{
state
:
AppState
dispatch
:
AppDispatch
rejectValue
:
string
}
>
()
\ No newline at end of file
frontend/src/store/posts/IPostState.ts
0 → 100644
View file @
580111f4
import
IPost
from
"../../interfaces/IPost"
export
default
interface
IPostState
{
posts
:
IPost
[]
post
:
IPost
loadingPosts
:
boolean
messagePosts
:
string
}
\ No newline at end of file
frontend/src/store/posts/posts.slice.ts
0 → 100644
View file @
580111f4
import
{
createSlice
}
from
'@reduxjs/toolkit'
import
IPost
from
'../../interfaces/IPost'
import
IPostState
from
'./IPostState'
import
{
createAppAsyncThunk
}
from
'../createAppAsyncThunk'
import
{
postApi
}
from
'../../api/postApi'
import
IResponse
from
'../../interfaces/IResponse'
const
namespace
=
'posts'
export
const
getPosts
=
createAppAsyncThunk
(
`
${
namespace
}
/getPosts`
,
async
():
Promise
<
IResponse
<
IPost
[]
|
undefined
>>
=>
{
return
postApi
.
getPosts
()
}
)
export
const
getPostById
=
createAppAsyncThunk
(
`
${
namespace
}
/getPostById`
,
async
(
id
:
string
):
Promise
<
IResponse
<
IPost
|
undefined
>>
=>
{
return
postApi
.
getPostById
(
id
)
}
)
export
const
createPost
=
createAppAsyncThunk
(
`
${
namespace
}
/createPost`
,
async
(
post
:
FormData
)
=>
{
return
postApi
.
createPost
(
post
)
}
)
export
const
deletePostById
=
createAppAsyncThunk
(
`
${
namespace
}
/deletePostById`
,
async
(
id
:
string
)
=>
{
return
postApi
.
deletePostById
(
id
)
}
)
export
const
postsSlice
=
createSlice
({
name
:
namespace
,
initialState
:
{
posts
:
[]
as
IPost
[],
post
:
{},
loadingPosts
:
false
,
messagePosts
:
''
}
as
IPostState
,
reducers
:
{},
extraReducers
:
(
builder
)
=>
{
builder
.
addCase
(
getPosts
.
rejected
,
(
state
)
=>
{
state
.
loadingPosts
=
false
})
.
addCase
(
getPosts
.
pending
,
(
state
)
=>
{
state
.
loadingPosts
=
true
})
.
addCase
(
getPosts
.
fulfilled
,
(
state
,
action
)
=>
{
state
.
loadingPosts
=
false
state
.
posts
=
action
.
payload
.
result
as
IPost
[]
state
.
messagePosts
=
action
.
payload
.
message
})
.
addCase
(
getPostById
.
rejected
,
(
state
)
=>
{
state
.
loadingPosts
=
false
})
.
addCase
(
getPostById
.
pending
,
(
state
)
=>
{
state
.
loadingPosts
=
true
})
.
addCase
(
getPostById
.
fulfilled
,
(
state
,
action
)
=>
{
state
.
loadingPosts
=
false
state
.
post
=
action
.
payload
.
result
as
IPost
state
.
messagePosts
=
action
.
payload
.
message
})
.
addCase
(
createPost
.
rejected
,
(
state
)
=>
{
state
.
loadingPosts
=
false
})
.
addCase
(
createPost
.
pending
,
(
state
)
=>
{
state
.
loadingPosts
=
true
})
.
addCase
(
createPost
.
fulfilled
,
(
state
,
action
)
=>
{
state
.
loadingPosts
=
false
state
.
messagePosts
=
action
.
payload
.
message
})
.
addCase
(
deletePostById
.
rejected
,
(
state
)
=>
{
state
.
loadingPosts
=
false
})
.
addCase
(
deletePostById
.
pending
,
(
state
)
=>
{
state
.
loadingPosts
=
true
})
.
addCase
(
deletePostById
.
fulfilled
,
(
state
,
action
)
=>
{
state
.
loadingPosts
=
false
state
.
messagePosts
=
action
.
payload
.
message
})
}
})
\ No newline at end of file
frontend/src/store/store.ts
0 → 100644
View file @
580111f4
import
{
configureStore
,
ThunkAction
,
Action
}
from
"@reduxjs/toolkit"
import
{
useDispatch
}
from
'react-redux'
import
{
postsSlice
}
from
"./posts/posts.slice"
import
{
commentsSlice
}
from
"./comments/comments.slice"
import
{
usersSlice
}
from
"./users/users.slice"
const
makeStore
=
()
=>
{
return
configureStore
({
reducer
:
{
posts
:
postsSlice
.
reducer
,
comments
:
commentsSlice
.
reducer
,
users
:
usersSlice
.
reducer
}
})
}
const
store
=
makeStore
()
export
type
AppDispatch
=
typeof
store
.
dispatch
;
export
type
AppStore
=
ReturnType
<
typeof
makeStore
>
;
export
type
AppState
=
ReturnType
<
AppStore
[
"getState"
]
>
;
export
type
AppThunk
<
ReturnType
=
void
>
=
ThunkAction
<
ReturnType
,
AppState
,
unknown
,
Action
>
;
export
const
useAppDispatch
:
()
=>
AppDispatch
=
useDispatch
;
export
default
store
\ No newline at end of file
frontend/src/store/users/IUserState.ts
0 → 100644
View file @
580111f4
import
IUserGetDto
from
"../../interfaces/IUserGetDto"
;
export
default
interface
IUsersState
{
user
:
IUserGetDto
|
undefined
isAuth
:
boolean
loadingUser
:
boolean
messageUser
:
string
}
\ No newline at end of file
frontend/src/store/users/users.slice.ts
0 → 100644
View file @
580111f4
import
{
createSlice
}
from
"@reduxjs/toolkit"
;
import
{
userApi
}
from
"../../api/userApi"
;
import
IUser
from
"../../interfaces/IUser"
;
import
IUserCreateDto
from
"../../interfaces/IUserCreateDto"
;
import
{
createAppAsyncThunk
}
from
"../createAppAsyncThunk"
;
import
IUsersState
from
'./IUserState'
const
namespace
=
'users'
export
const
login
=
createAppAsyncThunk
(
`
${
namespace
}
/login`
,
async
(
user
:
IUserCreateDto
)
=>
{
return
userApi
.
login
(
user
)
}
)
export
const
register
=
createAppAsyncThunk
(
`
${
namespace
}
/register`
,
async
(
user
:
IUserCreateDto
)
=>
{
return
userApi
.
register
(
user
)
}
)
export
const
checkToken
=
createAppAsyncThunk
(
`
${
namespace
}
/checkToken`
,
async
()
=>
{
return
userApi
.
checkToken
()
}
)
export
const
usersSlice
=
createSlice
({
name
:
namespace
,
initialState
:
{
user
:
{}
as
IUser
,
isAuth
:
false
,
loadingUser
:
false
,
messageUser
:
''
}
as
IUsersState
,
reducers
:
{},
extraReducers
:
(
builder
)
=>
{
builder
.
addCase
(
login
.
rejected
,
(
state
)
=>
{
state
.
loadingUser
=
false
})
.
addCase
(
login
.
pending
,
(
state
)
=>
{
state
.
loadingUser
=
true
})
.
addCase
(
login
.
fulfilled
,
(
state
,
action
)
=>
{
state
.
loadingUser
=
false
const
user
=
action
.
payload
.
result
state
.
user
=
user
state
.
messageUser
=
action
.
payload
.
message
if
(
user
)
{
localStorage
.
setItem
(
'token'
,
user
.
token
)
state
.
isAuth
=
true
}
})
.
addCase
(
register
.
rejected
,
(
state
)
=>
{
state
.
loadingUser
=
false
})
.
addCase
(
register
.
pending
,
(
state
)
=>
{
state
.
loadingUser
=
true
})
.
addCase
(
register
.
fulfilled
,
(
state
,
action
)
=>
{
state
.
loadingUser
=
false
const
user
=
action
.
payload
.
result
state
.
user
=
user
state
.
messageUser
=
action
.
payload
.
message
if
(
user
)
{
localStorage
.
setItem
(
'token'
,
user
.
token
)
state
.
isAuth
=
true
}
})
.
addCase
(
checkToken
.
rejected
,
(
state
)
=>
{
state
.
loadingUser
=
false
})
.
addCase
(
checkToken
.
pending
,
(
state
)
=>
{
state
.
loadingUser
=
true
})
.
addCase
(
checkToken
.
fulfilled
,
(
state
,
action
)
=>
{
state
.
loadingUser
=
false
const
user
=
action
.
payload
.
result
state
.
user
=
user
state
.
messageUser
=
action
.
payload
.
message
if
(
user
)
{
state
.
isAuth
=
true
}
else
{
state
.
isAuth
=
false
}
})
}
})
export
const
{}
=
usersSlice
.
actions
\ No newline at end of file
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