Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
students
butter-studio
Commits
94c49a7a
Commit
94c49a7a
authored
Jul 20, 2021
by
Kim, Subin
Browse files
MovieTable 관련 정보
parent
d981d547
Changes
6
Hide whitespace changes
Inline
Side-by-side
client/src/apis/movie.api.js
View file @
94c49a7a
...
...
@@ -6,14 +6,43 @@ const getfromTM = async (category) => {
return
response
.
data
}
const
getAllfromTM
=
async
()
=>
{
const
payload
=
{
params
:
{
pageNum
:
1
}
}
const
{
data
}
=
await
axios
.
get
(
`
${
baseUrl
}
/api/movie/all`
,
payload
)
return
data
}
const
submit
=
async
(
movieId
)
=>
{
const
{
data
}
=
await
axios
.
post
(
`
${
baseUrl
}
/api/movie/
${
movieId
}
`
)
console
.
log
(
"
data==
"
,
data
)
return
data
}
const
remove
=
async
(
movieId
)
=>
{
const
{
data
}
=
await
axios
.
delete
(
`
${
baseUrl
}
/api/movie/
${
movieId
}
`
)
return
data
}
const
search
=
async
(
title
)
=>
{
const
payload
=
{
params
:
{
title
:
title
}
}
const
{
data
}
=
await
axios
.
get
(
`
${
baseUrl
}
/api/movie/search`
,
payload
)
console
.
log
(
"
server recive==
"
,
data
)
return
data
}
const
movieApi
=
{
getfromTM
,
submit
getAllfromTM
,
submit
,
remove
,
search
}
export
default
movieApi
\ No newline at end of file
client/src/components/Admin/MovieEdit.js
View file @
94c49a7a
...
...
@@ -18,7 +18,7 @@ const MovieEdit = () => {
async
function
getMovieList
()
{
try
{
setError
(
""
)
const
getMovieList
=
await
movieApi
.
get
Upcoming
fromTM
()
const
getMovieList
=
await
movieApi
.
get
All
fromTM
()
setMovieList
(
getMovieList
)
}
catch
(
error
)
{
catchErrors
(
error
,
setError
)
...
...
client/src/components/MovieTable/MovieTable.js
View file @
94c49a7a
...
...
@@ -6,12 +6,25 @@ import styles from "./movie-table.module.scss";
const
MovieTable
=
({
movieList
})
=>
{
const
[
error
,
setError
]
=
useState
(
""
)
async
function
handle
Click
(
e
,
movieId
)
{
async
function
handle
Submit
(
e
,
movieId
)
{
e
.
preventDefault
();
try
{
setError
(
""
)
await
movieApi
.
submit
(
movieId
)
alert
(
"
서버 등록이 완료되었습니다.
"
)
window
.
location
.
reload
()
}
catch
(
error
)
{
catchErrors
(
error
,
setError
)
}
}
async
function
handleDelete
(
e
,
movieId
)
{
e
.
preventDefault
()
try
{
setError
(
""
)
await
movieApi
.
remove
(
movieId
)
alert
(
"
해당 영화 정보가 서버에서 삭제되었습니다.
"
)
window
.
location
.
reload
()
}
catch
(
error
)
{
catchErrors
(
error
,
setError
)
}
...
...
@@ -51,8 +64,8 @@ const MovieTable = ({ movieList }) => {
예고편
-
{
movie
.
video
!==
false
?
'
O
'
:
'
X
'
}
<
/div
>
<
div
className
=
"
d-flex justify-content-end
"
>
<
button
type
=
"
button
"
className
=
"
btn btn-
primary
"
onClick
=
{(
e
)
=>
handle
Click
(
e
,
movie
.
id
)}
>
등록
<
/button
>
{
/*
<button type="button" className="btn btn-
danger">삭제
</button>
*/
}
{
movie
.
existed
?
<
button
type
=
"
button
"
className
=
"
btn btn-
danger
"
onClick
=
{(
e
)
=>
handle
Delete
(
e
,
movie
.
id
)}
>
삭제
<
/button
>
:
<
button
type
=
"
button
"
className
=
"
btn btn-
primary
"
onClick
=
{(
e
)
=>
handleSubmit
(
e
,
movie
.
id
)}
>
등록
<
/button>
}
<
/div
>
<
/td
>
<
/tr
>
...
...
client/src/components/MovieTable/movie-table.module.scss
View file @
94c49a7a
.Row
:hover
{
background
:
rgba
(
0
,
0
,
0
,
0
.075
);
.Row
{
cursor
:
pointer
;
&
:hover
{
background
:
rgba
(
0
,
0
,
0
,
0
.075
);
}
}
.word
{
...
...
server/controllers/movie.controller.js
View file @
94c49a7a
...
...
@@ -4,7 +4,7 @@ import sequelize from 'sequelize';
const
{
Op
}
=
sequelize
const
comparePopularMovie
=
async
(
req
,
res
)
=>
{
const
response
=
await
axios
.
get
(
'
https://api.themoviedb.org/3/movie/popular?api_key=
1477348488076cafd4dcf973a314957d
&language=ko-KR
'
)
const
response
=
await
axios
.
get
(
`
https://api.themoviedb.org/3/movie/popular?api_key=
${
process
.
env
.
TMDB_APP_KEY
}
&language=ko-KR
`
)
const
movies
=
response
.
data
console
.
log
(
'
movies
'
,
movies
)
try
{
...
...
@@ -15,14 +15,14 @@ const comparePopularMovie = async (req, res) => {
}
const
getMovieByCategory
=
async
(
req
,
res
,
next
,
category
)
=>
{
const
responsePopular
=
await
axios
.
get
(
`https://api.themoviedb.org/3/movie/
${
category
}
?api_key=
${
process
.
env
.
TMDB_APP_KEY
}
&language=ko-KR&page=1`
)
const
TMDBmovies
=
responsePopular
.
data
.
results
const
TMDBmovieIds
=
[]
TMDBmovies
.
forEach
(
element
=>
{
TMDBmovieIds
.
push
(
element
.
id
)
});
console
.
log
(
TMDBmovieIds
)
try
{
const
TMDBmovieIds
=
[]
const
movieIds
=
[]
const
response
=
await
axios
.
get
(
`https://api.themoviedb.org/3/movie/
${
category
}
?api_key=
${
process
.
env
.
TMDB_APP_KEY
}
&language=ko-KR&page=1`
)
const
TMDBmovies
=
response
.
data
.
results
TMDBmovies
.
forEach
(
element
=>
{
TMDBmovieIds
.
push
(
element
.
id
)
})
const
responseAfterCompare
=
await
Movie
.
findAll
({
where
:
{
movieId
:
{
...
...
@@ -30,7 +30,6 @@ const getMovieByCategory = async (req, res, next, category) => {
}
}
})
const
movieIds
=
[]
responseAfterCompare
.
forEach
(
el
=>
{
movieIds
.
push
(
el
.
movieId
)
})
...
...
@@ -51,7 +50,7 @@ const getMovieById = async (req, res) => {
const
movie
=
await
axios
.
get
(
`https://api.themoviedb.org/3/movie/
${
movieId
}
?api_key=
${
process
.
env
.
TMDB_APP_KEY
}
&language=ko-KR`
)
return
movie
.
data
})
)
)
console
.
log
(
elements
)
res
.
json
(
elements
)
}
catch
(
error
)
{
...
...
@@ -59,13 +58,70 @@ const getMovieById = async (req, res) => {
}
}
const
getAllMovie
=
async
(
req
,
res
)
=>
{
try
{
const
{
pageNum
}
=
req
.
query
const
TMDBmovieIds
=
[]
const
now
=
new
Date
()
const
monthAgo
=
new
Date
(
now
.
setMonth
(
now
.
getMonth
()
-
1
)).
toJSON
().
split
(
/T/
)[
0
]
const
response
=
await
axios
.
get
(
`https://api.themoviedb.org/3/discover/movie?api_key=
${
process
.
env
.
TMDB_APP_KEY
}
&language=ko-KR®ion=KR&sort_by=release_date.asc&release_date.gte=
${
monthAgo
}
&page=
${
pageNum
}
`
)
const
TMDBmovies
=
response
.
data
.
results
TMDBmovies
.
forEach
(
element
=>
{
TMDBmovieIds
.
push
(
element
.
id
)
})
const
responseAfterCompare
=
await
Movie
.
findAll
({
where
:
{
movieId
:
TMDBmovieIds
},
attributes
:
[
'
movieId
'
]
})
responseAfterCompare
.
forEach
(
element
=>
TMDBmovies
.
find
((
movie
)
=>
{
if
(
movie
.
existed
!==
true
&&
movie
.
id
===
element
.
movieId
)
{
movie
.
existed
=
true
}
else
if
(
movie
.
existed
!==
true
)
movie
.
existed
=
false
}))
return
res
.
json
(
TMDBmovies
)
}
catch
(
error
)
{
return
res
.
status
(
500
).
send
(
error
.
message
||
"
영화 가져오는 중 에러 발생
"
)
}
}
const
create
=
async
(
req
,
res
)
=>
{
try
{
const
{
movieId
}
=
req
.
params
const
newMovie
=
await
Movie
.
create
({
movieId
:
movieId
});
return
res
.
json
(
newMovie
);
const
{
data
}
=
await
axios
.
get
(
`https://api.themoviedb.org/3/movie/
${
movieId
}
?api_key=
${
process
.
env
.
TMDB_APP_KEY
}
&language=ko-KR`
)
const
newMovie
=
await
Movie
.
create
({
movieId
:
data
.
id
,
title
:
data
.
title
,
release_date
:
data
.
release_date
})
return
res
.
json
(
newMovie
)
}
catch
(
error
)
{
return
res
.
status
(
500
).
send
(
error
.
message
||
"
영화 등록 중 에러 발생
"
)
}
}
const
remove
=
async
(
req
,
res
)
=>
{
try
{
const
{
movieId
}
=
req
.
params
const
delMovie
=
await
Movie
.
destroy
({
where
:
{
movieId
:
movieId
}
})
return
res
.
json
(
delMovie
)
}
catch
(
error
)
{
return
res
.
status
(
500
).
send
(
error
.
message
||
"
영화 삭제 중 에러 발생
"
);
}
}
const
findforKeyword
=
async
(
req
,
res
)
=>
{
try
{
console
.
log
(
"
req==
"
,
req
.
query
)
const
{
title
}
=
req
.
query
const
{
count
,
rows
}
=
await
Movie
.
findAndCountAll
({
where
:
{
title
:
{
[
Op
.
substring
]:
title
}
}
});
console
.
log
(
"
finds==
"
,
rows
)
return
res
.
json
({
count
,
rows
})
}
catch
(
error
)
{
return
res
.
status
(
500
).
send
(
error
.
message
||
"
영화
등록
중 에러 발생
"
);
return
res
.
status
(
500
).
send
(
error
.
message
||
"
영화
검색
중 에러 발생
"
);
}
}
...
...
@@ -73,5 +129,8 @@ export default {
comparePopularMovie
,
getMovieByCategory
,
getMovieById
,
getAllMovie
,
create
,
remove
,
findforKeyword
}
\ No newline at end of file
server/routes/movie.route.js
View file @
94c49a7a
...
...
@@ -8,9 +8,18 @@ router
.
post
(
movieCtrl
.
comparePopularMovie
)
.
get
(
movieCtrl
.
comparePopularMovie
)
router
.
route
(
"
/all
"
)
.
get
(
movieCtrl
.
getAllMovie
)
router
.
route
(
"
/search
"
)
.
get
(
movieCtrl
.
findforKeyword
)
router
.
route
(
"
/:movieId
"
)
.
post
(
movieCtrl
.
create
)
.
delete
(
movieCtrl
.
remove
)
router
.
route
(
'
/showmovie/:category
'
)
...
...
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