Skip to content
Projects
Groups
Snippets
Help
Loading...
Sign in / Register
Toggle navigation
F
final-exam
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Packages
Packages
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Nawasan Wisitsingkhon
final-exam
Commits
1a0e2250
Commit
1a0e2250
authored
Oct 05, 2023
by
Nawasan Wisitsingkhon
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
category admin -> can search
parent
5f1c16ca
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
13 additions
and
2 deletions
+13
-2
category.js
src/pages/admin/category.js
+13
-2
No files found.
src/pages/admin/category.js
View file @
1a0e2250
...
...
@@ -18,8 +18,10 @@ import { Edit } from "@mui/icons-material";
import
UpdateCategory
from
"@/components/category/UpdateCategory"
;
import
DeleteCategory
from
"@/components/category/DeleteCategory"
;
import
Head
from
"next/head"
;
import
{
useRouter
}
from
"next/router"
;
export
default
function
AdminCategory
()
{
const
router
=
useRouter
();
const
[
modal
,
setModal
]
=
useState
(
false
);
const
[
message
,
setMessage
]
=
useState
({
message
:
""
,
error
:
false
});
const
[
deleteState
,
setDeleteState
]
=
useState
({
...
...
@@ -68,7 +70,15 @@ export default function AdminCategory() {
<
/TableRow
>
<
/TableHead
>
<
TableBody
>
{
category
.
map
((
cate
,
idx
)
=>
(
{
category
.
map
(
(
cate
,
idx
)
=>
(
!
router
.
query
?.
q
||
cate
.
id
===
Number
(
router
.
query
.
q
)
||
String
(
cate
.
name
)
.
toLocaleLowerCase
()
.
includes
(
String
(
router
.
query
.
q
).
toLocaleLowerCase
()
))
&&
(
<
TableRow
key
=
{
idx
}
>
<
TableCell
>
{
cate
.
id
}
<
/TableCell
>
<
TableCell
>
{
cate
.
name
}
<
/TableCell
>
...
...
@@ -96,7 +106,8 @@ export default function AdminCategory() {
<
/Button
>
<
/TableCell
>
<
/TableRow
>
))}
)
)}
<
/TableBody
>
<
/Table
>
<
/div
>
...
...
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