Skip to content

Commit 24d1186

Browse files
committed
Initialise project using Create React App with Character data and Mortal Kombat logo.
1 parent d03bf77 commit 24d1186

23 files changed

+38297
-1
lines changed

.gitignore

+23
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
# See https://help.github.com/articles/ignoring-files/ for more about ignoring files.
2+
3+
# dependencies
4+
/node_modules
5+
/.pnp
6+
.pnp.js
7+
8+
# testing
9+
/coverage
10+
11+
# production
12+
/build
13+
14+
# misc
15+
.DS_Store
16+
.env.local
17+
.env.development.local
18+
.env.test.local
19+
.env.production.local
20+
21+
npm-debug.log*
22+
yarn-debug.log*
23+
yarn-error.log*

README.md

+124-1
Original file line numberDiff line numberDiff line change
@@ -1 +1,124 @@
1-
# frontend-challenge
1+
# Hampr Frontend Challenge
2+
3+
## Prerequisites
4+
5+
1. [Git](https://git-scm.com/) should be installed and used to clone this repository
6+
2. [Node.js](https://nodejs.org/en/) should be installed
7+
3. A GitHub account
8+
9+
## Quickstart
10+
11+
1. Fork this repository and clone the fork to your machine
12+
2. Install the dependencies `npm install`
13+
3. Start the application `npm start`
14+
15+
## Overview
16+
17+
### Challenge
18+
19+
Build a very basic single-page application to create a Squad of Champions.
20+
21+
Using the provided Figma design and data files the application should:
22+
23+
1. Show a list of all Characters
24+
2. Allow a user to filter the list of Characters
25+
3. Allow a user to select up to 6 Characters
26+
4. Show the selected Squad of Characters
27+
28+
#### What's provided
29+
30+
This repository contains the [Create React App](https://create-react-app.dev/) boilerplate code using the TypeScript template, a CSS reset, and the Mortal Kombot logo image. You are free to use any other boilerplate or React framework that uses TypeScript if you'd prefer.
31+
32+
We've also put together a `.json` file containing all Character data (sourced from [DashFight](https://dashfight.com/) and [EventHubs](https://www.eventhubs.com/)) from various fighting games (Mortal Kombat, Street Fighter, Super Smash Bros. and Dragon Ball Z). You can import this file directly into your code to complete the challenge. You'll find this in the `./src/data` directory.
33+
34+
##### Figma design files
35+
36+
- [Figma prototype (scrolling demo)](https://www.figma.com/proto/lARhl5uVfjSAf9wnOVJMNw/Squad-of-Champions?node-id=21%3A459&scaling=min-zoom&page-id=0%3A1)
37+
- [Figma design file](https://www.figma.com/file/7Hu2mw1QKruihnmmy4rybQ/Squad-of-Champions---Components?node-id=0%3A1)
38+
- [Figma design behaviour annotations](https://www.figma.com/file/41taXCaD9lqRhKKDO5tyNY/Squad-of-Champions---Comments?node-id=0%3A1)
39+
40+
#### Constraints
41+
42+
- 2–4 hours over ~5 days
43+
- React + TypeScript
44+
45+
## Expectations
46+
47+
**We do not expect you to spend more than 2–4 hours on the challenge**, and we understand that it's unrealistic to implement a complete and polished solution in this time frame. We also have intentionally built-in some poor usability patterns that we'd love for you to improve upon. If you feel there was more you could do to improve it by the end of this time, please add some notes about what you'd change. We'll discuss these with you in person (or video call). We are looking for good architectural decisions, modularity, readability, and adherence to industry best practices.
48+
49+
## Submission
50+
51+
Once you've finished you can send us the URL to your repository via email. If your repository is private let us know and we'll send you the GitHub accounts that will need access to review the submission.
52+
53+
You are free to open source your work if you like.
54+
55+
# Create React App Readme
56+
57+
This project was bootstrapped with [Create React App](https://github.com/facebook/create-react-app).
58+
59+
## Available Scripts
60+
61+
In the project directory, you can run:
62+
63+
### `npm start`
64+
65+
Runs the app in the development mode.\
66+
Open [http://localhost:3000](http://localhost:3000) to view it in your browser.
67+
68+
The page will reload when you make changes.\
69+
You may also see any lint errors in the console.
70+
71+
### `npm test`
72+
73+
Launches the test runner in the interactive watch mode.\
74+
See the section about [running tests](https://facebook.github.io/create-react-app/docs/running-tests) for more information.
75+
76+
### `npm run build`
77+
78+
Builds the app for production to the `build` folder.\
79+
It correctly bundles React in production mode and optimizes the build for the best performance.
80+
81+
The build is minified and the filenames include the hashes.\
82+
Your app is ready to be deployed!
83+
84+
See the section about [deployment](https://facebook.github.io/create-react-app/docs/deployment) for more information.
85+
86+
### `npm run eject`
87+
88+
**Note: this is a one-way operation. Once you `eject`, you can't go back!**
89+
90+
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.
91+
92+
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.
93+
94+
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.
95+
96+
## Learn More
97+
98+
You can learn more in the [Create React App documentation](https://facebook.github.io/create-react-app/docs/getting-started).
99+
100+
To learn React, check out the [React documentation](https://reactjs.org/).
101+
102+
### Code Splitting
103+
104+
This section has moved here: [https://facebook.github.io/create-react-app/docs/code-splitting](https://facebook.github.io/create-react-app/docs/code-splitting)
105+
106+
### Analyzing the Bundle Size
107+
108+
This section has moved here: [https://facebook.github.io/create-react-app/docs/analyzing-the-bundle-size](https://facebook.github.io/create-react-app/docs/analyzing-the-bundle-size)
109+
110+
### Making a Progressive Web App
111+
112+
This section has moved here: [https://facebook.github.io/create-react-app/docs/making-a-progressive-web-app](https://facebook.github.io/create-react-app/docs/making-a-progressive-web-app)
113+
114+
### Advanced Configuration
115+
116+
This section has moved here: [https://facebook.github.io/create-react-app/docs/advanced-configuration](https://facebook.github.io/create-react-app/docs/advanced-configuration)
117+
118+
### Deployment
119+
120+
This section has moved here: [https://facebook.github.io/create-react-app/docs/deployment](https://facebook.github.io/create-react-app/docs/deployment)
121+
122+
### `npm run build` fails to minify
123+
124+
This section has moved here: [https://facebook.github.io/create-react-app/docs/troubleshooting#npm-run-build-fails-to-minify](https://facebook.github.io/create-react-app/docs/troubleshooting#npm-run-build-fails-to-minify)

0 commit comments

Comments
 (0)