Skip to content

Commit c673b88

Browse files
Initial commit for Learn React App
1 parent 69bbf78 commit c673b88

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

73 files changed

+4509
-266
lines changed

LICENSE

+21
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
MIT License
2+
3+
Copyright (c) 2019 Ganesh Bhattarai
4+
5+
Permission is hereby granted, free of charge, to any person obtaining a copy
6+
of this software and associated documentation files (the "Software"), to deal
7+
in the Software without restriction, including without limitation the rights
8+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9+
copies of the Software, and to permit persons to whom the Software is
10+
furnished to do so, subject to the following conditions:
11+
12+
The above copyright notice and this permission notice shall be included in all
13+
copies or substantial portions of the Software.
14+
15+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21+
SOFTWARE.

README.md

+58-37
Original file line numberDiff line numberDiff line change
@@ -1,68 +1,89 @@
1-
This project was bootstrapped with [Create React App](https://github.com/facebook/create-react-app).
1+
# Welcome to Learn React App!
22

3-
## Available Scripts
3+
The goal of this tutorial is to quickly get you off the ground with `React` concepts. This tutorial has hands on exercises which I consider to be the most important part of this tutorial.
44

5-
In the project directory, you can run:
5+
The way this tutorial works is that first you have to checkout this project on your computer, and run the application locally. Then open the application on a browser and you can go through the tutorial as you like.
66

7-
### `npm start`
7+
## Checkout
88

9-
Runs the app in the development mode.<br>
10-
Open [http://localhost:3000](http://localhost:3000) to view it in the browser.
9+
Checkout the project to your computer using `git`:
1110

12-
The page will reload if you make edits.<br>
13-
You will also see any lint errors in the console.
11+
```
12+
git clone
13+
```
1414

15-
### `npm test`
15+
## Environment Setup
1616

17-
Launches the test runner in the interactive watch mode.<br>
18-
See the section about [running tests](https://facebook.github.io/create-react-app/docs/running-tests) for more information.
17+
If you don't already have `yarn` installed on your local machine please execute below command to install `yarn`:
1918

20-
### `npm run build`
19+
```
20+
npm install -g yarn
21+
```
2122

22-
Builds the app for production to the `build` folder.<br>
23-
It correctly bundles React in production mode and optimizes the build for the best performance.
23+
### Installing Dependencies
2424

25-
The build is minified and the filenames include the hashes.<br>
26-
Your app is ready to be deployed!
25+
On the root directory of the project please execute below command to install all the project dependencies:
26+
```
27+
yarn install
28+
```
2729

28-
See the section about [deployment](https://facebook.github.io/create-react-app/docs/deployment) for more information.
30+
### Starting application
2931

30-
### `npm run eject`
32+
On the root directory of the project please execute below command to start the tutorial application:
3133

32-
**Note: this is a one-way operation. Once you `eject`, you can’t go back!**
34+
```
35+
yarn start
36+
```
37+
After this is complete, the application will be deployed on port `3000`. Open a browser and navigate to `localhost:3000`.
3338

34-
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.
39+
-----
3540

36-
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.
41+
## Following the tutorial
3742

38-
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.
43+
Tutorial on this application are fairly straightforward to follow. Each tutorial has one or more exercises. You'll see once you are in the tutorial.
3944

40-
## Learn More
45+
The exercise panel has split view. The left hand side of the screen has your solution rendered and the right hand side of the screen has the target solution.
46+
Right above the exercise panel you'll see location of exercise files.
4147

42-
You can learn more in the [Create React App documentation](https://facebook.github.io/create-react-app/docs/getting-started).
48+
Please open the execise file on your favorite editor (VS Code, Atom, Sublime, IntelliJ etc.) and start making changes by following the instructions. Exercise files are heavily commented. Read through the comments and you should be able to write up the solution. If you have any confusion you can refer to the solution file for that exercise. Every time you make changes to the exercise file and save it, the browser will reload automatically reflecting your changes.
4349

44-
To learn React, check out the [React documentation](https://reactjs.org/).
50+
### Exercise Comment Guide
4551

46-
### Code Splitting
52+
Most comments in the exercise files starts with one of the below signs. This is to help you understand what you should do to the code immediately following this comments.
4753

48-
This section has moved here: https://facebook.github.io/create-react-app/docs/code-splitting
54+
🏆 - **Trophy** - Describes the overall goal of the exercise. You can find this at the top of the exercise file.
4955

50-
### Analyzing the Bundle Size
56+
💡 - **Light Bulb** - General information regarding the code immediately following this comment. You might find it throughout the code. No action is required on your part, just read them.
5157

52-
This section has moved here: https://facebook.github.io/create-react-app/docs/analyzing-the-bundle-size
58+
✏️ - **Pencil** - You are supposed to edit the code immediately following this comment. It is followed by a description of the change that you need to do.
5359

54-
### Making a Progressive Web App
60+
🧭 - **Compass** - When the description of change is not enough, compass will give you more direction. You will find it alongside the pencil when more elaborate instruction is deemed necessary.
5561

56-
This section has moved here: https://facebook.github.io/create-react-app/docs/making-a-progressive-web-app
62+
🚨 - **Alarm** - This means danger. Read the comment carefully. Usually it's used to say you shouldn't change the code immediately following this. It will create havoc.
5763

58-
### Advanced Configuration
64+
### FAQ
5965

60-
This section has moved here: https://facebook.github.io/create-react-app/docs/advanced-configuration
66+
<details>
67+
<summary>Do I need to install `yarn` or `npm` would do?</summary>
68+
<p>You don't really need yarn. Just use npm if you like.</p>
69+
</details>
6170

62-
### Deployment
71+
<details>
72+
<summary>Which browser should I use?</summary>
73+
<p>This tutorial has been tested in Chrome only so I highly recommend you use Chrome.</p>
74+
</details>
6375

64-
This section has moved here: https://facebook.github.io/create-react-app/docs/deployment
76+
<details>
77+
<summary>Which code editor should I use for exercise?</summary>
78+
<p>Anything really (Sublime, Atom, VS Code, IntelliJ) - its your preference.</p>
79+
</details>
6580

66-
### `npm run build` fails to minify
81+
<details>
82+
<summary>I accidently deleted something in exercise that I shouldn't have. What should I do?</summary>
83+
<p>The easiest way is to just revert back to the previous version on your editor. If you want to start anew, then just checkout that particular file from github again using something like:<pre><code>git checkout HEAD -- exercise/01-helloWorld.js</code></pre>
84+
</p>
85+
</details>
6786

68-
This section has moved here: https://facebook.github.io/create-react-app/docs/troubleshooting#npm-run-build-fails-to-minify
87+
## Contribution
88+
89+
If you went through the exercise and saw some inconsistencies or if you have an idea to make the overall tutorial better please feel free to open a PR.

package.json

+21-4
Original file line numberDiff line numberDiff line change
@@ -2,16 +2,30 @@
22
"name": "learn-react-app",
33
"version": "0.1.0",
44
"private": true,
5+
"proxy": "https://financialmodelingprep.com",
56
"dependencies": {
7+
"@material-ui/core": "^3.9.0",
8+
"@material-ui/icons": "^3.0.2",
9+
"classnames": "^2.2.6",
10+
"highlight.js": "^9.13.1",
11+
"lodash": "^4.17.11",
12+
"prop-types": "^15.6.2",
613
"react": "^16.7.0",
14+
"react-addons-shallow-compare": "^15.6.2",
715
"react-dom": "^16.7.0",
8-
"react-scripts": "2.1.3"
16+
"react-lowlight": "^2.0.0",
17+
"react-markdown": "^4.0.6",
18+
"react-router": "^4.3.1",
19+
"react-router-dom": "^4.3.1",
20+
"react-scripts": "2.1.3",
21+
"styled-components": "^4.1.3"
922
},
1023
"scripts": {
11-
"start": "react-scripts start",
24+
"start": "npm run build:markdown && react-scripts start",
1225
"build": "react-scripts build",
1326
"test": "react-scripts test",
14-
"eject": "react-scripts eject"
27+
"eject": "react-scripts eject",
28+
"build:markdown": "node scripts/processMarkdown"
1529
},
1630
"eslintConfig": {
1731
"extends": "react-app"
@@ -21,5 +35,8 @@
2135
"not dead",
2236
"not ie <= 11",
2337
"not op_mini all"
24-
]
38+
],
39+
"devDependencies": {
40+
"chalk": "^2.4.2"
41+
}
2542
}

public/index.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222
work correctly both with client-side routing and a non-root public URL.
2323
Learn how to configure a non-root public URL by running `npm run build`.
2424
-->
25-
<title>React App</title>
25+
<title>Learn React App</title>
2626
</head>
2727
<body>
2828
<noscript>You need to enable JavaScript to run this app.</noscript>

scripts/processMarkdown.js

+60
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,60 @@
1+
var fs = require('fs');
2+
var path = require('path');
3+
var chalk = require('chalk');
4+
5+
const TUTORIAL_PATH = 'src/tutorial';
6+
const TUTORIAL_BUILD_PATH = 'src/tutorial/build';
7+
const MARKDOWN_FILE_EXTENSION = 'md';
8+
9+
function cleanBuildFolder(){
10+
fs.readdir(TUTORIAL_BUILD_PATH, function (err, items) {
11+
items.forEach(function(file) {
12+
var filePath = path.join(TUTORIAL_BUILD_PATH, file);
13+
fs.unlink(filePath, function(err) {
14+
if (err) {
15+
console.log(chalk.red(`Error when deleting file %s`), filePath);
16+
throw new Error(err);
17+
}
18+
console.log(chalk.yellow(`Deleted file - %s`), filePath);
19+
})
20+
})
21+
});
22+
}
23+
24+
25+
function createJSFilesFromMarkdown(){
26+
fs.readdir(TUTORIAL_PATH, function(err, items) {
27+
items.forEach(function(file) {
28+
var filePath = path.join(TUTORIAL_PATH, file);
29+
fs.stat(filePath, function(err, stats) {
30+
if (stats.isFile() && isFileOfExtension(file, MARKDOWN_FILE_EXTENSION)) {
31+
fs.readFile(filePath, 'utf-8', function(err, data) {
32+
const newFileName = getFileNameWithoutExtension(file) + '.js';
33+
const newFilePath = path.join(TUTORIAL_BUILD_PATH, newFileName);
34+
const dataToWrite = `export default \` ${data.replace(/`/g, '\\\`')} \``;
35+
fs.writeFile(newFilePath, dataToWrite, function(err) {
36+
if (err) {
37+
console.log(chalk.red(`Error writing file - %s`), newFilePath);
38+
throw new Error(err);
39+
}
40+
console.log(chalk.green(`File sucessfully created - %s`), newFilePath);
41+
42+
})
43+
})
44+
}
45+
})
46+
})
47+
});
48+
}
49+
50+
function getFileNameWithoutExtension(filename) {
51+
return filename.split('.').slice(0, -1).join('.');
52+
}
53+
54+
function isFileOfExtension(filename, extension) {
55+
return filename.split('.').slice(-1)[0] === extension;
56+
}
57+
58+
cleanBuildFolder();
59+
createJSFilesFromMarkdown();
60+

src/App.css

-32
This file was deleted.

src/App.js

+18-18
Original file line numberDiff line numberDiff line change
@@ -1,26 +1,26 @@
11
import React, { Component } from 'react';
2-
import logo from './logo.svg';
3-
import './App.css';
2+
import { BrowserRouter as Router, Route, Switch } from 'react-router-dom';
3+
4+
import Tutorial from './setup/Tutorial';
5+
import Home from './setup/Home';
6+
import ScrollToTop from './setup/ScrollToTop';
47

58
class App extends Component {
69
render() {
710
return (
8-
<div className="App">
9-
<header className="App-header">
10-
<img src={logo} className="App-logo" alt="logo" />
11-
<p>
12-
Edit <code>src/App.js</code> and save to reload.
13-
</p>
14-
<a
15-
className="App-link"
16-
href="https://reactjs.org"
17-
target="_blank"
18-
rel="noopener noreferrer"
19-
>
20-
Learn React
21-
</a>
22-
</header>
23-
</div>
11+
<Router>
12+
<ScrollToTop>
13+
<div>
14+
<div className="App">
15+
<Switch>
16+
<Route exact path="/" component={Home} />
17+
<Route path="/tutorial/:tutorial" component={Tutorial} />
18+
<Route component={Home} />
19+
</Switch>
20+
</div>
21+
</div>
22+
</ScrollToTop>
23+
</Router>
2424
);
2525
}
2626
}

src/App.test.js

-9
This file was deleted.

src/FileReader.js

+9
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
class FileReader {
2+
readFile(fileLocation) {
3+
let _fileLocation = fileLocation.replace('src', '.').replace('.js', '');
4+
return import(`${_fileLocation}`)
5+
.then(data => data.default);
6+
}
7+
}
8+
9+
export default new FileReader();

0 commit comments

Comments
 (0)