bjc1102 / clipplanet-web

북마크한 페이지들을 관리하기 위한 프로젝트입니다

Home Page:https://web.clip-planet.site/

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Tech Stack

  • NextJS
  • Typescript
  • Tailwind
  • React-Query

Summary

  • Auth HOC 구현
  • 추상화 및 코드 리팩토링
  • React-Query를 통한 폴더 구조 수정 및 서버 상태 관리

Command

yarn install && yarn dev

폴더 구조

폴더구조는 리액트 공식문서React-Query 개발자의 문서를 참조하였습니다.

.
├── components
│   ├── Authentication
│   │   ├── LoginButton.tsx
│   │   └── LogoutButton.tsx
│   ├── Card
│   │   ├── CardMenuBar.tsx
│   │   ├── ClipCard.tsx
│   │   ├── ClipCardList.tsx
│   │   ├── ClipDeleteButton.tsx
│   │   ├── ClipListTab.tsx
│   │   └── queries
│   │       ├── useDeleteClip.tsx
│   │       ├── useGetClipList.tsx
│   │       └── useUpdateFavoriteClip.tsx
│   ├── Header
│   │   ├── CreateClipForm.tsx
│   │   ├── Logo.tsx
│   │   ├── index.tsx
│   │   └── queries
│   │       └── useSetClip.tsx
│   ├── Layout
│   │   ├── HomeLayout.tsx
│   │   ├── LoginLayout.tsx
│   │   └── SpinnerLayout.tsx
│   └── common
│       ├── Button.tsx
│       ├── ConfirmModal.tsx
│       └── Input.tsx
├── constant
│   ├── const.ts
│   └── query.key.ts
├── hooks
│   ├── Auth
│   │   ├── AuthProvider.tsx
│   │   ├── queries
│   │   │   └── useUpdateToken.tsx
│   │   └── withAuth.tsx
│   ├── useForm.tsx
│   ├── useModal.tsx
│   └── useOutsideClick.tsx
├── lib
│   ├── axios
│   │   ├── index.ts
│   │   └── instance.ts
│   └── react-query.ts
├── next-env.d.ts
├── next.config.js
├── package.json
├── pages
│   ├── _app.tsx
│   └── index.tsx
├── postcss.config.js
├── public
│   ├── README
│   │   ├── use.PNG
│   │   ├── use2.PNG
│   │   └── use3.PNG
│   ├── assets
│   │   ├── \010SpinnerIcon.tsx
│   │   ├── AlertIcon.tsx
│   │   ├── CloseIcon.tsx
│   │   ├── DirectoryIcon.tsx
│   │   ├── GoogleIcon.tsx
│   │   ├── LoadingIcon.tsx
│   │   ├── PlanetIcon.tsx
│   │   ├── PlusIcon.tsx
│   │   ├── SearchIcon.tsx
│   │   └── StarIcon.tsx
│   ├── icon16.png
│   └── vercel.svg
├── styles
│   └── global.css
├── tsconfig.json
├── types
│   ├── auth.ts
│   ├── clip.ts
│   ├── common.ts
│   ├── error.ts
│   └── utils.ts
├── utils
│   ├── animation.ts
│   ├── sliceString.ts
│   ├── toast.ts
│   ├── token.ts
│   ├── validate.ts
│   └── window.ts
└── yarn.lock

About

북마크한 페이지들을 관리하기 위한 프로젝트입니다

https://web.clip-planet.site/


Languages

Language:TypeScript 96.7%Language:JavaScript 2.7%Language:CSS 0.6%