Skip to content

Vintharas/ngstockholm-angular2-workshop

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

23 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

ngStockholm Workshop!

Hi! Welcome to ngStockholm! This repo contains our whole sample application.

Requirements

In order use run this code examples you'll need to install node and npm (npm is installed automatically when you install node).

How to run the examples

  1. Clone the repository
  2. Run npm install to install all necessary packages
  3. Run npm start, this will start a simple http server, enable TypeScript compilation on file changes and automagically reload your browser. Wow!!
  4. Start writing Angular 2
  5. Profit

Note that when you clone the repository you'll get the complete finalized code sample application. If you want to see a specific part just run git tag to see the available parts. You can use git checkout <tagname> to checkout any specific version. To go back ot the complete application run git checkout master.

Part I. Your First Component

  1. Your First Component (A single view with list of things)
    1. Bootstrapping an angular 2 app
    2. Your first component: A star wars people list component
    3. Listing stuff: Basic template with *ngFor
    4. EXERCISES
      1. Create People component and List people

Detailed Solution Step by Step

Part II. Extracting Responsibilities into Services

  1. Refactor your people retrieving into a service
    1. Create a new service that wraps retrieving star wars people
    2. Use service in your component
    3. Register service provider in your application
    4. EXERCISES
      1. Create star wars service

Detailed Solution Step by Step

Part III. Your Second Component. Learn more templat-y stuff

  1. Create a second component for person details
    1. When you click on a person in the list you'll show person details
      1. event bindings
      2. interpolation
    2. Create a person details component to encapsulate person details
      1. property bindings
    3. EXERCISES
      1. Create Person Details component and show person information when you click on a person in the list

Detailed Solution Step by Step

Part IV. Routing: Navigating between Master and Detail

  1. Instead of showing both at once, we'll enable routing between master and detail
    1. Setup these routes for your app
      1. Default route: people list
      2. Person details route with id as parameter
    2. EXERCISES
      1. Setup a master/detail routing

Detailed Solution Step by Step

Part V. Forms and Validation

  1. Improve your person details so you can edit properties
    1. Forms and two-way data binding
    2. Validation
    3. EXERCISES
      1. Update person details so you can edit properties

Detailed Solution Step by Step

Part VI. Async: Updating our service to get REAL data!

  1. Update service to get real data from an API
  2. Use angular 2 http service to get people
  3. Use http service to get a single person
  4. Use http service to save person (the API doesn't allow it but we can do an as-if)
  5. EXERCISES
    1. Update star wars service to get real data: get people, get person and save person

Part VII. Styles!

  1. EXERCISES
    1. Add some styles!
    2. See how component based styles don't leak to the whole app!

Part VIII. Bonus!!!!

  1. EXERCISES
    1. Add a app level navigation with the people you already have and starships!!
    2. Add a list of starships
    3. Add a detail when you click on a starships
    4. In the person detail display a list of the starships they own
      1. When you click on the starship go to the starship detail view

Useful References to Learn More

Web Services Info

About

Code Samples for the Angular 2 Workshop at ngStockholm

Resources

License

Stars

Watchers

Forks

Packages

No packages published