Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
project_ss23_gameunity
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
Container Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Service Desk
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
This is an archived project. Repository and other project resources are read-only.
Show more breadcrumbs
Yusuf Akgül
project_ss23_gameunity
Merge requests
!6
Sort + Search UI
Code
Review changes
Check out branch
Download
Patches
Plain diff
Merged
Sort + Search UI
sortSearch
into
main
Overview
0
Commits
7
Pipelines
1
Changes
1
Merged
Yusuf Akgül
requested to merge
sortSearch
into
main
1 year ago
Overview
0
Commits
7
Pipelines
1
Changes
1
Expand
0
0
Merge request reports
Viewing commit
a82ca115
Prev
Next
Show latest version
1 file
+
56
−
57
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
a82ca115
Sort und Search angepasst.
· a82ca115
Serdar D
authored
1 year ago
components/Sort.tsx
+
56
−
57
Options
"
use client
"
import
{
Box
,
Card
,
CardContent
,
FormControl
,
FormHelperText
,
MenuItem
,
Select
,
SelectChangeEvent
,
Typography
}
from
"
@mui/material
"
;
import
{
useState
,
useEffect
}
from
"
react
"
;
import
{
getGame
,
getGames
}
from
"
@/lib/igdb
"
;
import
{
useEffect
,
useState
}
from
"
react
"
;
import
{
getGames
}
from
"
@/lib/igdb
"
;
import
{
IGame
}
from
"
@/types/types
"
;
import
Image
from
"
next/image
"
;
import
Game
from
"
./Game
"
;
import
{
Box
,
Card
,
CardContent
,
FormControl
,
FormHelperText
,
MenuItem
,
Select
,
SelectChangeEvent
,
Typography
}
from
"
@mui/material
"
;
export
default
function
Sort
()
{
const
[
select
,
setSelect
]
=
useState
(
''
);
const
[
select
,
setSelect
]
=
useState
<
string
>
(
''
);
const
[
games
,
setGames
]
=
useState
<
IGame
[]
>
([]);
useEffect
(()
=>
{
async
function
fetchGames
()
{
//spiele werden über getGames geholt und in den state gesetzt
const
fetchedGames
=
await
getGames
();
setGames
(
fetchedGames
);
}
fetchGames
();
},
[]);
const
handleChange
=
(
event
:
SelectChangeEvent
)
=>
{
setSelect
(
event
.
target
.
value
);
const
selectedOption
=
event
.
target
.
value
as
string
;
setSelect
(
selectedOption
);
if
(
selectedOption
===
"
name
"
)
{
const
sortedGames
=
[...
games
].
sort
((
a
,
b
)
=>
a
.
name
.
localeCompare
(
b
.
name
));
setGames
(
sortedGames
);
}
};
const
sortGames
=
()
=>
{
if
(
select
===
"
name
"
)
{
// Sortiert die Spiele nach namen (aufsteigend)
return
games
.
sort
((
a
,
b
)
=>
a
.
name
.
localeCompare
(
b
.
name
));
}
// returned unsortierte games
return
games
;
// Fetch die games wenn die komponenten geladen sind.
useEffect
(()
=>
{
fetchGames
();
},
[]);
const
fetchGames
=
async
()
=>
{
try
{
const
games
=
await
getGames
();
// methode um die games zu fetchen
setGames
(
games
);
}
catch
(
error
)
{
console
.
error
(
"
Error fetching games:
"
,
error
);
}
};
const
sortedGames
=
sortGames
();
return
(
<
Box
sx
=
{
{
position
:
'
sticky
'
,
top
:
0
}
}
>
<
Card
variant
=
"outlined"
>
<
CardContent
>
<
Typography
>
Filter
</
Typography
>
<
FormControl
fullWidth
>
<
FormHelperText
>
Sort By
</
FormHelperText
>
<
Select
value
=
{
select
}
onChange
=
{
handleChange
}
displayEmpty
inputProps
=
{
{
'
aria-label
'
:
'
Without label
'
}
}
>
<
MenuItem
value
=
""
>
<
em
>
Any
</
em
>
</
MenuItem
>
<
MenuItem
value
=
"name"
>
Name
</
MenuItem
>
</
Select
>
</
FormControl
>
</
CardContent
>
</
Card
>
{
/* Zeigt sortierte liste */
}
{
sortedGames
.
map
(
game
=>
(
<
div
key
=
{
game
.
id
}
>
{
game
.
name
}
</
div
>
))
}
</
Box
>
<
Box
sx
=
{
{
position
:
'
sticky
'
,
top
:
0
}
}
>
<
Card
variant
=
"outlined"
>
<
CardContent
>
<
Typography
>
Filter
</
Typography
>
<
FormControl
fullWidth
>
<
FormHelperText
>
Sort By
</
FormHelperText
>
<
Select
value
=
{
select
}
onChange
=
{
handleChange
}
displayEmpty
inputProps
=
{
{
'
aria-label
'
:
'
Without label
'
}
}
>
<
MenuItem
value
=
""
>
<
em
>
Any
</
em
>
</
MenuItem
>
<
MenuItem
value
=
"name"
>
Name
</
MenuItem
>
</
Select
>
</
FormControl
>
</
CardContent
>
</
Card
>
{
/* zeigt sortierte games */
}
{
games
.
map
((
game
)
=>
(
<
Game
key
=
{
game
.
id
}
id
=
{
game
.
id
}
name
=
{
game
.
name
}
cover
=
{
game
.
cover
}
/>
))
}
</
Box
>
)
}
\ No newline at end of file
}
\ No newline at end of file
Loading