Skip to content

Commit 27f7df3

Browse files
committed
feat: v2 of workshop
1 parent 514d236 commit 27f7df3

Some content is hidden

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

54 files changed

+7651
-0
lines changed

.eslintrc

+23
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
{
2+
"parser": "@typescript-eslint/parser",
3+
"plugins": ["@typescript-eslint"],
4+
"extends": ["eslint:recommended"],
5+
"parserOptions": {
6+
"ecmaVersion": 9,
7+
"sourceType": "module",
8+
"project": "tsconfig.json"
9+
},
10+
"env": {
11+
"shared-node-browser": true,
12+
"node": true,
13+
"es6": true
14+
},
15+
"rules": {
16+
"no-console": "off",
17+
"no-debugger": "off",
18+
"no-unused-vars": "off",
19+
"no-undef": "off",
20+
"no-redeclare": "off",
21+
"prefer-const": "off"
22+
}
23+
}

.github/ISSUE_TEMPLATE/bug_report.md

+37
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,37 @@
1+
---
2+
name: Bug report
3+
about: Something broke while you were progressing through the workshop
4+
5+
---
6+
7+
<!-- 🚨🚨🚨 READ THIS FIRST 🚨🚨🚨 -->
8+
<!--
9+
In order to help solve workshop issues quickly, we need you to make a best effort to complete the information below. Any incomplete bug reports will be closed.
10+
-->
11+
12+
- [ ] **System Information**
13+
- [ ] Browser type and version
14+
- [ ] OS type and version
15+
- [ ] WINDOWS: be sure to indicate which terminal you're using -- (i.e., cmd.exe, powershell, git- bash, cygwin, Ubuntu via windows subsystem for linux, etc...)
16+
- [ ] Node version
17+
- [ ] Any error messages that may be in the console where you ran npm start
18+
- [ ] Any error messages in the JS console
19+
20+
- [ ] **Describe the bug**
21+
<!-- A clear and concise description of what the bug is. -->
22+
23+
- [ ] **To Reproduce**
24+
Steps to reproduce the behavior:
25+
1. Go to '...'
26+
2. Click on '....'
27+
3. Scroll down to '....'
28+
4. See error
29+
30+
- [ ] **Expected behavior**
31+
A clear and concise description of what you expected to happen.
32+
33+
- [ ] **Screenshots (optional)**
34+
If applicable, add screenshots to help explain your problem.
35+
36+
- [ ] **Additional context (optional)**
37+
Add any other context about the problem here.
+17
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
---
2+
name: Feature request
3+
about: Suggest an idea for this project
4+
5+
---
6+
7+
**Is your feature request related to a problem? Please describe.**
8+
A clear and concise description of what the problem is. Ex. I'm always frustrated when [...]
9+
10+
**Describe the solution you'd like**
11+
A clear and concise description of what you want to happen.
12+
13+
**Describe alternatives you've considered**
14+
A clear and concise description of any alternative solutions or features you've considered.
15+
16+
**Additional context**
17+
Add any other context or screenshots about the feature request here.

.gitignore

+6
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
**/node_modules
2+
**/out
3+
**/lib
4+
.vscode
5+
lerna-debug.log
6+
**/tempCodeRunnerFile.ts

LICENSE

+29
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,29 @@
1+
BSD 3-Clause License
2+
3+
Copyright (c) 2019, Mike Works, Inc.
4+
All rights reserved.
5+
6+
Redistribution and use in source and binary forms, with or without
7+
modification, are permitted provided that the following conditions are met:
8+
9+
* Redistributions of source code must retain the above copyright notice, this
10+
list of conditions and the following disclaimer.
11+
12+
* Redistributions in binary form must reproduce the above copyright notice,
13+
this list of conditions and the following disclaimer in the documentation
14+
and/or other materials provided with the distribution.
15+
16+
* Neither the name of the copyright holder nor the names of its
17+
contributors may be used to endorse or promote products derived from
18+
this software without specific prior written permission.
19+
20+
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
21+
AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
22+
IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
23+
DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE
24+
FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
25+
DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
26+
SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
27+
CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
28+
OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
29+
OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.

README.md

