Commit 0cef6d11 authored by 이재연's avatar 이재연
Browse files

0115

parent 1dca5038
......@@ -5,13 +5,13 @@ import axios from 'axios';
import catchErrors from '../utils/catchErrors';
function SubNav() {
const [categorysDiv, setCategorysDiv] = useState([])
const [categoriesDiv, setCategoriesDiv] = useState([])
const [error, setError] = useState('')
useEffect(async () => {
try {
const response = await axios.get('/api/categorys')
const response = await axios.get('/api/categories/main')
let list = []
Object.keys(response.data[0]).forEach((ele) => {
const url = ele.toLowerCase()
......@@ -19,7 +19,7 @@ function SubNav() {
<Nav.Link as={Link} to={`/categories/${url}`}>{ele}</Nav.Link>
)
})
setCategorysDiv(list)
setCategoriesDiv(list)
} catch (error) {
catchErrors(error, setError)
}
......@@ -35,7 +35,7 @@ function SubNav() {
`}
</style>
<Nav>
{categorysDiv.map(item => item)}
{categoriesDiv.map(item => item)}
</Nav>
</Navbar>
)
......
......@@ -35,7 +35,7 @@ function Login() {
try {
setError('')
const response=await axios.post('/api/auth/login', user)
handleLogin(response.data.userId)
handleLogin(response.data)
setSuccess(true)
} catch (error) {
catchErrors(error, setError)
......
import axios from "axios"
export function handleLogin(userId){
localStorage.setItem('loginStatus',userId)
export function handleLogin({userId,role,name}){
localStorage.setItem('id',userId)
localStorage.setItem('role',role)
localStorage.setItem('name',name)
}
export async function handleLogout(){
localStorage.removeItem('loginStatus')
localStorage.removeItem('id')
localStorage.removeItem('role')
localStorage.removeItem('name')
await axios.get('/api/auth/logout')
window.location.href='/'
}
export function isAuthenticated(){
const userId= localStorage.getItem('loginStatus')
const userId= localStorage.getItem('id')
if(userId){
return userId
} else{
......
......@@ -28,7 +28,7 @@ app.use('/images', express.static('uploads/'))
// app.use('/', indexRouter);
app.use('/', kakaopayRoutes)
app.use('/api/categorys',categoryRouter)
app.use('/api/categories',categoryRouter)
app.use('/api/users',userRouter)
app.use('/api/auth',authRouter)
app.use('/api/product', productRouter)
......
......@@ -7,10 +7,10 @@ const login = async(req,res)=>{
const {id, password} =req.body
console.log(id,password)
try{
const user=await User.findOne({id}).select('+password')
const user=await User.findOne({id}).select('password role name')
console.log('u=',user)
if(!user){
return res.status(404).send(`${id}가 존재하지 않습니다.`)
}
const passwordMatch= await bcrypt.compare(password, user.password)
......@@ -23,7 +23,7 @@ const login = async(req,res)=>{
httpOnly:true,
secure:config.env ==='production'
})
res.json({userId:user._id})
res.json({userId:user._id, role: user.role, name: user.name})
}else{
res.status(401).send('비밀번호가 일치하지 않습니다.')
......
import Category from "../schemas/Category.js";
const getCategory = async (req, res) => {
console.log("dsadd=")
try {
const category = await Category.find({}, {_id: 0})
res.json(category)
......@@ -10,4 +11,16 @@ const getCategory = async (req, res) => {
}
}
export default { getCategory }
\ No newline at end of file
const getSubCategory=(req,res)=>{
}
const getsubId=(req,res,next,sub)=>{
const subcategory = await category.find({"Dress"})
console.log('sub=',sub)
next()
}
export default { getCategory , getsubId, getSubCategory}
\ No newline at end of file
......@@ -41,12 +41,10 @@ const getlist=(req,res)=>{
const categoryId = async (req, res, next, category) => {
try {
console.log(category)
const productslist = await Product.find({"main_category": `${category}`})
const productslist = await Product.find({main_category: category})
if (!productslist) {
res.status(404).send('상품을 찾을 수 없습니다.')
}
console.log("list=",productslist)
req.productslist = productslist
next()
} catch (error) {
......@@ -63,7 +61,7 @@ const subgetlist=(req,res)=>{
}
const subcategoryId = async (req, res, next, subcategory) => {
try {
const subproductslist = await Product.find({"sub_category":`${subcategory}`})
const subproductslist = await Product.find({sub_category:subcategory})
if (!subproductslist) {
res.status(404).send('상품을 찾을 수 없습니다.')
}
......
......@@ -5,7 +5,7 @@ import bcrypt from 'bcryptjs';
const signup = async (req, res) => {
const { name, number1, number2, id, password, tel } = req.body
const { name, number1, number2, id, password, tel ,role} = req.body
console.log(req.body)
try {
......@@ -27,7 +27,7 @@ const signup = async (req, res) => {
password: hash,
tel,
}).save()
await new Cart({ userId: newUser._id }).save()
await new Cart({ userId: newUser._id,role}).save()
console.log(newUser)
res.json(newUser)
......
......@@ -3,7 +3,12 @@ import categoryCtrl from "../controllers/category.controller.js";
const router = express.Router()
router.route('/')
router.route('/main')
.get(categoryCtrl.getCategory)
router.route('/sub/:sub')
.get(categoryCtrl.getSubCategory)
router.param('sub',categoryCtrl.getsubId)
export default router
\ No newline at end of file
......@@ -2,7 +2,7 @@ import mongoose from 'mongoose'
const { Array } = mongoose.Schema.Types
const CategorysSchema = new mongoose.Schema ({
const CategoriesSchema = new mongoose.Schema ({
"DRESS": {
type: Array,
required: true
......@@ -33,4 +33,4 @@ const CategorysSchema = new mongoose.Schema ({
},
})
export default mongoose.models.Categorys || mongoose.model('Categorys', CategorysSchema)
\ No newline at end of file
export default mongoose.models.Categories || mongoose.model('Categories', CategoriesSchema)
\ No newline at end of file
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment