[{"C:\\Users\\hello\\Desktop\\project\\search-page\\client\\src\\index.js":"1","C:\\Users\\hello\\Desktop\\project\\search-page\\client\\src\\reportWebVitals.js":"2","C:\\Users\\hello\\Desktop\\project\\search-page\\client\\src\\Components\\Login.js":"3","C:\\Users\\hello\\Desktop\\project\\search-page\\client\\src\\utils\\catchErrors.js":"4","C:\\Users\\hello\\Desktop\\project\\search-page\\client\\src\\Components\\Signup.js":"5","C:\\Users\\hello\\Desktop\\project\\search-page\\client\\src\\utils\\auth.js":"6","C:\\Users\\hello\\Desktop\\project\\search-page\\client\\src\\Components\\Paginations.js":"7","C:\\Users\\hello\\Desktop\\project\\search-page\\client\\src\\Components\\PrivateRoute.js":"8","C:\\Users\\hello\\Desktop\\project\\search-page\\client\\src\\Bookmark.js":"9","C:\\Users\\hello\\Desktop\\project\\search-page\\client\\src\\Pages\\Search.js":"10","C:\\Users\\hello\\Desktop\\project\\search-page\\client\\src\\Pages\\App.js":"11","C:\\Users\\hello\\Desktop\\project\\search-page\\client\\src\\Pages\\Place.js":"12"},{"size":1339,"mtime":1611985207838,"results":"13","hashOfConfig":"14"},{"size":362,"mtime":499162500000,"results":"15","hashOfConfig":"14"},{"size":3523,"mtime":1612154554879,"results":"16","hashOfConfig":"14"},{"size":405,"mtime":1609915408569,"results":"17","hashOfConfig":"14"},{"size":3220,"mtime":1612153521941,"results":"18","hashOfConfig":"14"},{"size":766,"mtime":1612140862813,"results":"19","hashOfConfig":"14"},{"size":3724,"mtime":1612098437239,"results":"20","hashOfConfig":"14"},{"size":438,"mtime":1611699613873,"results":"21","hashOfConfig":"14"},{"size":5612,"mtime":1612145993003,"results":"22","hashOfConfig":"14"},{"size":8478,"mtime":1612146032403,"results":"23","hashOfConfig":"14"},{"size":4813,"mtime":1612145992983,"results":"24","hashOfConfig":"14"},{"size":2452,"mtime":1612141596380,"results":"25","hashOfConfig":"14"},{"filePath":"26","messages":"27","errorCount":0,"warningCount":0,"fixableErrorCount":0,"fixableWarningCount":0,"usedDeprecatedRules":"28"},"1t9w6go",{"filePath":"29","messages":"30","errorCount":0,"warningCount":0,"fixableErrorCount":0,"fixableWarningCount":0,"usedDeprecatedRules":"28"},{"filePath":"31","messages":"32","errorCount":0,"warningCount":1,"fixableErrorCount":0,"fixableWarningCount":0,"source":null},{"filePath":"33","messages":"34","errorCount":0,"warningCount":0,"fixableErrorCount":0,"fixableWarningCount":0,"usedDeprecatedRules":"28"},{"filePath":"35","messages":"36","errorCount":0,"warningCount":2,"fixableErrorCount":0,"fixableWarningCount":0,"source":null},{"filePath":"37","messages":"38","errorCount":0,"warningCount":0,"fixableErrorCount":0,"fixableWarningCount":0,"usedDeprecatedRules":"28"},{"filePath":"39","messages":"40","errorCount":0,"warningCount":0,"fixableErrorCount":0,"fixableWarningCount":0,"usedDeprecatedRules":"28"},{"filePath":"41","messages":"42","errorCount":0,"warningCount":0,"fixableErrorCount":0,"fixableWarningCount":0,"usedDeprecatedRules":"28"},{"filePath":"43","messages":"44","errorCount":0,"warningCount":12,"fixableErrorCount":0,"fixableWarningCount":0,"source":"45","usedDeprecatedRules":"28"},{"filePath":"46","messages":"47","errorCount":0,"warningCount":8,"fixableErrorCount":0,"fixableWarningCount":0,"source":null},{"filePath":"48","messages":"49","errorCount":0,"warningCount":1,"fixableErrorCount":0,"fixableWarningCount":0,"source":"50","usedDeprecatedRules":"28"},{"filePath":"51","messages":"52","errorCount":0,"warningCount":1,"fixableErrorCount":0,"fixableWarningCount":0,"source":null},"C:\\Users\\hello\\Desktop\\project\\search-page\\client\\src\\index.js",[],["53","54"],"C:\\Users\\hello\\Desktop\\project\\search-page\\client\\src\\reportWebVitals.js",[],"C:\\Users\\hello\\Desktop\\project\\search-page\\client\\src\\Components\\Login.js",["55"],"C:\\Users\\hello\\Desktop\\project\\search-page\\client\\src\\utils\\catchErrors.js",[],"C:\\Users\\hello\\Desktop\\project\\search-page\\client\\src\\Components\\Signup.js",["56","57"],"C:\\Users\\hello\\Desktop\\project\\search-page\\client\\src\\utils\\auth.js",[],"C:\\Users\\hello\\Desktop\\project\\search-page\\client\\src\\Components\\Paginations.js",[],"C:\\Users\\hello\\Desktop\\project\\search-page\\client\\src\\Components\\PrivateRoute.js",[],"C:\\Users\\hello\\Desktop\\project\\search-page\\client\\src\\Bookmark.js",["58","59","60","61","62","63","64","65","66","67","68","69"],"import React, { useState, useEffect } from 'react'\r\nimport { Alert, Col, Card, Container, Form, Row, Button, Nav, Navbar } from \"react-bootstrap\"\r\nimport axios from \"axios\"\r\nimport catchErrors from './utils/catchErrors.js'\r\nimport { isAuthenticated } from './utils/auth'\r\nimport * as Icon from 'react-bootstrap-icons';\r\nimport Place from './Pages/Place.js'\r\n\r\n\r\nconst INIT_PAGE = {\r\n bookmark: []\r\n}\r\n\r\n\r\nfunction Bookmark() {\r\n const [page, setPage] = useState(INIT_PAGE)\r\n const [index, setIndex] = useState(1);\r\n const [error, setError] = useState('')\r\n const [state, setState] = useState(false);\r\n const [bookmark, setBookmark] = useState([false, false, false, false])\r\n const [pagePlace, setPagePlace] = useState([])\r\n const [showSet, setShowSet] = useState([false, false, false, false]);\r\n\r\n const user = isAuthenticated()\r\n\r\n async function getBookmark() {\r\n try {\r\n const response = await axios.get(`/api/users/bookmark?ID=${user}`)\r\n setPagePlace(response.data.bookmark)\r\n } catch (error) {\r\n catchErrors(error, setError)\r\n }\r\n }\r\n\r\n\r\n async function handleBookmark(index) {\r\n if (!bookmark[index]) {\r\n console.log(pagePlace[index])\r\n try {\r\n const response = await axios.put(`/api/users/bookmark?ID=${user}&place=${pagePlace[index]._id}`)\r\n alert(response.data, '북마크가 저장되었습니다.')\r\n const showArr = bookmark\r\n showArr[index] = true\r\n setBookmark(showArr)\r\n console.log(\"bookmark=\", bookmark)\r\n } catch (error) {\r\n catchErrors(error, setError)\r\n }\r\n } else {\r\n try {\r\n const response = await axios.delete(`/api/users/bookmark?ID=${user}`)\r\n alert(response.data, '저장된 북마크가 삭제되었습니다.')\r\n const showArr = bookmark\r\n showArr[index] = false\r\n setBookmark(showArr)\r\n console.log(\"bookmark=\", bookmark)\r\n } catch (error) {\r\n catchErrors(error, setError)\r\n }\r\n }\r\n }\r\n useEffect(() => {\r\n getBookmark()\r\n }, [])\r\n\r\n\r\n return (\r\n \r\n \r\n 북마크\r\n \r\n \r\n \r\n {console.log(\"#####################33\", pagePlace)}\r\n {pagePlace.map((place, index) => {\r\n return (\r\n \r\n \r\n\r\n {place.name}\r\n {user ?\r\n handleBookmark(index, place)}>\r\n \r\n {console.log(\"bookmark\", bookmark)}\r\n {console.log(\"bookmark[index]\", bookmark[index])} : null}\r\n \r\n \r\n \r\n \r\n {place.address} \r\n \r\n {/* setShowSet([false, false, false, false])} /> */}\r\n \r\n \r\n \r\n )\r\n })}\r\n\r\n\r\n \r\n \r\n )\r\n}\r\n\r\nexport default Bookmark\r\n\r\n\r\n // async function handleSubmit(e){\r\n // setState(true); //버튼이 눌려서 handlesubmit이될때 setState값이 true로 바뀐다\r\n // try { //respons 서버에 post로 요청하여 데이터를 받아온다\r\n // const response = await axios.post('/api/users/bookmark', page)\r\n // setSuccess(true)\r\n // } catch (error) {\r\n // console.log(error)\r\n // catchErrors(error, setError)\r\n // }\r\n // }\r\n\r\n // useEffect(() => {\r\n // getBookmark(user)\r\n // }, [user])","C:\\Users\\hello\\Desktop\\project\\search-page\\client\\src\\Pages\\Search.js",["70","71","72","73","74","75","76","77"],"C:\\Users\\hello\\Desktop\\project\\search-page\\client\\src\\Pages\\App.js",["78"],"import React, { useState, useEffect } from 'react';\r\nimport { Link, Redirect } from 'react-router-dom';\r\nimport ohuh from '../ohuh.PNG';\r\nimport { Container, Row, Form, Image, InputGroup, Button, Col, Card, Nav } from 'react-bootstrap';\r\nimport axios from 'axios';\r\nimport { handleLogout, isAuthenticated } from '../utils/auth.js'\r\nimport Place from '../Pages/Place.js';\r\n\r\nfunction App() {\r\n const [state, setState] = useState(false);\r\n const [search, setSearch] = useState(\"\");\r\n const [recommend, setRecommend] = useState([{ name: \" \", address: \" \", img: \" \" }]);\r\n const [latest, setLatest] = useState([{ name: \" \", address: \" \", img: \" \" }]);\r\n const user = isAuthenticated()\r\n\r\n useEffect(() => {\r\n getRecommend()\r\n getLatest()\r\n }, []);\r\n\r\n\r\n if (state !== false) {\r\n return ;\r\n }\r\n\r\n const handleChange = (e) => {\r\n setSearch(e.target.value);\r\n } //바뀌는 것이 있을때 이벤트 발생\r\n\r\n const handleSubmit = () => {\r\n setState(true);\r\n } //submit 버튼을 누르면 state 값을 true로 바뀐다\r\n\r\n const getRecommend = () => {\r\n axios.get(`/api/app/recommend`)\r\n .then(res => {\r\n setRecommend(res.data)\r\n })\r\n .catch(err => {\r\n console.log(\"APP RECOMMEND ERROR\", err)\r\n })\r\n }\r\n\r\n const getLatest = () => {\r\n axios.get(`/api/app/lastest`)\r\n .then(res => {\r\n setLatest(res.data)\r\n })\r\n .catch(err => {\r\n console.log(\"APP LATEST ERROR\", err)\r\n })\r\n }\r\n\r\n\r\n\r\n return (\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n
\r\n \r\n \r\n \r\n \r\n \r\n \r\n
\r\n
\r\n \r\n \r\n

인기관광지

\r\n \r\n {recommend.name}\r\n \r\n \r\n \r\n {recommend.address} \r\n \r\n \r\n \r\n \r\n \r\n \r\n\r\n \r\n

최근 검색관광지

\r\n \r\n {latest.name}\r\n \r\n \r\n \r\n {latest.address} \r\n \r\n \r\n \r\n \r\n \r\n \r\n
\r\n \r\n
\r\n\r\n\r\n );\r\n}\r\n\r\nexport default App;\r\n","C:\\Users\\hello\\Desktop\\project\\search-page\\client\\src\\Pages\\Place.js",["79"],{"ruleId":"80","replacedBy":"81"},{"ruleId":"82","replacedBy":"83"},{"ruleId":"84","severity":1,"message":"85","line":2,"column":68,"nodeType":"86","messageId":"87","endLine":2,"endColumn":71},{"ruleId":"84","severity":1,"message":"85","line":2,"column":60,"nodeType":"86","messageId":"87","endLine":2,"endColumn":63},{"ruleId":"84","severity":1,"message":"88","line":7,"column":10,"nodeType":"86","messageId":"87","endLine":7,"endColumn":14},{"ruleId":"84","severity":1,"message":"89","line":2,"column":10,"nodeType":"86","messageId":"87","endLine":2,"endColumn":15},{"ruleId":"84","severity":1,"message":"90","line":2,"column":39,"nodeType":"86","messageId":"87","endLine":2,"endColumn":43},{"ruleId":"84","severity":1,"message":"91","line":7,"column":8,"nodeType":"86","messageId":"87","endLine":7,"endColumn":13},{"ruleId":"84","severity":1,"message":"92","line":16,"column":12,"nodeType":"86","messageId":"87","endLine":16,"endColumn":16},{"ruleId":"84","severity":1,"message":"93","line":16,"column":18,"nodeType":"86","messageId":"87","endLine":16,"endColumn":25},{"ruleId":"84","severity":1,"message":"94","line":17,"column":12,"nodeType":"86","messageId":"87","endLine":17,"endColumn":17},{"ruleId":"84","severity":1,"message":"95","line":17,"column":19,"nodeType":"86","messageId":"87","endLine":17,"endColumn":27},{"ruleId":"84","severity":1,"message":"96","line":18,"column":12,"nodeType":"86","messageId":"87","endLine":18,"endColumn":17},{"ruleId":"84","severity":1,"message":"97","line":19,"column":12,"nodeType":"86","messageId":"87","endLine":19,"endColumn":17},{"ruleId":"84","severity":1,"message":"98","line":19,"column":19,"nodeType":"86","messageId":"87","endLine":19,"endColumn":27},{"ruleId":"84","severity":1,"message":"99","line":22,"column":12,"nodeType":"86","messageId":"87","endLine":22,"endColumn":19},{"ruleId":"100","severity":1,"message":"101","line":64,"column":8,"nodeType":"102","endLine":64,"endColumn":10,"suggestions":"103"},{"ruleId":"84","severity":1,"message":"91","line":4,"column":8,"nodeType":"86","messageId":"87","endLine":4,"endColumn":13},{"ruleId":"84","severity":1,"message":"85","line":5,"column":83,"nodeType":"86","messageId":"87","endLine":5,"endColumn":86},{"ruleId":"84","severity":1,"message":"96","line":23,"column":12,"nodeType":"86","messageId":"87","endLine":23,"endColumn":17},{"ruleId":"84","severity":1,"message":"104","line":25,"column":20,"nodeType":"86","messageId":"87","endLine":25,"endColumn":31},{"ruleId":"84","severity":1,"message":"105","line":27,"column":19,"nodeType":"86","messageId":"87","endLine":27,"endColumn":27},{"ruleId":"100","severity":1,"message":"106","line":49,"column":8,"nodeType":"102","endLine":49,"endColumn":10,"suggestions":"107"},{"ruleId":"100","severity":1,"message":"108","line":75,"column":8,"nodeType":"102","endLine":75,"endColumn":15,"suggestions":"109"},{"ruleId":"110","severity":1,"message":"111","line":150,"column":35,"nodeType":"112","endLine":150,"endColumn":76},{"ruleId":"84","severity":1,"message":"91","line":7,"column":8,"nodeType":"86","messageId":"87","endLine":7,"endColumn":13},{"ruleId":"100","severity":1,"message":"113","line":36,"column":6,"nodeType":"102","endLine":36,"endColumn":8,"suggestions":"114"},"no-native-reassign",["115"],"no-negated-in-lhs",["116"],"no-unused-vars","'Nav' is defined but never used.","Identifier","unusedVar","'Link' is defined but never used.","'Alert' is defined but never used.","'Form' is defined but never used.","'Place' is defined but never used.","'page' is assigned a value but never used.","'setPage' is assigned a value but never used.","'index' is assigned a value but never used.","'setIndex' is assigned a value but never used.","'error' is assigned a value but never used.","'state' is assigned a value but never used.","'setState' is assigned a value but never used.","'showSet' is assigned a value but never used.","react-hooks/exhaustive-deps","React Hook useEffect has a missing dependency: 'getBookmark'. Either include it or remove the dependency array.","ArrayExpression",["117"],"'getBookmark' is defined but never used.","'response' is assigned a value but never used.","React Hook useEffect has a missing dependency: 'getAssociation'. Either include it or remove the dependency array.",["118"],"React Hook useEffect has missing dependencies: 'getAssociation', 'props.history', and 'search'. Either include them or remove the dependency array.",["119"],"react/jsx-no-duplicate-props","No duplicate props allowed","JSXAttribute","React Hook useEffect has missing dependencies: 'getReview' and 'infiniteScroll'. Either include them or remove the dependency array.",["120"],"no-global-assign","no-unsafe-negation",{"desc":"121","fix":"122"},{"desc":"123","fix":"124"},{"desc":"125","fix":"126"},{"desc":"127","fix":"128"},"Update the dependencies array to be: [getBookmark]",{"range":"129","text":"130"},"Update the dependencies array to be: [getAssociation]",{"range":"131","text":"132"},"Update the dependencies array to be: [getAssociation, props.history, search, state]",{"range":"133","text":"134"},"Update the dependencies array to be: [getReview, infiniteScroll]",{"range":"135","text":"136"},[2220,2222],"[getBookmark]",[1893,1895],"[getAssociation]",[2802,2809],"[getAssociation, props.history, search, state]",[1181,1183],"[getReview, infiniteScroll]"]