2026-05-31 15:42:52 +09:00
|
|
|
import http from './http'
|
|
|
|
|
|
|
|
|
|
// 백엔드 /api/board 엔드포인트와 매핑
|
|
|
|
|
export const boardApi = {
|
2026-06-04 05:01:33 +09:00
|
|
|
list({ category = '', page = 1, size = 10, tag = '', keyword = '', searchType = '' } = {}) {
|
2026-05-31 15:42:52 +09:00
|
|
|
return http.get('/board/posts', {
|
|
|
|
|
params: {
|
2026-06-04 05:01:33 +09:00
|
|
|
category: category || undefined,
|
2026-05-31 15:42:52 +09:00
|
|
|
page,
|
|
|
|
|
size,
|
|
|
|
|
tag: tag || undefined,
|
|
|
|
|
keyword: keyword || undefined,
|
|
|
|
|
searchType: keyword ? searchType || 'title' : undefined,
|
|
|
|
|
},
|
|
|
|
|
})
|
|
|
|
|
},
|
|
|
|
|
get(id) {
|
|
|
|
|
return http.get(`/board/posts/${id}`)
|
|
|
|
|
},
|
|
|
|
|
create(payload) {
|
|
|
|
|
return http.post('/board/posts', payload)
|
|
|
|
|
},
|
|
|
|
|
update(id, payload) {
|
|
|
|
|
return http.put(`/board/posts/${id}`, payload)
|
|
|
|
|
},
|
|
|
|
|
remove(id) {
|
|
|
|
|
return http.delete(`/board/posts/${id}`)
|
|
|
|
|
},
|
2026-06-07 19:17:44 +09:00
|
|
|
// 본문 인라인 이미지 업로드(서버 DB 저장) → { url } (예: /api/images/123)
|
|
|
|
|
uploadImage(blob) {
|
|
|
|
|
const fd = new FormData()
|
|
|
|
|
fd.append('image', blob, 'image.jpg')
|
|
|
|
|
return http.post('/board/images', fd, {
|
|
|
|
|
headers: { 'Content-Type': 'multipart/form-data' },
|
|
|
|
|
timeout: 30000,
|
|
|
|
|
})
|
|
|
|
|
},
|
2026-05-31 15:42:52 +09:00
|
|
|
tags() {
|
|
|
|
|
return http.get('/board/tags')
|
|
|
|
|
},
|
|
|
|
|
tagGroups() {
|
|
|
|
|
return http.get('/board/tag-groups')
|
|
|
|
|
},
|
|
|
|
|
addComment(id, content) {
|
|
|
|
|
return http.post(`/board/posts/${id}/comments`, { content })
|
|
|
|
|
},
|
|
|
|
|
removeComment(commentId) {
|
|
|
|
|
return http.delete(`/board/comments/${commentId}`)
|
|
|
|
|
},
|
|
|
|
|
block(id, reason) {
|
|
|
|
|
return http.post(`/board/posts/${id}/block`, { reason })
|
|
|
|
|
},
|
|
|
|
|
unblock(id) {
|
|
|
|
|
return http.post(`/board/posts/${id}/unblock`)
|
|
|
|
|
},
|
|
|
|
|
}
|