Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
idatt2106_2024_02_frontend
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
IDATT2106 - Gruppe 2
idatt2106_2024_02_frontend
Commits
8c23ea7b
Commit
8c23ea7b
authored
11 months ago
by
Eline Evje
Browse files
Options
Downloads
Patches
Plain Diff
refactor: refactored try/catch of userConfigStore
parent
e1c33bdb
No related branches found
Branches containing commit
No related tags found
3 merge requests
!66
Final merge
,
!36
Enhancement/implement account number to config
,
!4
Pipeline fix
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
src/stores/userConfigStore.ts
+20
-13
20 additions, 13 deletions
src/stores/userConfigStore.ts
with
20 additions
and
13 deletions
src/stores/userConfigStore.ts
+
20
−
13
View file @
8c23ea7b
import
{
defineStore
}
from
'
pinia
'
import
{
ref
}
from
'
vue
'
import
authInterceptor
from
'
@/services/authInterceptor
'
import
axios
from
'
axios
'
import
axios
,
{
AxiosError
}
from
'
axios
'
export
const
useUserConfigStore
=
defineStore
(
'
userConfig
'
,
{
state
:
()
=>
({
...
...
@@ -11,7 +12,8 @@ export const useUserConfigStore = defineStore('userConfig', {
type
:
string
specificAmount
:
number
generalAmount
:
number
}[]
}[],
errorMessage
:
ref
<
string
>
(
''
)
}),
actions
:
{
setExperience
(
value
:
string
)
{
...
...
@@ -23,23 +25,28 @@ export const useUserConfigStore = defineStore('userConfig', {
addChallengeTypeConfig
(
type
:
string
,
specificAmount
:
number
,
generalAmount
:
number
)
{
this
.
challengeTypeConfigs
.
push
({
type
,
specificAmount
,
generalAmount
})
},
async
postUserConfig
()
{
postUserConfig
()
{
const
payload
=
{
experience
:
this
.
experience
,
motivation
:
this
.
motivation
,
challengeTypeConfigs
:
Array
.
from
(
this
.
challengeTypeConfigs
)
}
try
{
const
response
=
await
authInterceptor
.
post
(
'
/users/me/config/challenge
'
,
payload
)
console
.
log
(
'
Success:
'
,
response
.
data
)
}
catch
(
error
:
unknown
)
{
if
(
axios
.
isAxiosError
(
error
))
{
console
.
error
(
'
Axios error:
'
,
error
.
response
?.
data
||
error
.
message
)
}
else
{
console
.
error
(
'
An unexpected error occurred:
'
,
error
)
}
}
authInterceptor
.
post
(
'
/config/challenge
'
,
payload
)
.
then
((
response
)
=>
{
console
.
log
(
'
Success:
'
,
response
.
data
)
})
.
catch
((
error
)
=>
{
const
axiosError
=
error
as
AxiosError
if
(
axiosError
.
response
&&
axiosError
.
response
.
data
)
{
const
errorData
=
axiosError
.
response
.
data
as
{
message
:
string
}
this
.
errorMessage
=
errorData
.
message
||
'
An error occurred
'
}
else
{
this
.
errorMessage
=
'
An unexpected error occurred
'
}
console
.
error
(
'
Axios error:
'
,
this
.
errorMessage
)
})
}
}
})
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment