Skip to content

Commit 7cea324

Browse files
authored
Rewrite of Day 1 to use modern React (microsoft#294)
* update to hooks * more class to function * cleanup * finish ts final * update html lesson * add lessons page * clean up * move getters into context * adding type * fix bug * step 5 cleanup * init final pass * text tweak * fix ternaries * readme cleanup * fixed root readme
1 parent 4998c15 commit 7cea324

Some content is hidden

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

60 files changed

+915
-921
lines changed

README.md

+2-10
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,5 @@
11
# Frontend Bootcamp / Days in the Web
22

3-
> 🚨🚨 This project is a work in progress! Issues and pull requests are encouraged. 🚨🚨
4-
53
## Welcome
64

75
In this two-day workshop you'll learn the basics of frontend development while building a working web app.
@@ -73,7 +71,7 @@ Day one covers the basics of HTML, CSS and JavaScript, as well as an introductio
7371
### Day two
7472

7573
1. [TypeScript basics](step2-01)
76-
2. [UI Fabric component library](step2-02)
74+
2. [Fluent UI component library](step2-02)
7775
3. [Theming and styling](step2-03)
7876
4. [React Context](step2-04)
7977
5. [Redux: Store](step2-05)
@@ -97,12 +95,6 @@ If you are interested in JavaScript, TypeScript, React, Redux, or Design Systems
9795
- [@kenneth_chau](https://twitter.com/kenneth_chau)
9896
- [@micahgodbolt](https://twitter.com/micahgodbolt)
9997

100-
## Other projects from the UI Fabric team at Microsoft
101-
102-
- [UI Fabric](https://developer.microsoft.com/en-us/fabric) - [github repo](https://github.com/officedev/office-ui-fabric-react)
103-
- [Just](https://microsoft.github.io/just): The task library that just works - [github repo](https://github.com/Microsoft/just)
104-
- [Rush](https://rushjs.io): A scalable monorepo manager for the web - [github repo](https://github.com/Microsoft/web-build-tools/)
105-
10698
## Contributing
10799

108100
This project welcomes contributions and suggestions. Most contributions require you to agree to a
@@ -132,4 +124,4 @@ Microsoft's general trademark guidelines can be found at http://go.microsoft.com
132124
Privacy information can be found at https://privacy.microsoft.com/en-us/
133125

134126
Microsoft and any contributors reserve all other rights, whether under their respective copyrights, patents,
135-
or trademarks, whether by implication, estoppel or otherwise.
127+
or trademarks, whether by implication, estoppel or otherwise.

assets/scripts.js

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
// prettier-ignore
2-
var appInsights=window.appInsights||function(a){
3-
function b(a){c[a]=function(){var b=arguments;c.queue.push(function(){c[a].apply(c,b)})}}var c={config:a},d=document,e=window;setTimeout(function(){var b=d.createElement("script");b.src=a.url||"https://az416426.vo.msecnd.net/scripts/a/ai.0.js",d.getElementsByTagName("script")[0].parentNode.appendChild(b)});try{c.cookie=d.cookie}catch(a){}c.queue=[];for(var f=["Event","Exception","Metric","PageView","Trace","Dependency"];f.length;)b("track"+f.pop());if(b("setAuthenticatedUserContext"),b("clearAuthenticatedUserContext"),b("startTrackEvent"),b("stopTrackEvent"),b("startTrackPage"),b("stopTrackPage"),b("flush"),!a.disableExceptionTracking){f="onerror",b("_"+f);var g=e[f];e[f]=function(a,b,d,e,h){var i=g&&g(a,b,d,e,h);return!0!==i&&c["_"+f](a,b,d,e,h),i}}return c
2+
var appInsights = window.appInsights || function (a) {
3+
function b(a) { c[a] = function () { var b = arguments; c.queue.push(function () { c[a].apply(c, b) }) } } var c = { config: a }, d = document, e = window; setTimeout(function () { var b = d.createElement("script"); b.src = a.url || "https://az416426.vo.msecnd.net/scripts/a/ai.0.js", d.getElementsByTagName("script")[0].parentNode.appendChild(b) }); try { c.cookie = d.cookie } catch (a) { } c.queue = []; for (var f = ["Event", "Exception", "Metric", "PageView", "Trace", "Dependency"]; f.length;)b("track" + f.pop()); if (b("setAuthenticatedUserContext"), b("clearAuthenticatedUserContext"), b("startTrackEvent"), b("stopTrackEvent"), b("startTrackPage"), b("stopTrackPage"), b("flush"), !a.disableExceptionTracking) { f = "onerror", b("_" + f); var g = e[f]; e[f] = function (a, b, d, e, h) { var i = g && g(a, b, d, e, h); return !0 !== i && c["_" + f](a, b, d, e, h), i } } return c
44
}({
55
instrumentationKey: "6ad37ae0-c4ab-4739-925c-1e2773c31f17"
66
});
77

88
// prettier-ignore
99
if (window.location.hostname !== 'localhost') {
10-
window.appInsights=appInsights,appInsights.queue&&0===appInsights.queue.length&&appInsights.trackPageView(null, null, {urlReferrer: document.referrer});
10+
window.appInsights = appInsights, appInsights.queue && 0 === appInsights.queue.length && appInsights.trackPageView(null, null, { urlReferrer: document.referrer });
1111
}

assets/step.css

+14-1
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,21 @@ body {
77
padding: 0;
88
}
99

10+
img {
11+
max-width: 100%;
12+
}
13+
14+
li {
15+
margin-bottom: 3px;
16+
}
17+
18+
blockquote {
19+
background: white;
20+
padding: 0px 5px;
21+
}
22+
1023
body.ms-Fabric {
11-
font-size: 14px;
24+
font-size: 16px;
1225
line-height: 20px;
1326
}
1427

index.html

+10-8
Original file line numberDiff line numberDiff line change
@@ -21,31 +21,34 @@ <h2>Day 1</h2>
2121
<div class="Tile-link">
2222
Intro to HTML
2323
<div class="Tile-links">
24-
<a target="_blank" href="./step1-01/demo/">demo</a> | <a target="_blank" href="./step1-01/exercise/">exercise</a>
24+
<a target="_blank" href="./step1-01/lesson/">lesson</a> | <a target="_blank" href="./step1-01/demo/">demo</a> |
25+
<a target="_blank" href="./step1-01/exercise/">exercise</a>
2526
</div>
2627
</div>
2728
</li>
2829
<li class="Tile Tile--numbered">
2930
<div class="Tile-link">
3031
Intro to CSS
3132
<div class="Tile-links">
32-
<a target="_blank" href="./step1-02/demo/">demo</a> | <a target="_blank" href="./step1-02/exercise/">exercise</a>
33+
<a target="_blank" href="./step1-02/lesson/">lesson</a> | <a target="_blank" href="./step1-02/demo/">demo</a> |
34+
<a target="_blank" href="./step1-02/exercise/">exercise</a>
3335
</div>
3436
</div>
3537
</li>
3638
<li class="Tile Tile--numbered">
3739
<div class="Tile-link">
3840
Intro to JS
3941
<div class="Tile-links">
40-
<a target="_blank" href="./step1-03/demo/">demo</a> | <a target="_blank" href="./step1-03/exercise/">exercise</a>
42+
<a target="_blank" href="./step1-03/lesson/">lesson</a> | <a target="_blank" href="./step1-03/demo/">demo</a> |
43+
<a target="_blank" href="./step1-03/exercise/">exercise</a>
4144
</div>
4245
</div>
4346
</li>
4447
<li class="Tile Tile--numbered">
4548
<div class="Tile-link">
4649
React Intro
4750
<div class="Tile-links">
48-
<a target="_blank" href="./step1-04/demo/">demo</a> |
51+
<a target="_blank" href="./step1-04/lesson/">lesson</a> | <a target="_blank" href="./step1-04/demo/">demo</a> |
4952
<a target="_blank" href="./step1-04/final/">final</a>
5053
</div>
5154
</div>
@@ -87,7 +90,8 @@ <h2>Day 2</h2>
8790
<div class="Tile-link">
8891
TypeScript Basics
8992
<div class="Tile-links">
90-
<a target="_blank" href="./step2-01/demo/">demo</a> | <a target="_blank" href="./step2-01/exercise/">exercise</a> | <a target="_blank" href="./step2-01/final/">final</a>
93+
<a target="_blank" href="./step2-01/demo/">demo</a> | <a target="_blank" href="./step2-01/exercise/">exercise</a> |
94+
<a target="_blank" href="./step2-01/final/">final</a>
9195
</div>
9296
</div>
9397
</li>
@@ -140,9 +144,7 @@ <h2>Bonus Content</h2>
140144
Some Extra Bonus Lessons!! Yay! Bonus!!
141145
</li>
142146
<li class="Tile Tile--numbered">
143-
<a target="_blank" href="./bonus-servicecalls/demo/" class="Tile-link">
144-
Redux: Service Calls
145-
</a>
147+
<a target="_blank" href="./bonus-servicecalls/demo/" class="Tile-link"> Redux: Service Calls </a>
146148
</li>
147149
<li class="Tile Tile--numbered">
148150
<div class="Tile-link">

markdownReadme/src/index.ts

+4
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,13 @@ import marked, { Renderer } from 'marked';
22
import hljs from 'highlight.js/lib/highlight';
33
import javascript from 'highlight.js/lib/languages/javascript';
44
import typescript from 'highlight.js/lib/languages/typescript';
5+
import html from 'highlight.js/lib/languages/xml';
6+
import css from 'highlight.js/lib/languages/css';
57

68
hljs.registerLanguage('javascript', javascript);
79
hljs.registerLanguage('typescript', typescript);
10+
hljs.registerLanguage('html', html);
11+
hljs.registerLanguage('css', css);
812

913
async function run() {
1014
const div = document.getElementById('markdownReadme');

step1-01/demo/index.html

+49
Original file line numberDiff line numberDiff line change
@@ -5,13 +5,58 @@
55
<link rel="stylesheet" href="./style.css" />
66

77
<style>
8+
body {
9+
padding: 10px;
10+
}
811
hr {
912
margin: 40px;
1013
}
1114
</style>
1215
</head>
1316

1417
<body>
18+
<section>
19+
<h2><a href="https://developer.mozilla.org/en-US/docs/Glossary/semantics" target="_blank" >Why Semantic HTML</a></h2>
20+
<div>
21+
<h3>Semantic</h3>
22+
<p>This is a paragraph about why semantic HTML is important.</p>
23+
<h4>A unordered list</h4>
24+
<ul>
25+
<li>Unordered item 1</li>
26+
<li>Another unordered item</li>
27+
<li>and another unordered item</li>
28+
</ul>
29+
<h4>An ordered list</h4>
30+
<ol>
31+
<li>Ordered item 1</li>
32+
<li>Another ordered item</li>
33+
<li>and another ordered item</li>
34+
</ol>
35+
<h4>Next up</h4>
36+
<a href="https://fluidframework.com/">Fluid Framework</a>
37+
</div>
38+
<br/><br/>
39+
<div>
40+
<div>Non Semantic</div>
41+
<div>This is a paragraph about why semantic HTML is important.</div>
42+
<div>A unordered list</div>
43+
<div>
44+
<div>Unordered item 1</div>
45+
<div>Another unordered item</div>
46+
<div>and another unordered item</div>
47+
</div>
48+
<div>An ordered list</div>
49+
<div>
50+
<div>Ordered item 1</div>
51+
<div>Another ordered item</div>
52+
<div>and another ordered item</div>
53+
</div>
54+
<div>Next up</div>
55+
<div onClick="location.href='https://fluidframework.com/'">Fluid Framework</a>
56+
</div>
57+
<br/>
58+
</section>
59+
<hr>
1560
<section>
1661
<h2><a target="_blank" href="https://developer.mozilla.org/en-US/docs/Web/HTML/Element#Document_metadata">Document Metadata</a></h2>
1762
<pre>
@@ -173,6 +218,10 @@ <h2><a target="_blank" href="https://developer.mozilla.org/en-US/docs/Web/HTML/E
173218
<label for="name">Enter your name: </label>
174219
<input type="text" name="name" id="name" required />
175220
</div>
221+
<div>
222+
<label for="name">Enter your password: </label>
223+
<input type="password" name="password" id="password" required />
224+
</div>
176225
<div>
177226
<div>
178227
<input type="checkbox" id="option1" name="option1" checked />

step1-01/demo/README.md step1-01/lesson/README.md

+5-7
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,6 @@
1-
# Step 1.1 - Introduction to HTML (Demo)
1+
# Step 1.1 - Introduction to HTML
2+
3+
[Demo](../demo/) | [Exercise](../exercise/)
24

35
## How the web works
46

@@ -59,13 +61,9 @@ The [HTML demo page](https://microsoft.github.io/frontend-bootcamp/step1-01/demo
5961
</header>
6062
<main>
6163
<h2>About This Workshop</h2>
62-
<p>
63-
The first day provides an introduction to the fundamentals of the web: HTML, CSS and JavaScript.
64-
</p>
64+
<p>The first day provides an introduction to the fundamentals of the web: HTML, CSS and JavaScript.</p>
6565
<img src="../../assets/todo_screenshot.jpg" alt="Picture of the Todo App we will build" />
66-
<p>
67-
On the second day we'll dive into more advanced topics like TypeScript, testing, and state management.
68-
</p>
66+
<p>On the second day we'll dive into more advanced topics like TypeScript, testing, and state management.</p>
6967
</main>
7068
<footer>
7169
<h2>Get More Information</h2>

step1-01/lesson/index.html

+11
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
<!DOCTYPE html>
2+
<html>
3+
<head>
4+
<link rel="stylesheet" href="../../assets/step.css" />
5+
</head>
6+
<body class="ms-Fabric">
7+
<div id="markdownReadme" data-src="./README.md"></div>
8+
9+
<script src="../../assets/scripts.js"></script>
10+
</body>
11+
</html>

step1-01/lesson/src/index.tsx

Whitespace-only changes.

step1-02/demo/index.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -114,7 +114,7 @@
114114
&lt;/div&gt;
115115
&lt;div&gt;
116116
&lt;h2&gt;Our Logo&lt;/h2&gt;
117-
&lt;img src=&quot;../../assets/fabric.jpg&quot; width=&quot;100&quot; alt=&quot;fabric logo&quot; /&gt;
117+
&lt;img src=&quot;https://github.com/microsoft/frontend-bootcamp/blob/master/assets/fabric.jpg?raw=true&quot; width=&quot;100&quot; alt=&quot;fabric logo&quot; /&gt;
118118
&lt;/div&gt;
119119
&lt;div&gt;
120120
&lt;h2&gt;Contact Us&lt;/h2&gt;

step1-02/demo/README.md step1-02/lesson/README.md

+4
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
11
# Step 1.2 - Introduction to CSS (Demo)
22

3+
[Demo](../demo/) | [Exercise](../exercise/)
4+
35
## CSS properties
46

57
Now that we've gone over adding HTML tags to the page, let's cover adding styles to those tags. We can do quite a lot with styles! We can change:
@@ -44,3 +46,5 @@ Here's a more detailed view from [Chris Eppstein](https://twitter.com/chriseppst
4446
<img src="https://raw.githubusercontent.com/Microsoft/frontend-bootcamp/master/assets/css-syntax.png"/>
4547

4648
A selector can be a single tag, class, ID, or attribute. It can also be a [combination](https://developer.mozilla.org/en-US/docs/Learn/CSS/Introduction_to_CSS/Combinators_and_multiple_selectors) of those elements.
49+
50+
Bonus: Check out the [Vocabs project](http://apps.workflower.fi/vocabs/css/en)

step1-02/lesson/index.html

+11
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
<!DOCTYPE html>
2+
<html>
3+
<head>
4+
<link rel="stylesheet" href="../../assets/step.css" />
5+
</head>
6+
<body class="ms-Fabric">
7+
<div id="markdownReadme" data-src="./README.md"></div>
8+
9+
<script src="../../assets/scripts.js"></script>
10+
</body>
11+
</html>

step1-02/lesson/src/index.tsx

Whitespace-only changes.

step1-03/demo/README.md step1-03/lesson/README.md

+10-11
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ In this demo we are going to cover a few core basics of the language that will h
66

77
```html
88
<div id="contact-form">
9-
<label for="email">Email</label><input id="email" type="email"/>
9+
<label for="email">Email</label><input id="email" type="email" />
1010
<input class="submit" value="Submit" type="submit" />
1111
</div>
1212
```
@@ -29,7 +29,7 @@ We can create a new variable with the keywords `var`, `let`, `const` and use the
2929
- **string**: `'single quotes'`, `"double quotes"`, or `` `backticks` ``
3030
- **array**: `[ 1, 2, 3, 'hello', 'world']`
3131
- **object**: `{ foo: 3, bar: 'hello' }`
32-
- **function**: `function(foo) { return foo + 1 }`
32+
- **function**: `function(foo) { return foo + 1 }` or `(foo) => { return foo + 1}`
3333
- **null**
3434
- **undefined**
3535

@@ -42,8 +42,8 @@ const myBoolean = true;
4242
const myNumber = 5;
4343
const myString = `Using backticks I can reuse other variables ${myNumber}`;
4444
const myArray = [1, 'cat', false, myString];
45-
const myObject = { key1: 'value1', anotherKey: myArray };
46-
const myFunction = function(myNumberParam) {
45+
const myObject = { key1: 'value1', anotherKey: myArray, lastKey: aFunction };
46+
const myFunction = (myNumberParam) => {
4747
console.log(myNumber + myNumberParam);
4848
};
4949
```
@@ -62,11 +62,11 @@ const match = 'a';
6262

6363
Functions are reusable pieces of functionality. Functions can take inputs (parameters) and return values (or neither). Functions can be called from within your program, from within other functions, or invoked from within the DOM itself.
6464

65-
In our example we'll create a function called `displayMatches` (camelCase is typical for functions) and we'll invoke this function every time that our submit button is clicked. For now we'll simply have our function call `alert("I'm Clicked")`, which is a function that displays an alert message box in your browser.
65+
In our example we'll create a function called `displayMatches` (camelCase is typical for functions) and we'll invoke this function every time that our submit button is clicked. For now we'll simply have our function call `console.log("Clicked")`, which is a function that displays an alert message box in your browser.
6666

6767
```js
6868
function displayMatches() {
69-
alert("I'm Clicked");
69+
console.log('Clicked');
7070
}
7171
```
7272

@@ -81,11 +81,11 @@ To execute a function we need to attach it to an event. There are a number of po
8181
To attach a function to an event, we use an [`addEventListener`](https://developer.mozilla.org/en-US/docs/Web/API/EventListener) like this:
8282

8383
```js
84-
window.addEventListener('load', function() {
84+
window.addEventListener('load', function () {
8585
console.log('loaded');
8686
});
8787

88-
window.addEventListener('click', function() {
88+
window.addEventListener('click', function () {
8989
console.log('click');
9090
});
9191
```
@@ -97,10 +97,10 @@ window.addEventListener('click', function() {
9797
If you think this feels a little verbose, you're not alone. Many of the [most common event types](https://developer.mozilla.org/en-US/docs/Web/API/GlobalEventHandlers) are available as element properties. This way we can set properties like `onload` or `onclick` like this:
9898

9999
```js
100-
window.onload = function() {
100+
window.onload = function () {
101101
console.log('loaded!');
102102
};
103-
window.onclick = function() {
103+
window.onclick = function () {
104104
console.log('clicked!');
105105
};
106106
```
@@ -175,7 +175,6 @@ function displayMatches() {
175175
const email = document.getElementById('email');
176176
const text = email.value;
177177
console.log(text);
178-
// ...
179178
}
180179
```
181180

step1-03/lesson/index.html

+11
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
<!DOCTYPE html>
2+
<html>
3+
<head>
4+
<link rel="stylesheet" href="../../assets/step.css" />
5+
</head>
6+
<body class="ms-Fabric">
7+
<div id="markdownReadme" data-src="./README.md"></div>
8+
9+
<script src="../../assets/scripts.js"></script>
10+
</body>
11+
</html>

step1-03/lesson/src/index.tsx

Whitespace-only changes.

step1-04/demo/index.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121
background: green;
2222
}
2323
</pre>
24-
<pre data-lang="javascript">
24+
<pre data-lang="typescript">
2525
ReactDOM.render(
2626
&lt;div>Hello World&lt;/div>,
2727
document.getElementById('app')

0 commit comments

Comments
 (0)