-
Notifications
You must be signed in to change notification settings - Fork 44
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Part2 정지성 week8 #317
The head ref may contain hidden characters: "part2-\uC815\uC9C0\uC131-week8"
Part2 정지성 week8 #317
Conversation
…links for folderlist id value
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
카드에 마우스 hover 시에 이미지 크기가 변경되는 코드를 작성은 하였습니다.
하지만 background-image 로 이미지 지정했던 케이스들 밖에 검색하지 못하여서 실적용은 하지 못했습니다.
( CSS에서 background-size 와 같은 코드를 작성한 부분)
api를 fetch해서 map으로 링크 정보를 가져온 것의 경우에는, css에서 사용하는/예시/
selector {
background-image: url(' ')
}와는 또 다른 방법이 있을까요?
제가 이해한 바가 맞다면, backgroundImage 를 api 를 통해 가져온 값으로 설정하고, hover 하면 background-size가 조정되는 부분에 어려움을 느끼고 계시는 거 같은데요? (만약 아니라면... 멘토링 시간에 질문주셔요)
<div style={{
backgroundImage: `url("https://via.placeholder.com/500")`
}}>
https://www.freecodecamp.org/news/react-background-image-tutorial-how-to-set-backgroundimage-with-inline-css-style/
위의 예제처럼 inline-style 을 설정하는 방법으로 api 에서 가져온 image src 값을 넣어줄 수 있습니다!
그리고 hover시에 background-size 가 조정되는 부분은 :hover 을 css 에서 설정하시면 될 거 같아요!
<div className={styles.card_grid_container}> | ||
{CardData ? ( | ||
CardData.folder.links.map((link) => ( | ||
<a href={link.url}> |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
map 하시면 key 를 꼭 넣어주셔야합니다!
<a href={link.url}> | |
<a href={link.url} key={link.url}> |
import { useState } from "react"; | ||
|
||
function Cardsfolder(props) { | ||
const CardData = useFetch(props.url); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
파스칼케이스는 컴포넌트명에만 쓰는 게 일반적인 컨벤션입니다!
훅 내부의 데이터는 카멜케이스로 가져와주세요~
const CardData = useFetch(props.url); | |
const cardData = useFetch(props.url); |
{link.imageSource ? ( | ||
<img | ||
src={link.imageSource} | ||
className={`${styles.card_img} ${ | ||
isHovering ? styles.zoomIn : "" | ||
}`} | ||
onMouseOver={handleMouseOver} | ||
onMouseOut={handleMouseOut} | ||
alt={link.title} | ||
/> | ||
) : ( | ||
<img | ||
src={thumbnail} | ||
className={`${styles.card_img} ${ | ||
isHovering ? styles.zoomIn : "" | ||
}`} | ||
onMouseOver={handleMouseOver} | ||
onMouseOut={handleMouseOut} | ||
alt="thumbnail_img" | ||
/> | ||
)} |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
중복되는 코드가 많아서 공통화해주면 좋을 거 같아요!
{link.imageSource ? ( | |
<img | |
src={link.imageSource} | |
className={`${styles.card_img} ${ | |
isHovering ? styles.zoomIn : "" | |
}`} | |
onMouseOver={handleMouseOver} | |
onMouseOut={handleMouseOut} | |
alt={link.title} | |
/> | |
) : ( | |
<img | |
src={thumbnail} | |
className={`${styles.card_img} ${ | |
isHovering ? styles.zoomIn : "" | |
}`} | |
onMouseOver={handleMouseOver} | |
onMouseOut={handleMouseOut} | |
alt="thumbnail_img" | |
/> | |
)} | |
<img | |
src={link.imageSource || thumbnail} | |
className={`${styles.card_img} ${ | |
isHovering ? styles.zoomIn : "" | |
}`} | |
onMouseOver={handleMouseOver} | |
onMouseOut={handleMouseOut} | |
alt={link.imageSource ? link.title : "thumbnail_img"} | |
/> |
import instagram from "../../assets/instagram.svg"; | ||
import styles from "./index.module.css"; | ||
|
||
const snsLists = [ |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
상수값은 대문자로 네이밍해주는 게 일반적인 거 같아요!
const snsLists = [ | |
const �SNS_LISTS = [ |
</div> | ||
<div className={styles.footer_icon_div}> | ||
{snsLists.map((snsList) => ( | ||
<a href={snsList.link} target="_blank" rel="noopener noreferrer"> |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
key 안넣어주면 console 창에 아마 에러나고 있을 거에요!
<a href={snsList.link} target="_blank" rel="noopener noreferrer"> | |
<a href={snsList.link} target="_blank" rel="noopener noreferrer" key={snsList.link}> |
const Userprofile = useFetch(BASE_URL_USER); | ||
|
||
return ( | ||
<div className={styles.Navigation}> |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
styledComponent가 아니라면 class 이름에 파스칼케이스는 지양해주세요!
요구사항
기본
심화
주요 변경사항
스크린샷
멘토에게
하지만 background-image 로 이미지 지정했던 케이스들 밖에 검색하지 못하여서 실적용은 하지 못했습니다.
( CSS에서 background-size 와 같은 코드를 작성한 부분)
api를 fetch해서 map으로 링크 정보를 가져온 것의 경우에는, css에서 사용하는
/예시/
selector {
background-image: url(' ')
}
와는 또 다른 방법이 있을까요?