Quizzy , coded in 2021 , is a web app designed for interactive online quiz competitions for middle school students. The app constitutes of five rounds : ticket , number , visual , audio ,and travel. The question data is stored in a json file and served through json-web-server. There are 6 endpoints :
- /ticket
- /number
- /visual
- /travel
- /audio
- /add (To add quizzes for ticket and number round)
npm i
npm run dev
npm run json- NodeJS
- Typescript
- React
- Redux
- SCSS
react-router-domreact-loader-spinnerjson-serverpolishedframer-motionstyled-componentsreact-redux
root
│ .gitignore
│ index.html
│ package-lock.json
│ package.json
│ README.md
│ tsconfig.json
│ vite.config.ts
│
├───.vscode
│ settings.json
│
├───assets
│ └───sounds
│ cow.mp3
│ elephant.mp3
│ frog.mp3
│ goat.mp3
│
├───db
│ db.json
│
└───src
│ App.tsx
│ global.d.ts
│ main.tsx
│ vite-env.d.ts
│
├───components
│ │ globalData.ts
│ │
│ ├───common
│ │ └───reveal_questions
│ │ │ QuestionItem.styled.ts
│ │ │ QuestionItem.tsx
│ │ │ QuestionList.styled.ts
│ │ │ QuestionList.tsx
│ │ │
│ │ └───styles
│ │ │ TravelQuestion.scss
│ │ │
│ │ └───css
│ │ TravelQuestion.min.css
│ │ TravelQuestion.min.css.map
│ │
│ ├───hooks
│ │ useFetch.ts
│ │
│ ├───pages
│ │ │ index.ts
│ │ │
│ │ ├───add
│ │ │ Add.styled.ts
│ │ │ Add.tsx
│ │ │
│ │ ├───audio
│ │ │ Audio.tsx
│ │ │
│ │ ├───home
│ │ │ Home.styled.ts
│ │ │ Home.tsx
│ │ │ Menu.styled.ts
│ │ │ Menu.tsx
│ │ │ Menu.variant.ts
│ │ │ Options.styled.ts
│ │ │ Options.tsx
│ │ │ Question.styled.ts
│ │ │ Question.tsx
│ │ │
│ │ └───travel
│ │ Travel.tsx
│ │
│ └───redux
│ │ index.ts
│ │
│ ├───actions
│ │ selectQuestion.ts
│ │
│ └───reducers
│ audioQuestionReducer.ts
│ questionReducer.ts
│ questionsListReducer.ts
│ travelQuestionReducer.ts
│
└───styles
│ globalStyles.scss
│ globalVariables.scss
│
└───css
globalStyles.min.css
globalStyles.min.css.map
globalVariables.min.css
globalVariables.min.css.map
Copyright (C) 2023 | saphalpdyl



