Skip to content

Commit

Permalink
Refactor 카테고리 태그 수정
Browse files Browse the repository at this point in the history
  • Loading branch information
BoubleJ committed Mar 19, 2024
1 parent ab2fbd4 commit 81a1a1c
Show file tree
Hide file tree
Showing 26 changed files with 30 additions and 50 deletions.
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
---
date: "2023-11-08"
title: "[Gatsby 블로그 제작일지] MUI 컴포넌트를 이용한 드롭박스 구현 및 라우팅 적용"
categories: ["Gatsby", "React", "MUI"]
categories: ["Gatsby"]
summary: " MUI 컴포넌트를 활용해서 HEADER 드롭박스를 구현해봅시다."
thumbnail: "./MUI.png"
---
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
---
date: "2023-11-02"
title: "[Gatsby 블로그 제작일지] 페이지 라우팅 방법"
categories: ["Gatsby", "React"]
categories: ["Gatsby"]
summary: "Gatsby 페이지 라우팅 기능을 구현하는 과정을 기록해보겠습니다."
thumbnail: "./개츠비라우팅코드.png"
---
Expand Down Expand Up @@ -35,12 +35,12 @@ Add this component to src/pages/index.js to create a home page for your site.
> 이 구성 요소를 src/pages/index.js에 추가하여 사이트의 홈 페이지를 만듭니다.
```js
src/pages/index.js
src / pages / index.js;

import * as React from "react"
import * as React from "react";

export default function Index() {
return <div>Hello world</div>
return <div>Hello world</div>;
}
```

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
date: "2023-01-17"
title: "[마켓플레이스 프로젝트] 1:1 문의 페이지 fill 함수 에러 수정"
categories:
["MarketPlace", "Project", "Next.js", "Refactoring", "Javascript"]
["MarketPlace"]
summary: "이럼 안되지만 챗지피티 돌려서 만든 코드라… fill() 함수가 왜 저렇게 배치되었는지 도통 알수가 없었다. 파라미터도 없는채 말이지.."
thumbnail: "./fill함수.png"
---
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
---
date: "2023-01-10"
title: "[마켓플레이스 프로젝트] FAQ 페이지 slug 대신 params 활용 (next 공식문서 참고)"
categories: ["MarketPlace", "Project", "Next.js", "Refactoring"]
categories: ["MarketPlace"]
summary: "slug를 전달하던 곳 대신 가져온 url params를 props를 통해 전달해주도록하면 수정 끝!!"
thumbnail: "./useparams.png"
---
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
date: "2023-01-13"
title: "[마켓플레이스 프로젝트] FAQ 페이지 타입 이슈"
categories:
["MarketPlace", "Project", "Next.js", "Typescript", "TroubleShooting"]
["MarketPlace"]
summary: "slug를 전달하던 곳 대신 가져온 url params를 props를 통해 전달해주도록하면 수정 끝!!"
thumbnail: "./typescript.png"
---
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
date: "2023-12-30"
title: "[마켓플레이스 프로젝트] Hydrating Issue"
categories:
["MarketPlace", "Project", "Next.js", "UI", "Shadcn/ui", "TroubleShooting"]
["MarketPlace"]
summary: "Error: Hydration failed because the initial UI does not match what was rendered on the server."
thumbnail: "./image-7.png"
---
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,13 +3,7 @@ date: "2024-02-04"
title: "[마켓플레이스 프로젝트] modal창 화면크기 변환 해도 중앙 렌더링되도록 수정"
categories:
[
"MarketPlace",
"Project",
"Next.js",
"UI",
"TroubleShooting",
"Tailwind",
"CSS",
"MarketPlace"
]
summary: "page 컴포넌트 p-4 속성 때문에 가운데 정렬을 시도하면 p-4만큼 공백이 생겨버렸다."
thumbnail: "./image-31.png"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
date: "2023-12-28"
title: "[마켓플레이스 프로젝트] setState props 전달 시 type error"
categories:
["MarketPlace", "Project", "Next.js", "Shadcn/ui", "Refactoring"]
["MarketPlace"]
summary: "setState를 props로 전달할 경우 타입은 void로 하면 되는 것 같다. "
thumbnail: "./모달창안뜸.png"
---
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
---
date: "2023-02-11"
title: "[마켓플레이스 프로젝트] ui Toast 안뜨는 이유 & 위치 조정"
categories: ["MarketPlace", "Project", "Next.js", "TroubleShooting", "Shadcn/ui"]
categories: ["MarketPlace"]
summary: "버튼을 클릭했는데 modal창이 안떴다."
thumbnail: "./image-29.png"
---
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
---
date: "2023-12-17"
title: "[마켓플레이스 프로젝트] ui 아코디언 컴포넌트 커스텀 이슈"
categories: ["MarketPlace", "Project", "Next.js", "UI", "Shadcn/ui", "TroubleShooting"]
categories: ["MarketPlace"]
summary: "이런 UI를 만들어야하는데.."
thumbnail: "./faq아코디언.png"
---
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
date: "2023-12-23"
title: "[마켓플레이스 프로젝트] ui 아코디언 컴포넌트 커스텀 이슈"
categories:
["MarketPlace", "Project", "Next.js", "Typescript", "Refactoring"]
["MarketPlace"]
summary: "지금 해결해야할게 인터페이스를 어디 보관해야하는지"
thumbnail: "./더미데이터json파일.png"
---
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
date: "2024-01-27"
title: "[마켓플레이스 프로젝트] 마이페이지 쿠폰 리스트 업"
categories:
["MarketPlace", "Project", "Next.js", "Feature"]
["MarketPlace"]
summary: "마이페이지 쿠폰 접속하면 유저가 보유하고 있는 쿠폰 리스트업"
thumbnail: "./image-27.png"
---
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
date: "2023-01-31"
title: "[마켓플레이스 프로젝트] 마이페이지 회원등급 적용"
categories:
["MarketPlace", "Project", "Next.js", "Feature", "UI"]
["MarketPlace"]
summary: "멤버등급별 색상 클래스 값을 추가해줬다.."
thumbnail: "./image-28.png"
---
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,13 +3,8 @@ date: "2024-02-12"
title: "[마켓플레이스 프로젝트] 문의 페이지 presignedUrl 활용 S3 업로드"
categories:
[
"MarketPlace",
"Project",
"Next.js",
"Feature",
"PresignedURL",
"AWS",
"S3",
"MarketPlace"

]
summary: "온갖 에러가 폭주하는 작업이었다. 정말 열받네"
thumbnail: "./image-9.png"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
date: "2024-02-20"
title: "[키워드 프로젝트] Redux 활용 전역 객체 관리"
categories:
["Keyword", "Project", "React", "Feature", "ReduxToolkit", "Refactoring"]
["Keyword"]
summary: "redux toolkit을 활용했다."
thumbnail: "./redux.png"
---
Expand Down
8 changes: 1 addition & 7 deletions contents/[키워드 프로젝트] bootstrap css 미적용.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,13 +3,7 @@ date: "2024-02-18"
title: "[키워드 프로젝트] bootstrap css 미적용"
categories:
[
"Keyword",
"Project",
"React",
"UI",
"TroubleShooting",
"ReactBootStrap",
"CSS"
"Keyword"
]
summary: "bootstrap은 install만하면 css 스타일속성은 안가져온다."
thumbnail: "./reactbootstrap.png"
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
---
date: "2024-02-18"
title: "[키워드 프로젝트] button 컴포넌트 비독립적 수행 이슈"
categories: ["Keyword", "Project", "React", "TroubleShooting"]
categories: ["Keyword"]
summary: "ToggleButtonGroup 컴포넌트를 각 컴포넌트에 넣고 독립적으로 동작하게 하려했는데"
thumbnail: "./reacticon.png"
---
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
date: "2024-03-07"
title: "[키워드 프로젝트] input 값을 입력만해도 fetch함수 호출되는 issue 해결"
categories:
["Keyword", "Project", "React", "Feature", "Refactoring", "Javascript"]
["Keyword"]
summary: "input onchange 이벤트 때문에 input에 값을 입력할 때마다 state 값이 변하다보니 값을 입력하기만해도 서버에 get요청을 보내는 참사가 일어났다. "
thumbnail: "./onchange.png"
---
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,10 +3,7 @@ date: "2024-03-08"
title: "달력 los 값 구하기달력 los 값 구하기"
categories:
[
"Keyword",
"Project",
"Axios",
"Feature",
"Keyword"
]
summary: "keyword 검색과 category 검색 시 api호출 주소가 다르다."
thumbnail: "./image-39.png"
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
---
date: "2024-03-09"
title: "[키워드 프로젝트] 달력 los 값 구하기"
categories: ["Keyword", "Project", "TroubleShooting", "Javascript"]
categories: ["Keyword"]
summary: "달력에서 날짜 선택 후 searchPage로 가져와 query string으로 전달하려했는데… 두 날짜 사이 간격을 계산 못하는 이슈가 생겼다."
thumbnail: "./los값.png"
---
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
---
date: "2024-03-03"
title: "[키워드 프로젝트] 달력 날짜값 query string 전달"
categories: ["Keyword", "Project", "Axios", "Feature"]
categories: ["Keyword"]
summary: "달력 날짜값을 query-string으로 전달"
thumbnail: "./axiosicon.png"
---
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
---
date: "2024-03-13"
title: "[키워드 프로젝트] 엑셀 파일 다운로드 및 내부 content 설정"
categories: ["Keyword", "Project", "React", "Feature"]
categories: ["Keyword"]
summary: "엑셀 다운로드는 CSVLink라는 라이브러리를 사용했다."
thumbnail: "./image-45.png"
---
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
---
date: "2024-03-07"
title: "[키워드 프로젝트] 엑셀파일 다운로드 기능"
categories: ["Keyword", "Project", "React", "Feature"]
categories: ["Keyword"]
summary: "리액트에서 엑셀파일을 다운받는 기능을 구현해보자. 라이브러리 쓰면 바로 해결된다."
thumbnail: "./image-44.png"
---
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
---
date: "2024-02-22"
title: "[키워드 프로젝트] 카테고리 분류 드롭박스 구현"
categories: ["Keyword", "Project", "React", "UI", "Feature", "ReactBootStrap"]
categories: ["Keyword"]
summary: "기본적 동작 플로우 1. 1차 분류 버튼 클릭 시 firstCategories배열 요소의 name들이 드롭 다운 박스로 출력"
thumbnail: "./image-34.png"
---
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
---
date: "2024-03-11"
title: "[키워드 프로젝트] 판매량, 상품경쟁력에 따른 순위정렬 구현"
categories: ["Keyword", "Project", "React", "Feature", "Javascript"]
categories: ["Keyword"]
summary: "자바스크립트 함수를 이용해 오름차순 내림차순을 적용했다."
thumbnail: "./오름차순.jpg"
---
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
---
date: "2024-03-05"
title: "[키워드 프로젝트] 페이지 로딩 시 스플래시 스크린 구현 (취소)"
categories: ["Keyword", "Project", "React", "Feature"]
categories: ["Keyword"]
summary: "리액트의 특징 중 하나가 SPA이기 때문에 자바스크립트가 실행될때 까지 페이지가 비어 있어서 로딩 대기중의 짦은 시간동안 빈페이지가 화면에 띄워져있는다."
thumbnail: "./image-38.png"
---
Expand Down

0 comments on commit 81a1a1c

Please sign in to comment.