Skip to content
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

전남대 FE_강예람_1주차 과제 Step 2,3 #86

Open
wants to merge 16 commits into
base: yeramm
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions .idea/.gitignore

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 6 additions & 0 deletions .idea/misc.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

8 changes: 8 additions & 0 deletions .idea/modules.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

9 changes: 9 additions & 0 deletions .idea/react-gift-react-foundation.iml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 6 additions & 0 deletions .idea/vcs.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

59 changes: 59 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,2 +1,61 @@
# react-gift-react-foundation
FE 카카오 선물하기 1주차 과제: React 기초

## Step1

### 요구사항
- Create React App을 기반으로 프로젝트를 생성한다.
- Typescript로 프로젝트가 동작되게 세팅한다.
- 절대 경로로 Import 할 수 있게 alias를 설정한다.
- tsconfig에 어떤 항목들로 구성되어 있는지 살펴보고, 필요하다 생각되는 설정을 설정한다.
- ESLint, Prettier를 추가하고 Airbnb룰을 설정한다.
- emotion 스타일 라이브러리를 추가하고, reset css를 적용한다.
- gitignore를 추가하고, 프로젝트에 불필요한 코드들을 정리한다.
- 본인만의 폴더 구조 기준을 세우고 반영한다.
- 본인만의 기준으로 일관된 코드를 작성한다.
- 기능 단위로 나누어 커밋한다.


## Step2

### 요구사항
- 본인만의 기준으로 일관된 코드를 작성한다.
- 기능 단위로 나누어 커밋한다.
- Stroybook을 추가한다.
- 공통 컴포넌트에 아래와 같은 컴포넌트를 구현하고, Storybook에서 확인 할 수 있게 한다.
- Button 컴포넌트를 구현한다.
- Theme Props에 따라 버튼의 컬러와 디자인이 다르게 보여지게 한다.
- Size Props에 따라 버튼의 Size가 다르게 보여지게 한다. (value가 responsive 인 경우 미디어 쿼리에 따라 사이즈가 달라지게 만든다.)
- Button Element의 기본 속성들을 모두 사용할 수 있게 한다.
- Input 컴포넌트를 구현한다.
- disabled Props에 따라 Input이 비활성화 되고, UI에서도 비활성화 됨을 인지할 수 있게 한다.
- invalid Props 에 따라 Input의 값이 잘 못되었음을 UI에서 인지할 수 있게 한다.
- Size Props에 따라 버튼의 Size가 다르게 보여지게 한다. (value가 responsive 인 경우 미디어 쿼리에 따라 사이즈가 달라지게 만든다.)
- Input Element의 기본 속성들을 모두 사용할 수 있게 한다.
- Image 컴포넌트를 구현한다.
- ratio Props에 따라 이미지 비율을 설정할 수 있게 한다. (value가 number로 16/9로 넘겨진 경우 16:9비율로 보여짐, square을 설정한 경우 정사각형으로 보여짐)
- radius Props에 따라 모서리가 둥글게 한다. (value가 number인 경우 number만큼 모서리가 둥글게 적용, circle인 경우 원형으로 보여짐)
- Img Element의 기본 속성들을 모두 사용할 수 있게 한다.
- GoodsItem 컴포넌트를 구현한다.
- Default 형태와 Ranking 형태의 컴포넌트를 각각 구현한다.
- 공통으로 imageSrc, subtitle, title, amount Props를 넘겨받는다.
- Ranking 컴포넌트의 경우 rankingIndex Props를 추가로 넘겨받는다. 1~3까지는 분홍색, 나머지 숫자에는 회색의 랭킹 뱃지가 보여지게 한다.
- Grid, Container 컴포넌트를 구현한다.

### 개발 중 애로사항
- storybook을 설치했으나 eslint, prettier과의 충돌로 인해 컴파일 되지 않음
- 버전 호환성 차이라고 생각하며 삭제하고 다시 설치해보았지만 같은 오류 발생
- .eslintrc.json 파일과 package.json 파일이 문제인가 싶어 자료를 찾아보고 수정해보았지만 같은 오류 발생


## Step3

