Skip to content

isd-sgcu/firstdate-rpkm67-frontend

Repository files navigation

rpkm x CU first date

Frontend interface for the RubPuenKaoMai 2024 and CU first date website.

Prerequisites

Please install the following.

This project use Nextjs and TailwindCSS as CSS Framework.

For front-end design you can see in ISD67 X CU first date's Figma. You can download all resources in figma too.

Getting Started

  1. Clone this repository
# Using SSH (recommended)
git clone [email protected]:isd-sgcu/rpkm-frontend.git

# Using Https (not recommended)
https://github.com/isd-sgcu/rpkm-frontend.git
  1. Go to project folder
cd rpkm-frontend
  1. Install all dependencies
pnpm install
  1. Run
pnpm dev
  1. Go to http://localhost:3000 in your fav browser.

Contributing

We will seperate a branch for each features and each person then, create pull request for combine code together.

  1. Go to main branch and pull updated code
git checkout main

git pull
  1. Create branch and go to your branch
git branch {your_branch_name}

git checkout {your_branch_name}

Note : exmaple of {your_branch_name} is boom/feat/pet-card, aungpao/refactor/main-page

  1. Push your branch upstream
git push --set-upstream origin {your_branch_name}
  1. Working with your code

  2. Stage and commit your changes

git add .

git commit -m {commit_message}
  1. Push your code in to your branch
git push
  1. Create pull request to main branch in github
  2. Wait for the code to be reviewed and merged

Conventional Commit Format

In short, the commit message should look like this:

git commit -m "feat: <what-you-did>"

# or

git commit -m "fix: <what-you-fixed>"

# or

git commit -m "refactor: <what-you-refactored>"

The commit message should start with one of the following types:

  • feat: A new feature
  • fix: A bug fix
  • refactor: A code change that neither fixes a bug nor adds a feature
  • style: Changes that do not affect the meaning of the code (white-space, formatting, missing semi-colons, etc)

For more information, please read the conventional commit format documentation.

Implement API

This project use @tanstack/react-query with axios for fetching data and We will use custom queries hooks for query.

Structure

  • src/api : Store api fetching function using axios
  • src/types : Store type of fetched data
  • src/hook/queries : Store query function from @tanstack/react-query
  • src/hook/mutation : Store mutation function

Instruction Step :

  1. Create type from data in src/types if have pagination use Meta from src/types/common.ts
  2. Create fetching function in src/api and passing type to axios function
  3. Create query function in src/hooks/quries or mutation function in src/hooks/mutation
  4. Implement Query or Mutation function in Page and pass data to components

** Do not query data in any Component !!