+80
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,80 @@
1+
<p align='center'>
2+
<a href="https://mike.works" target='_blank'>
3+
<img height=40 src='https://assets.mike.works/img/login_logo-33a9e523d451fb0d902f73d5452d4a0b.png' />
4+
</a>
5+
</p>
6+
<p align='center'>
7+
<a href="https://mike.works/course/typescript-fundamentals-7832c19" target='_blank'>
8+
<img height=150 src='https://cloud.githubusercontent.com/assets/558005/25579415/1afbffaa-2e78-11e7-9b4a-ea44ead26bfb.png' />
9+
</a>
10+
</p>
11+
<p align='center'>
12+
<a href="https://travis-ci.org/mike-works/typescript-fundamentals" title="Build Status">
13+
<img title="Build Status" src="https://travis-ci.org/mike-works/typescript-fundamentals.svg?branch=solutions"/>
14+
</a>
15+
<a href="https://github.com/mike-works/typescript-fundamentals/releases" title="Version">
16+
<img title="Version" src="https://img.shields.io/github/tag/mike-works/typescript-fundamentals.svg" />
17+
</a>
18+
</p>
19+
<p align='center'>
20+
This is the example project used for the <a title="Mike.Works" href="https://mike.works">Mike.Works</a> <a title="TypeScript Fundamentals" href="https://mike.works/course/typescript-fundamentals-7832c19">TypeScript Fundamentals</a> course.
21+
</p>
22+
23+
# Course outline and slides
24+
25+
- [View course outline here](https://mike.works/course/typescript-fundamentals-7832c19)
26+
- [View slides here](https://docs.mike.works/typescript-slides)
27+
28+
## Dependencies
29+
30+
Make sure your system is set up with
31+
32+
- [Yarn](https://yarnpkg.com/en/)
33+
- [Visual Studio Code](https://code.visualstudio.com/)
34+
35+
## Project setup
36+
37+
First, clone this project from Github
38+
39+
```
40+
git clone https://github.com/mike-works/typescript-fundamentals tscript
41+
cd tscript
42+
```
43+
44+
Finally, while in the top-level folder of this project, download and install this project's dependencies by running
45+
46+
```
47+
yarn
48+
```
49+
50+
# License
51+
52+
While the general license for this project is the BSD 3-clause, the exercises
53+
themselves are proprietary and are licensed on a per-individual basis, usually
54+
as a result of purchasing a ticket to a public workshop, or being a participant
55+
in a private training.
56+
57+
Here are some guidelines for things that are **OK** and **NOT OK**, based on our
58+
understanding of how these licenses work:
59+
60+
### OK
61+
62+
- Using everything in this project other than the exercises (or accompanying tests)
63+
to build a project used for your own free or commercial training material
64+
- Copying code from build scripts, configuration files, tests and development
65+
harnesses that are not part of the exercises specifically, for your own projects
66+
- As an owner of an individual license, using code from tests, exercises, or
67+
exercise solutions for your own non-training-related project.
68+
69+
### NOT OK (without express written consent)
70+
71+
- Using this project, or any subset of
72+
exercises contained within this project to run your own workshops
73+
- Writing a book that uses the code for these exercises
74+
- Recording a screencast that contains one or more of this project's exercises
75+
76+
# Copyright
77+
78+
&copy; 2018 [Mike.Works](https://mike.works), All Rights Reserved
79+
80+
###### This material may not be used for workshops, training, or any other form of instructing or teaching developers, without express written consent

challenges/address-book/README.md

+12
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
# `tsc` examples
2+
3+
## TODO
4+
5+
- [ ] compile with `lib` as the output directory
6+
- [ ] compile in "watch mode"
7+
- [ ] compile with declaration file output
8+
- [ ] compile to ES2015 vs commonjs modules
9+
- [ ] use a `tsconfig.json`
10+
- [ ] source maps
11+
- [ ] declaration maps
12+
- [ ] module target (`es3` vs `es5` vs `es2017`)

challenges/address-book/package.json

+23
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
{
2+
"name": "hello-ts",
3+
"version": "0.0.0",
4+
"private": true,
5+
"description": "> TODO: description",
6+
"author": "Mike North <[email protected]>",
7+
"homepage": "",
8+
"license": "ISC",
9+
"main": "lib/hello-ts.js",
10+
"directories": {
11+
"lib": "lib",
12+
"test": "test"
13+
},
14+
"files": [
15+
"lib"
16+
],
17+
"scripts": {
18+
"clean": "rimraf lib",
19+
"build": "tsc src/index.ts --outDir lib --types node --module commonjs --target ES2017",
20+
"test": "mocha"
21+
},
22+
"devDependencies": {}
23+
}

challenges/address-book/src/index.js

+79
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,79 @@
1+
export class AddressBook {
2+
contacts = [];
3+
4+
addContact(contact) {
5+
this.contacts.push(contact);
6+
}
7+
8+
findContactByName(filter) {
9+
return this.contacts.filter(c => {
10+
if (
11+
typeof filter.firstName !== "undefined" &&
12+
c.firstName !== filter.firstName
13+
) {
14+
return false;
15+
}
16+
if (
17+
typeof filter.lastName !== "undefined" &&
18+
c.lastName !== filter.lastName
19+
) {
20+
return false;
21+
}
22+
return true;
23+
});
24+
}
25+
}
26+
27+
export function formatDate(date) {
28+
return (
29+
date
30+
.toISOString()
31+
.replace(/[-:]+/g, "")
32+
.split(".")[0] + "Z"
33+
);
34+
}
35+
36+
function getFullName(contact) {
37+
return [contact.firstName, contact.middleName, contact.lastName]
38+
.filter(Boolean)
39+
.join(" ");
40+
}
41+
42+
export function getVcardText(contact, date = new Date()) {
43+
const parts = [
44+
"BEGIN:VCARD",
45+
"VERSION:2.1",
46+
`N:${contact.lastName};${contact.firstName};${contact.middleName ||
47+
""};${contact.salutation || ""}`,
48+
`FN:${getFullName(contact)}`,
49+
...Object.keys(contact.phones).map(
50+
phName => `TEL;${phName.toUpperCase()};VOICE:${contact.phones[phName]}`
51+
),
52+
...Object.keys(contact.addresses)
53+
.map(addrName => {
54+
const address = contact.addresses[addrName];
55+
if (address) {
56+
return `ADR;${addrName.toUpperCase()}:;;${address.houseNumber} ${
57+
address.street
58+
};${address.city};${address.state};${address.postalCode};${
59+
address.country
60+
}\nLABEL;${addrName.toUpperCase()};ENCODING=QUOTED-PRINTABLE;CHARSET=UTF-8:${
61+
address.houseNumber
62+
} ${address.street}.=0D=0A=${address.city}, ${address.state} ${
63+
address.postalCode
64+
}=0D=0A${address.country}`;
65+
} else {
66+
return "";
67+
}
68+
})
69+
.filter(Boolean)
70+
];
71+
72+
if (contact.email) {
73+
parts.push(`EMAIL:${contact.email}`);
74+
}
75+
const d = new Date();
76+
parts.push(`REV:${formatDate(date)}`);
77+
parts.push("END:VCARD");
78+
return parts.join("\n");
79+
}

0 commit comments

Comments
 (0)