### 1주차 질문
- 질문 1. webpack은 무엇이고 어떤 역할을 하고 있나요?
- webpack은 JavaScript 모듈 번들러이다. 주로 모듈 간의 의존성을 해소하고, 웹 애플리케이션을 하나의 번들로 묶어주는 역할을 한다.
- 질문 2. 브라우저는 어떻게 JSX 파일을 읽을 수 있나요?
- 브라우저는 직접적으로 JSX 파일을 읽을 수 없다. JSX는 JavaScript의 확장 문법으로, 브라우저가 이해할 수 있는 순수 JavaScript로 변환되어야 한다.
- 질문 3. React에서 상태 변화가 생겼을 때 어떻게 변화를 알아챌 수 있나요?
- React에서는 상태가 변경되었을 때, 이를 감지하고 컴포넌트를 다시 렌더링하는 메커니즘을 제공한다.
- React에서 상태는 useState 훅이나 클래스 컴포넌트의 this.state를 통해 관리된다. 상태를 변경하기 위해서는 setState (클래스 컴포넌트)나 useState에서 반환된 상태 변경 함수를 사용한다.
- 상태가 변경되면 React는 자동으로 해당 컴포넌트를 다시 렌더링합니다. 이는 가상 DOM을 통해 최적화된 방식으로 이루어진다. React는 상태 변경을 감지하고, 변경된 부분만 실제 DOM에 반영합니다. 이를 통해 성능을 최적화한다.
43 changes: 43 additions & 0 deletions my-app/.eslintrc.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,43 @@
{
"parser": "@typescript-eslint/parser",
"extends": [
"airbnb",
"airbnb-typescript",
"plugin:@typescript-eslint/recommended",
"plugin:react/recommended",
"plugin:react-hooks/recommended",
"plugin:jsx-a11y/recommended",
"plugin:storybook/recommended",
"prettier"
],
"plugins": [
"@typescript-eslint",
"prettier"
],
"parserOptions": {
"ecmaVersion": 2020,
"sourceType": "module",
"ecmaFeatures": {
"jsx": true
},
"project": "./tsconfig.json"
},
"settings": {
"react": {
"version": "detect"
}
},
"rules": {
"quotes": [
"error",
"double"
],
"jsx-quotes": [
"error",
"prefer-double"
],
"prettier/prettier": "error",
"linebreak-style": ["error", "unix"]
}
}

25 changes: 25 additions & 0 deletions my-app/.gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
# See https://help.github.com/articles/ignoring-files/ for more about ignoring files.

# dependencies
/node_modules
/.pnp
.pnp.js

# testing
/coverage

# production
/build

# misc
.DS_Store
.env.local
.env.development.local
.env.test.local
.env.production.local

npm-debug.log*
yarn-debug.log*
yarn-error.log*

*storybook.log
9 changes: 9 additions & 0 deletions my-app/.prettierrc
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
{
"semi": true,
"singleQuote": false,
"printWidth": 80,
"tabWidth": 2,
"trailingComma": "es5",
"arrowParens": "always",
"endOfLine": "lf"
}
19 changes: 19 additions & 0 deletions my-app/.storybook/main.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
import type { StorybookConfig } from '@storybook/react-webpack5';

const config: StorybookConfig = {
stories: ['../src/**/*.mdx', '../src/**/*.stories.@(js|jsx|mjs|ts|tsx)'],
addons: [
'@storybook/preset-create-react-app',
'@storybook/addon-onboarding',
'@storybook/addon-links',
'@storybook/addon-essentials',
'@chromatic-com/storybook',
'@storybook/addon-interactions',
],
framework: {
name: '@storybook/react-webpack5',
options: {},
},
staticDirs: ['..\\public'],
};
export default config;
14 changes: 14 additions & 0 deletions my-app/.storybook/preview.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
import type { Preview } from '@storybook/react';

const preview: Preview = {
parameters: {
controls: {
matchers: {
color: /(background|color)$/i,
date: /Date$/i,
},
},
},
};

export default preview;
46 changes: 46 additions & 0 deletions my-app/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,46 @@
# Getting Started with Create React App

This project was bootstrapped with [Create React App](https://github.com/facebook/create-react-app).

## Available Scripts

In the project directory, you can run:

### `npm start`

Runs the app in the development mode.\
Open [http://localhost:3000](http://localhost:3000) to view it in the browser.

The page will reload if you make edits.\
You will also see any lint errors in the console.

### `npm test`

Launches the test runner in the interactive watch mode.\
See the section about [running tests](https://facebook.github.io/create-react-app/docs/running-tests) for more information.

### `npm run build`

Builds the app for production to the `build` folder.\
It correctly bundles React in production mode and optimizes the build for the best performance.

The build is minified and the filenames include the hashes.\
Your app is ready to be deployed!

See the section about [deployment](https://facebook.github.io/create-react-app/docs/deployment) for more information.

### `npm run eject`

**Note: this is a one-way operation. Once you `eject`, you can’t go back!**

If you aren’t satisfied with the build tool and configuration choices, you can `eject` at any time. This command will remove the single build dependency from your project.

Instead, it will copy all the configuration files and the transitive dependencies (webpack, Babel, ESLint, etc) right into your project so you have full control over them. All of the commands except `eject` will still work, but they will point to the copied scripts so you can tweak them. At this point you’re on your own.

You don’t have to ever use `eject`. The curated feature set is suitable for small and middle deployments, and you shouldn’t feel obligated to use this feature. However we understand that this tool wouldn’t be useful if you couldn’t customize it when you are ready for it.

## Learn More

You can learn more in the [Create React App documentation](https://facebook.github.io/create-react-app/docs/getting-started).

To learn React, check out the [React documentation](https://reactjs.org/).
11 changes: 11 additions & 0 deletions my-app/config-overrides.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
const path = require('path');

module.exports = function override(config, env) {
config.resolve.alias = {
...config.resolve.alias,
'@components': path.resolve(__dirname, 'src/components'),
'@utils': path.resolve(__dirname, 'src/utils'),
'@assets': path.resolve(__dirname, 'src/assets'),
};
return config;
};
Loading