Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
G
greg
Manage
Activity
Members
Labels
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package Registry
Container Registry
Model registry
Operate
Environments
Terraform modules
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
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
This is an archived project. Repository and other project resources are read-only.
Show more breadcrumbs
it-bott-integrasjoner
greg
Commits
3bb81315
Verified
Commit
3bb81315
authored
3 years ago
by
Andreas Ellewsen
Browse files
Options
Downloads
Patches
Plain Diff
Move ou sorting functions to hook
parent
ee42f74c
No related branches found
No related tags found
1 merge request
!124
Greg 61 role button
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
frontend/src/hooks/useOus/index.tsx
+20
-0
20 additions, 0 deletions
frontend/src/hooks/useOus/index.tsx
frontend/src/routes/sponsor/register/stepPersonForm.tsx
+2
-22
2 additions, 22 deletions
frontend/src/routes/sponsor/register/stepPersonForm.tsx
with
22 additions
and
22 deletions
frontend/src/hooks/useOus/index.tsx
+
20
−
0
View file @
3bb81315
...
...
@@ -22,5 +22,25 @@ function useOus(): OuData[] {
return
ous
}
export
const
enSort
=
(
a
:
OuData
,
b
:
OuData
)
=>
{
if
(
a
.
en
>
b
.
en
)
{
return
1
}
if
(
b
.
en
>
a
.
en
)
{
return
-
1
}
return
0
}
export
const
nbSort
=
(
a
:
OuData
,
b
:
OuData
)
=>
{
if
(
a
.
nb
>
b
.
nb
)
{
return
1
}
if
(
b
.
nb
>
a
.
nb
)
{
return
-
1
}
return
0
}
export
type
{
OuData
}
export
default
useOus
This diff is collapsed.
Click to expand it.
frontend/src/routes/sponsor/register/stepPersonForm.tsx
+
2
−
22
View file @
3bb81315
...
...
@@ -11,7 +11,7 @@ import {
}
from
'
@mui/material
'
import
{
Controller
,
SubmitHandler
,
useForm
}
from
'
react-hook-form
'
import
{
DatePicker
}
from
'
@mui/lab
'
import
React
,
{
import
{
forwardRef
,
Ref
,
useEffect
,
...
...
@@ -21,7 +21,7 @@ import React, {
import
{
useTranslation
}
from
'
react-i18next
'
import
{
RegisterFormData
}
from
'
./formData
'
import
{
PersonFormMethods
}
from
'
./personFormMethods
'
import
useOus
,
{
OuData
}
from
'
../../../hooks/useOus
'
import
useOus
,
{
enSort
,
nbSort
}
from
'
../../../hooks/useOus
'
import
useRoleTypes
,
{
RoleTypeData
}
from
'
../../../hooks/useRoleTypes
'
import
{
isValidEmail
}
from
'
../../../utils
'
...
...
@@ -51,26 +51,6 @@ const StepPersonForm = forwardRef(
return
a
.
name_en
.
localeCompare
(
b
.
name_en
)
}
const
enSort
=
(
a
:
OuData
,
b
:
OuData
)
=>
{
if
(
a
.
en
>
b
.
en
)
{
return
1
}
if
(
b
.
en
>
a
.
en
)
{
return
-
1
}
return
0
}
const
nbSort
=
(
a
:
OuData
,
b
:
OuData
)
=>
{
if
(
a
.
nb
>
b
.
nb
)
{
return
1
}
if
(
b
.
nb
>
a
.
nb
)
{
return
-
1
}
return
0
}
const
submit
:
SubmitHandler
<
RegisterFormData
>
=
(
data
)
=>
{
nextHandler
(
data
)
}
...
...
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