2016-04-01 20:23:34 -04:00
include ../_util-fns
:marked
2016-05-01 02:11:33 -04:00
Welcome to the Angular 2 Guide of Style (version 6)
2016-04-25 12:24:13 -04:00
2016-04-01 20:23:34 -04:00
## Purpose
2016-04-26 01:42:22 -04:00
If you are looking for an opinionated style guide for syntax, conventions, and structuring Angular applications, then step right in.
2016-04-01 20:23:34 -04:00
The purpose of this style guide is to provide guidance on building Angular applications by showing the conventions we use and, more importantly, why we choose them.
.l-main-section
2016-04-28 03:58:50 -04:00
:marked
## Style Vocabulary
Each guideline describes either a good or bad practice, and all have a consistent presentation.
The wording of each guideline indicates how strong the recommendation is.
.s-rule.do
:marked
**Do** is one that should always be followed.
_Always_ might be a bit too strong a word.
Guidelines that literally should always be followed are extremely rare.
On the other hand, we need a really unusual case for breaking a *Do* guideline.
.s-rule.consider
:marked
**Consider** guidelines should generally be followed.
If you fully understand the meaning behind the guideline and have a good reason to deviate, then do so. Please strive to be consistent.
.s-rule.avoid
:marked
**Avoid** indicates something we should almost never do. Code examples to *avoid* have an unmistakeable red header.
.l-main-section
:marked
## File Structure Conventions
Some code examples display a file that has one or more similarly named companion files. (e.g. hero.component.ts and hero.component.html).
The guideline will use the shortcut `hero.component.ts|html|css|spec` to represent that various files. This makes this guide's file structures easier to read and more terse.
.l-main-section
2016-04-01 20:23:34 -04:00
a(id='toc')
2016-04-25 12:24:13 -04:00
2016-04-01 20:23:34 -04:00
:marked
## Table of Contents
1. [Single Responsibility](#single-responsibility)
2016-04-25 12:24:13 -04:00
1. [Naming](#naming)
2016-05-01 02:11:33 -04:00
1. [Coding Conventions](#coding-conventions)
2016-04-13 17:39:12 -04:00
1. [Application Structure](#application-structure)
2016-04-01 20:23:34 -04:00
1. [Components](#components)
2016-04-13 17:39:12 -04:00
1. [Directives](#directives)
2016-04-01 20:23:34 -04:00
1. [Services](#services)
1. [Data Services](#data-services)
2016-05-01 02:11:33 -04:00
1. [Lifecycle Hooks](#lifecycle-hooks)
2016-04-13 17:39:12 -04:00
1. [Routing](#routing)
2016-04-01 20:23:34 -04:00
1. [Appendix](#appendix)
2016-04-25 12:24:13 -04:00
2016-04-26 01:42:22 -04:00
.l-main-section
2016-04-01 20:23:34 -04:00
:marked
## Single Responsibility
2016-04-25 12:24:13 -04:00
We apply the [Single Responsibility Principle](https:\/\/en.wikipedia.org/wiki/Single_responsibility_principle) to all Components, Services, and other symbols we create. This helps make our app cleaner, easier to read and maintain, and more testable.
2016-04-28 03:58:50 -04:00
### Rule of One
2016-04-13 17:39:12 -04:00
<a id="01-01"></a>
#### Style 01-01
2016-04-28 03:58:50 -04:00
.s-rule.do
:marked
**Do** define one thing (e.g. service or component) per file.
.s-rule.consider
2016-04-26 01:42:22 -04:00
:marked
2016-04-28 03:58:50 -04:00
**Consider** limiting files to 400 lines of code.
2016-04-26 01:42:22 -04:00
.s-why
:marked
2016-04-25 12:24:13 -04:00
**Why?** One component per file makes it far easier to read, maintain, and avoid collisions with teams in source control.
2016-04-28 03:58:50 -04:00
.s-why
:marked
2016-04-25 12:24:13 -04:00
**Why?** One component per file avoids hidden bugs that often arise when combining components in a file where they may share variables, create unwanted closures, or unwanted coupling with dependencies.
2016-04-01 20:23:34 -04:00
2016-05-01 02:11:33 -04:00
.s-why.s-why-last
2016-04-28 03:58:50 -04:00
:marked
2016-04-26 01:42:22 -04:00
**Why?** A single component can be the default export for its file which facilitates lazy loading with the Component Router.
:marked
2016-04-01 20:23:34 -04:00
The key is to make the code more reusable, easier to read, and less mistake prone.
2016-04-26 01:42:22 -04:00
The following *negative* example defines the `AppComponent`, bootstraps the app, defines the `Hero` model object, and loads heroes from the server ... all in the same file. *Don't do this*.
2016-04-01 20:23:34 -04:00
2016-04-28 03:58:50 -04:00
+makeExample('style-guide/ts/01-01/app/heroes/hero.component.avoid.ts', '', 'app/heroes/hero.component.ts')(avoid=1)
2016-04-01 20:23:34 -04:00
:marked
2016-04-26 01:42:22 -04:00
Better to redistribute the component and supporting activities into their own dedicated files.
2016-04-01 20:23:34 -04:00
+makeTabs(
2016-04-26 01:42:22 -04:00
`style-guide/ts/01-01/app/main.ts,
style-guide/ts/01-01/app/app.component.ts,
style-guide/ts/01-01/app/heroes/heroes.component.ts,
2016-04-28 03:58:50 -04:00
style-guide/ts/01-01/app/heroes/shared/hero.service.ts,
style-guide/ts/01-01/app/heroes/shared/hero.model.ts,
style-guide/ts/01-01/app/heroes/shared/mock-heroes.ts`,
2016-04-25 12:24:13 -04:00
'',
2016-04-26 01:42:22 -04:00
`app/main.ts,
app/app.component.ts,
app/heroes/heroes.component.ts,
2016-04-28 03:58:50 -04:00
app/heroes/shared/hero.service.ts,
app/heroes/shared/hero.model.ts,
app/heroes/shared/mock-heroes.ts`)
2016-04-25 12:24:13 -04:00
2016-04-01 20:23:34 -04:00
:marked
As the app grows, this rule becomes even more important.
2016-04-26 01:42:22 -04:00
a(href="#toc") Back to top
2016-04-01 20:23:34 -04:00
2016-04-26 01:42:22 -04:00
.l-main-section
2016-04-01 20:23:34 -04:00
:marked
### Small Functions
2016-04-13 17:39:12 -04:00
<a id="01-02"></a>
#### Style 01-02
2016-04-28 03:58:50 -04:00
.s-rule.do
:marked
**Do** define small functions
.s-rule.consider
:marked
**Consider** limiting to no more than 75 lines.
2016-04-01 20:23:34 -04:00
2016-04-28 03:58:50 -04:00
.s-why
:marked
2016-04-25 12:24:13 -04:00
**Why?** Small functions are easier to test, especially when they do one thing and serve one purpose.
2016-04-01 20:23:34 -04:00
2016-05-01 02:11:33 -04:00
.s-why
:marked
2016-04-25 12:24:13 -04:00
**Why?** Small functions promote reuse.
2016-04-01 20:23:34 -04:00
2016-05-01 02:11:33 -04:00
.s-why
:marked
2016-04-25 12:24:13 -04:00
**Why?** Small functions are easier to read.
2016-04-01 20:23:34 -04:00
2016-05-01 02:11:33 -04:00
.s-why
:marked
2016-04-25 12:24:13 -04:00
**Why?** Small functions are easier to maintain.
2016-04-01 20:23:34 -04:00
2016-05-01 02:11:33 -04:00
.s-why.s-why-last
:marked
2016-04-25 12:24:13 -04:00
**Why?** Small functions help avoid hidden bugs that come with large functions that share variables with external scope, create unwanted closures, or unwanted coupling with dependencies.
2016-04-01 20:23:34 -04:00
2016-04-26 01:42:22 -04:00
a(href="#toc") Back to top
2016-04-25 12:24:13 -04:00
2016-04-26 01:42:22 -04:00
.l-main-section
2016-04-01 20:23:34 -04:00
:marked
2016-04-13 17:39:12 -04:00
## Naming
2016-04-25 12:24:13 -04:00
Naming conventions are hugely important to maintainbility and readability. This guide will recommend naming conventions for the file name and the symbol name.
2016-04-26 01:42:22 -04:00
.l-main-section
2016-04-25 12:24:13 -04:00
:marked
### General Naming Guidelines
<a id="02-01"></a>
#### Style 02-01
2016-04-28 03:58:50 -04:00
.s-rule.do
:marked
**Do** use consistent names for all symbols.
.s-rule.do
:marked
**Do** follow a pattern that describes the symbol's feature then its type. The recommended pattern is `feature.type.ts`.
2016-04-13 17:39:12 -04:00
2016-04-28 03:58:50 -04:00
.s-why
:marked
**Why?** Naming conventions help provide a consistent way to find content at a glance. Consistency within the project is vital. Consistency with a team is important. Consistency across a company provides tremendous efficiency.
2016-04-13 17:39:12 -04:00
2016-04-28 03:58:50 -04:00
.s-why
:marked
**Why?** The naming conventions should simply help we find our code faster and make it easier to understand.
2016-04-25 12:24:13 -04:00
2016-05-01 02:11:33 -04:00
.s-why.s-why-last
2016-04-28 03:58:50 -04:00
:marked
**Why?** Names of folders and files should clearly convey their intent. For example, `app/heroes/hero-list.component.ts` may contain a component that manages a list of heroes.
2016-04-13 17:39:12 -04:00
2016-04-26 01:42:22 -04:00
a(href="#toc") Back to top
2016-04-25 12:24:13 -04:00
2016-04-26 01:42:22 -04:00
.l-main-section
2016-04-13 17:39:12 -04:00
:marked
### Separate File Names with Dots and Dashes
2016-04-25 12:24:13 -04:00
<a id="02-02"></a>
#### Style 02-02
2016-04-13 17:39:12 -04:00
2016-04-28 03:58:50 -04:00
.s-rule.do
:marked
**Do** use dashes to separate words.
2016-04-13 17:39:12 -04:00
2016-04-28 03:58:50 -04:00
.s-rule.do
:marked
**Do** use dots to separate the descriptive name from the type.
2016-04-25 12:24:13 -04:00
2016-04-28 03:58:50 -04:00
.s-rule.do
:marked
**Do** use consistent names for all components following a pattern that describes the component's feature then its type. A recommended pattern is `feature.type.ts`.
2016-04-13 17:39:12 -04:00
2016-04-28 03:58:50 -04:00
.s-rule.do
:marked
2016-05-01 02:11:33 -04:00
**Do** use conventional suffixes for the types including `*.service.ts`, `*.component.ts`, `*.pipe.ts`. Invent other suffixes where desired, but take care in having too many.
2016-04-25 12:24:13 -04:00
2016-04-28 03:58:50 -04:00
.s-why
:marked
**Why?** Provides a consistent way to quickly identify what is in the file.
2016-04-13 17:39:12 -04:00
2016-04-28 03:58:50 -04:00
.s-why
:marked
**Why?** Provides a consistent way to quickly find a specific file using an editor or IDE's fuzzy search techniques.
2016-05-01 02:11:33 -04:00
.s-why.s-why-last
2016-04-28 03:58:50 -04:00
:marked
**Why?** Provides pattern matching for any automated tasks.
2016-04-13 17:39:12 -04:00
2016-04-26 01:42:22 -04:00
a(href="#toc") Back to top
2016-04-25 12:24:13 -04:00
2016-04-26 01:42:22 -04:00
.l-main-section
2016-04-13 17:39:12 -04:00
:marked
2016-04-25 12:24:13 -04:00
### Components and Directives
<a id="02-03"></a>
#### Style 02-03
2016-04-28 03:58:50 -04:00
.s-rule.do
:marked
**Do** use consistent names for all assets named after what they represent.
2016-04-13 17:39:12 -04:00
2016-04-28 03:58:50 -04:00
.s-rule.do
:marked
2016-05-01 02:11:33 -04:00
**Do** use upper camel case for symbols. Match the name of the symbol to the naming of the file.
2016-04-13 17:39:12 -04:00
2016-04-28 03:58:50 -04:00
.s-rule.do
:marked
**Do** append the symbol name with the suffix that it represents.
2016-04-13 17:39:12 -04:00
2016-04-28 03:58:50 -04:00
.s-why
:marked
**Why?** Provides a consistent way to quickly identify and reference assets.
2016-04-13 17:39:12 -04:00
2016-04-28 03:58:50 -04:00
.s-why
:marked
2016-05-01 02:11:33 -04:00
**Why?** Upper camel case is conventional for identifying object that can be instantiated using a constructor.
2016-04-13 17:39:12 -04:00
2016-05-01 02:11:33 -04:00
.s-why.s-why-last
2016-04-28 03:58:50 -04:00
:marked
**Why?** The `Component` suffix is more commonly used and is more explicitly descriptive.
2016-04-13 17:39:12 -04:00
2016-05-01 02:11:33 -04:00
- var top="vertical-align:top"
table(width="100%")
col(width="50%")
col(width="50%")
tr
th Symbol Name
th File Name
tr(style=top)
td
code-example.
@Component({ ... })
export class AppComponent {}
td
:marked
app.component.ts
tr(style=top)
td
code-example.
@Component({ ... })
export class HeroesComponent
td
:marked
heroes.component.ts
tr(style=top)
td
code-example.
@Component({ ... })
export class HeroListComponent
td
:marked
hero-list.component.ts
tr(style=top)
td
code-example.
@Component({ ... })
export class HeroDetailComponent
td
:marked
hero-detail.component.ts
tr(style=top)
td
code-example.
@Directive({ ... })
export class ValidationDirective
td
:marked
validation.directive.ts
2016-04-28 03:58:50 -04:00
:marked
2016-04-13 17:39:12 -04:00
2016-04-26 01:42:22 -04:00
a(href="#toc") Back to top
2016-04-25 12:24:13 -04:00
2016-04-26 01:42:22 -04:00
.l-main-section
2016-04-13 17:39:12 -04:00
:marked
### Service Names
2016-04-25 12:24:13 -04:00
<a id="02-04"></a>
#### Style 02-04
2016-04-13 17:39:12 -04:00
2016-04-28 03:58:50 -04:00
.s-rule.do
:marked
**Do** use consistent names for all services named after their feature.
.s-rule.do
:marked
2016-05-01 02:11:33 -04:00
**Do** use upper camel case for services.
2016-04-28 03:58:50 -04:00
.s-rule.do
:marked
**Do** suffix services with `Service` when it is not clear what they are (e.g. when they are nouns).
2016-04-13 17:39:12 -04:00
2016-04-28 03:58:50 -04:00
.s-why
:marked
**Why?** Provides a consistent way to quickly identify and reference services.
2016-04-13 17:39:12 -04:00
2016-04-28 03:58:50 -04:00
.s-why
:marked
**Why?** Clear service names such as `logger` do not require a suffix.
2016-04-13 17:39:12 -04:00
2016-05-01 02:11:33 -04:00
.s-why.s-why-last
2016-04-28 03:58:50 -04:00
:marked
**Why?** Service names such as `Credit` are nouns and require a suffix and should be named with a suffix when it is not obvious if it is a service or something else.
2016-04-13 17:39:12 -04:00
2016-05-01 02:11:33 -04:00
- var top="vertical-align:top"
table(width="100%")
col(width="50%")
col(width="50%")
tr
th Symbol Name
th File Name
tr(style=top)
td
code-example.
@Injectable()
export class HeroDataService {}
td
:marked
hero-data.service.ts
tr(style=top)
td
code-example.
@Injectable()
export class CreditService {}
td
:marked
credit.service.ts
tr(style=top)
td
code-example.
@Injectable()
export class LoggerService {}
td
:marked
logger.service.ts
2016-04-28 03:58:50 -04:00
:marked
2016-04-13 17:39:12 -04:00
2016-04-26 01:42:22 -04:00
a(href="#toc") Back to top
2016-04-25 12:24:13 -04:00
2016-04-26 01:42:22 -04:00
.l-main-section
2016-04-13 17:39:12 -04:00
:marked
### Bootstrapping
2016-04-25 12:24:13 -04:00
<a id="02-05"></a>
#### Style 02-05
2016-04-13 17:39:12 -04:00
2016-04-28 03:58:50 -04:00
.s-rule.do
:marked
**Do** put bootstrapping and platform logic for the app in a file named `main.ts`.
2016-04-25 12:24:13 -04:00
2016-04-28 03:58:50 -04:00
.s-rule.avoid
:marked
**Avoid** putting app logic in the `main.ts`. Instead consider placing it in a Component or Service.
2016-04-25 12:24:13 -04:00
2016-04-28 03:58:50 -04:00
.s-why
:marked
**Why?** Follows a consistent convention for the startup logic of an app.
2016-04-13 17:39:12 -04:00
2016-05-01 02:11:33 -04:00
.s-why.s-why-last
2016-04-28 03:58:50 -04:00
:marked
**Why?** Follows a familar convention from other technology platforms.
2016-04-13 17:39:12 -04:00
2016-04-26 01:42:22 -04:00
a(href="#toc") Back to top
2016-04-25 12:24:13 -04:00
2016-04-26 01:42:22 -04:00
.l-main-section
2016-04-25 12:24:13 -04:00
:marked
2016-05-01 02:11:33 -04:00
### Use lower camel case for Directive Selectors
2016-04-25 12:24:13 -04:00
<a id="02-06"></a>
#### Style 02-06
2016-04-28 03:58:50 -04:00
.s-rule.do
:marked
2016-05-01 02:11:33 -04:00
**Do** Use lower camel case for naming the selectors of our directives.
2016-04-25 12:24:13 -04:00
2016-04-28 03:58:50 -04:00
.s-why
:marked
**Why?** Keeps the names of the properties defined in the directives that are bound to the view consistent with the attribute names.
2016-04-25 12:24:13 -04:00
2016-05-01 02:11:33 -04:00
.s-why.s-why-last
2016-04-28 03:58:50 -04:00
:marked
2016-05-01 02:11:33 -04:00
**Why?** The Angular 2 HTML parser is case sensitive and will recognize lower camel case.
2016-04-25 12:24:13 -04:00
2016-04-26 01:42:22 -04:00
a(href="#toc") Back to top
2016-04-25 12:24:13 -04:00
2016-04-26 01:42:22 -04:00
.l-main-section
2016-04-25 12:24:13 -04:00
:marked
### Custom Prefix for Components
<a id="02-07"></a>
#### Style 02-07
2016-04-28 03:58:50 -04:00
.s-rule.do
:marked
**Do** use a custom prefix for the selector of our components. For example, the prefix `toh` represents from **T**our **o**f **H**eroes and the prefix `admin` represents an admin feature area.
2016-04-25 12:24:13 -04:00
2016-04-28 03:58:50 -04:00
.s-rule.do
:marked
**Do** use a prefix that identifies the feature area or the app itself.
2016-04-25 12:24:13 -04:00
2016-04-28 03:58:50 -04:00
.s-why
:marked
2016-05-01 02:11:33 -04:00
**Why?** Prevents name collisions.
2016-04-25 12:24:13 -04:00
2016-04-28 03:58:50 -04:00
.s-why
2016-05-01 02:11:33 -04:00
:marked
**Why?** Makes it easier to promote and share our feature in other apps.
.s-why.s-why-last
2016-04-28 03:58:50 -04:00
:marked
2016-05-01 02:11:33 -04:00
**Why?** Our Components and elements are easily identified.
2016-04-25 12:24:13 -04:00
2016-05-01 02:11:33 -04:00
+makeExample('style-guide/ts/02-07/app/heroes/hero.component.avoid.ts', 'example', 'app/heroes/hero.component.ts')(avoid=1)
2016-04-26 01:42:22 -04:00
:marked
2016-04-25 12:24:13 -04:00
2016-05-01 02:11:33 -04:00
+makeExample('style-guide/ts/02-07/app/users/users.component.avoid.ts', 'example', 'app/users/users.component.ts')(avoid=1)
2016-04-26 01:42:22 -04:00
:marked
2016-04-25 12:24:13 -04:00
2016-04-28 03:58:50 -04:00
+makeExample('style-guide/ts/02-07/app/heroes/hero.component.ts', 'example', 'app/heroes/hero.component.ts')
2016-04-26 01:42:22 -04:00
:marked
2016-04-25 12:24:13 -04:00
2016-04-28 03:58:50 -04:00
+makeExample('style-guide/ts/02-07/app/users/users.component.ts', 'example', 'app/users/users.component.ts')
2016-04-26 01:42:22 -04:00
:marked
2016-04-25 12:24:13 -04:00
:marked
### Custom Prefix for Directives
<a id="02-08"></a>
#### Style 02-08
2016-04-28 03:58:50 -04:00
.s-rule.do
:marked
**Do** use a custom prefix for the selector of our directives (for instance below is used the prefix `toh` from **T**our **o**f **H**eroes).
2016-04-25 12:24:13 -04:00
2016-04-28 03:58:50 -04:00
.s-why
:marked
2016-05-01 02:11:33 -04:00
**Why?** Prevents name collisions.
2016-04-25 12:24:13 -04:00
2016-05-01 02:11:33 -04:00
.s-why.s-why-last
2016-04-28 03:58:50 -04:00
:marked
2016-05-01 02:11:33 -04:00
**Why?** Our Directives are easily identified.
2016-04-25 12:24:13 -04:00
2016-05-01 02:11:33 -04:00
+makeExample('style-guide/ts/02-08/app/shared/validate.directive.avoid.ts', 'example', 'app/shared/validate.directive.ts')(avoid=1)
2016-04-26 01:42:22 -04:00
:marked
2016-04-25 12:24:13 -04:00
2016-04-28 03:58:50 -04:00
+makeExample('style-guide/ts/02-08/app/shared/validate.directive.ts', 'example', 'app/shared/validate.directive.ts')
2016-04-26 01:42:22 -04:00
:marked
2016-04-25 12:24:13 -04:00
2016-04-26 01:42:22 -04:00
a(href="#toc") Back to top
2016-04-25 12:24:13 -04:00
2016-04-26 01:42:22 -04:00
.l-main-section
2016-04-13 17:39:12 -04:00
:marked
### Pipe Names
2016-04-25 12:24:13 -04:00
<a id="02-09"></a>
#### Style 02-09
2016-04-13 17:39:12 -04:00
2016-04-28 03:58:50 -04:00
.s-rule.do
:marked
**Do** use consistent names for all pipes, named after their feature.
2016-04-13 17:39:12 -04:00
2016-05-01 02:11:33 -04:00
.s-why.s-why-last
2016-04-28 03:58:50 -04:00
:marked
**Why?** Provides a consistent way to quickly identify and reference pipes.
2016-04-13 17:39:12 -04:00
2016-05-01 02:11:33 -04:00
- var top="vertical-align:top"
table(width="100%")
col(width="50%")
col(width="50%")
tr
th Symbol Name
th File Name
tr(style=top)
td
code-example.
@Pipe({ name: 'ellipsis' })
export class EllipsisPipe implements PipeTransform { }
td
:marked
ellipsis.pipe.ts
tr(style=top)
td
code-example.
@Pipe({ name: 'initCaps' })
export class InitCapsPipe implements PipeTransform { }
td
:marked
init-caps.pipe.ts
2016-04-28 03:58:50 -04:00
:marked
2016-04-13 17:39:12 -04:00
2016-04-26 01:42:22 -04:00
a(href="#toc") Back to top
2016-04-25 12:24:13 -04:00
2016-04-26 01:42:22 -04:00
.l-main-section
2016-04-13 17:39:12 -04:00
:marked
2016-04-25 12:24:13 -04:00
### Unit Test File Names
<a id="02-10"></a>
#### Style 02-10
2016-04-13 17:39:12 -04:00
2016-04-28 03:58:50 -04:00
.s-rule.do
:marked
2016-05-01 02:11:33 -04:00
**Do** name test specification files the same as the component they test.
2016-04-28 03:58:50 -04:00
.s-rule.do
:marked
**Do** name test specification files with a suffix of `.spec`.
2016-04-13 17:39:12 -04:00
2016-04-28 03:58:50 -04:00
.s-why
:marked
2016-04-25 12:24:13 -04:00
**Why?** Provides a consistent way to quickly identify tests.
2016-04-13 17:39:12 -04:00
2016-05-01 02:11:33 -04:00
.s-why.s-why-last
2016-04-28 03:58:50 -04:00
:marked
2016-04-13 17:39:12 -04:00
**Why?** Provides pattern matching for [karma](http://karma-runner.github.io/) or other test runners.
2016-04-28 03:58:50 -04:00
:marked
2016-05-01 02:11:33 -04:00
- var top="vertical-align:top"
table(width="100%")
col(width="50%")
col(width="50%")
tr
th Symbol Name
th File Name
tr(style=top)
td
:marked
Components
td
:marked
heroes.component.spec.ts
:marked
hero-list.component.spec.ts
:marked
hero-detail.component.spec.ts
tr(style=top)
td
:marked
Services
td
:marked
logger.service.spec.ts
:marked
hero.service.spec.ts
:marked
filter-text.service.spec.ts
tr(style=top)
td
:marked
Pipes
td
:marked
ellipsis.pipe.spec.ts
:marked
init-caps.pipe.spec.ts
:marked
2016-04-13 17:39:12 -04:00
2016-04-26 01:42:22 -04:00
a(href="#toc") Back to top
2016-04-25 12:24:13 -04:00
2016-04-26 01:42:22 -04:00
.l-main-section
2016-04-25 12:24:13 -04:00
:marked
2016-04-28 03:58:50 -04:00
### End to End Test File Names
<a id="02-11"></a>
#### Style 02-11
.s-rule.do
:marked
**Do** name end-to-end test specification files after the feature they test with a suffix of `.e2e-spec`.
.s-why
:marked
**Why?** Provides a consistent way to quickly identify end-to-end tests.
2016-05-01 02:11:33 -04:00
.s-why.s-why-last
2016-04-28 03:58:50 -04:00
:marked
**Why?** Provides pattern matching for test runners and build automation.
:marked
2016-05-01 02:11:33 -04:00
:marked
- var top="vertical-align:top"
table(width="100%")
col(width="50%")
col(width="50%")
tr
th Symbol Name
th File Name
tr(style=top)
td
:marked
End to End Tests
td
:marked
app.e2e-spec.ts
:marked
heroes.e2e-spec.ts
:marked
2016-04-28 03:58:50 -04:00
a(href="#toc") Back to top
.l-main-section
:marked
2016-05-01 02:11:33 -04:00
## Coding Conventions
2016-04-28 03:58:50 -04:00
Have consistent set of coding, naming, and whitespace conventions.
.l-main-section
:marked
### Classes
<a id="03-01"></a>
#### Style 03-01
.s-rule.do
:marked
**Do** use upper camel case when naming classes.
.s-why
:marked
**Why?** Follows conventional thinking for class names.
2016-05-01 02:11:33 -04:00
.s-why.s-why-last
2016-04-28 03:58:50 -04:00
:marked
2016-05-01 02:11:33 -04:00
**Why?** Classes can be instantiated and construct an instance. We often use upper camel case to indicate a constructable asset.
2016-04-28 03:58:50 -04:00
+makeExample('style-guide/ts/03-01/app/shared/exception.service.avoid.ts', 'example', 'app/shared/exception.service.ts')(avoid=1)
:marked
+makeExample('style-guide/ts/03-01/app/shared/exception.service.ts', 'example', 'app/shared/exception.service.ts')
:marked
a(href="#toc") Back to top
.l-main-section
:marked
### Constants
<a id="03-02"></a>
#### Style 03-02
.s-rule.do
:marked
**Do** use uppercase with underscores when naming constants.
.s-why
:marked
**Why?** Follows conventional thinking for constants.
2016-05-01 02:11:33 -04:00
.s-why.s-why-last
2016-04-28 03:58:50 -04:00
:marked
**Why?** Constants can easily be identified.
+makeExample('style-guide/ts/03-02/app/shared/data.service.avoid.ts', 'example', 'app/shared/data.service.ts')(avoid=1)
:marked
+makeExample('style-guide/ts/03-02/app/shared/data.service.ts', 'example', 'app/shared/data.service.ts')
:marked
a(href="#toc") Back to top
.l-main-section
:marked
### Interfaces
<a id="03-03"></a>
#### Style 03-03
.s-rule.do
:marked
**Do** name an interface using upper camel case.
.s-rule.do
:marked
**Consider** naming an interface without an `I` prefix.
2016-05-01 02:11:33 -04:00
.s-why.s-why-last
2016-04-28 03:58:50 -04:00
:marked
**Why?** When we use types, we can often simply use the class as the type.
+makeExample('style-guide/ts/03-03/app/shared/hero-collector.service.avoid.ts', 'example', 'app/shared/hero-collector.service.ts')(avoid=1)
:marked
+makeExample('style-guide/ts/03-03/app/shared/hero-collector.service.ts', 'example', 'app/shared/hero-collector.service.ts')
:marked
a(href="#toc") Back to top
.l-main-section
:marked
### Properties and Methods
<a id="03-04"></a>
#### Style 03-04
.s-rule.do
:marked
**Do** use lower camel case to name properties and methods.
.s-rule.avoid
:marked
**Avoid** prefixing private properties and methods with an underscore.
.s-why
:marked
**Why?** Follows conventional thinking for properties and methods.
.s-why
:marked
**Why?** JavaScript lacks a true private property or method.
2016-05-01 02:11:33 -04:00
.s-why.s-why-last
2016-04-28 03:58:50 -04:00
:marked
**Why?** TypeScript tooling makes it easy to identify private vs public properties and methods.
+makeExample('style-guide/ts/03-04/app/shared/toast/toast.service.avoid.ts', 'example', 'app/shared/toast/toast.service.ts')(avoid=1)
:marked
+makeExample('style-guide/ts/03-04/app/shared/toast/toast.service.ts', 'example', 'app/shared/toast/toast.service.ts')
:marked
a(href="#toc") Back to top
.l-main-section
:marked
### Import Destructuring Spacing
<a id="03-05"></a>
#### Style 03-05
.s-rule.do
:marked
**Do** leave one whitespace character inside of the `import` statements' curly braces when destructuring.
2016-05-01 02:11:33 -04:00
.s-why.s-why-last
2016-04-28 03:58:50 -04:00
:marked
**Why?** Whitespace makes it easier to read the imports.
+makeExample('style-guide/ts/03-05/app/+heroes/shared/hero.service.avoid.ts', 'example', 'app/+heroes/shared/hero.service.ts')(avoid=1)
:marked
+makeExample('style-guide/ts/03-05/app/+heroes/shared/hero.service.ts', 'example', 'app/+heroes/shared/hero.service.ts')
:marked
a(href="#toc") Back to top
.l-main-section
:marked
### Import Line Spacing
<a id="03-06"></a>
#### Style 03-06
.s-rule.do
:marked
**Do** leave one empty line between third party imports and imports of code we created.
.s-rule.do
:marked
**Do** list import lines alphabetized by the module.
.s-rule.do
:marked
**Do** list destructured imported assets alphabetized.
.s-why
:marked
**Why?** The empty line makes it easy to read and locate imports.
2016-05-01 02:11:33 -04:00
.s-why.s-why-last
2016-04-28 03:58:50 -04:00
:marked
**Why?** Alphabetizing makes it easier to read and locate imports.
+makeExample('style-guide/ts/03-06/app/+heroes/shared/hero.service.avoid.ts', 'example', 'app/+heroes/shared/hero.service.ts')(avoid=1)
:marked
+makeExample('style-guide/ts/03-06/app/+heroes/shared/hero.service.ts', 'example', 'app/+heroes/shared/hero.service.ts')
:marked
a(href="#toc") Back to top
.l-main-section
:marked
## Application Structure
Have a near term view of implementation and a long term vision. Start small but keep in mind on where the app is heading down the road.
All of the app's code goes in a root folder named `app`. All content is 1 feature per file. Each component, service, pipe is in its own file. All 3rd party vendor scripts are stored in another root folder and not in the `app` folder. We didn't write them and we don't want them cluttering our app. Use the naming conventions for file in this guide.
a(href="#toc") Back to top
.l-main-section
:marked
### LIFT
<a id="04-01"></a>
#### Style 04-01
.s-rule.do
:marked
**Do** structure the app such that we can `L`ocate our code quickly, `I`dentify the code at a glance, keep the `F`lattest structure we can, and `T`ry to stay DRY.
.s-rule.do
:marked
**Do** define the structure to follow these four basic guidelines, listed in order of importance.
2016-05-01 02:11:33 -04:00
.s-why.s-why-last
2016-04-28 03:58:50 -04:00
:marked
**Why?** LIFT Provides a consistent structure that scales well, is modular, and makes it easier to increase developer efficiency by finding code quickly. Another way to check our app structure is to ask ourselves: How quickly can we open and work in all of the related files for a feature?
a(href="#toc") Back to top
.l-main-section
:marked
### Locate
<a id="04-02"></a>
#### Style 04-02
.s-rule.do
:marked
**Do** make locating our code intuitive, simple and fast.
2016-05-01 02:11:33 -04:00
.s-why.s-why-last
2016-04-28 03:58:50 -04:00
:marked
2016-05-01 02:11:33 -04:00
**Why?** We find this to be super important for a project. If we cannot find the files we need to work on quickly, we will not be able to work as efficiently as possible, and the structure needs to change. We may not know the file name or where its related files are, so putting them in the most intuitive locations and near each other saves a ton of time. A descriptive folder structure can help with this.
2016-04-28 03:58:50 -04:00
a(href="#toc") Back to top
.l-main-section
:marked
### Identify
<a id="04-03"></a>
#### Style 04-03
.s-rule.do
:marked
**Do** name the file such that we instantly know what it contains and represents.
.s-rule.do
:marked
**Do** be descriptive with file names and keeping the contents of the file to exactly one component.
.s-rule.avoid
:marked
**Avoid** files with multiple components, multiple services, or a mixture.
2016-05-01 02:11:33 -04:00
.s-why.s-why-last
2016-04-28 03:58:50 -04:00
:marked
**Why?** We spend less time hunting and pecking for code, and become more efficient. If this means we want longer file names, then so be it.
.l-sub-section
:marked
There are deviations of the 1 per file rule when we have a set of very small features that are all related to each other, as they are still easily identifiable.
a(href="#toc") Back to top
.l-main-section
:marked
### Flat
<a id="04-04"></a>
#### Style 04-04
.s-rule.do
:marked
**Do** keep a flat folder structure as long as possible.
.s-rule.consider
:marked
**Consider** creating fodlers when we get to seven or more files.
2016-05-01 02:11:33 -04:00
.s-why.s-why-last
2016-04-28 03:58:50 -04:00
:marked
**Why?** Nobody wants to search 7 levels of folders to find a file. In a folder structure there is no hard and fast number rule, but when a folder has 7-10 files, that may be time to create subfolders. We base it on our comfort level. Use a flatter structure until there is an obvious value (to help the rest of LIFT) in creating a new folder.
a(href="#toc") Back to top
.l-main-section
:marked
### T-DRY (Try to Stick to DRY)
<a id="04-05"></a>
#### Style 04-05
.s-rule.do
:marked
**Do** be DRY
.s-rule.avoid
:marked
**Avoid** being so DRY that we sacrifice readability.
2016-05-01 02:11:33 -04:00
.s-why.s-why-last
2016-04-28 03:58:50 -04:00
:marked
**Why?** Being DRY is important, but not crucial if it sacrifices the others in LIFT, which is why we call it T-DRY. We don’ t want to type `hero-view.component.html` for a view because, well, it’ s obviously a view. If it is not obvious or by convention, then we name it.
a(href="#toc") Back to top
.l-main-section
:marked
### Overall Structural Guidelines
<a id="04-06"></a>
#### Style 04-06
2016-04-25 12:24:13 -04:00
2016-04-28 03:58:50 -04:00
.s-rule.do
:marked
**Do** start small but keep in mind where the app is heading down the road.
2016-04-25 12:24:13 -04:00
2016-04-28 03:58:50 -04:00
.s-rule.do
:marked
**Do** have a near term view of implementation and a long term vision.
2016-04-25 12:24:13 -04:00
2016-04-28 03:58:50 -04:00
.s-rule.do
:marked
**Do** put all of the app's code in a root folder named `app`.
2016-04-25 12:24:13 -04:00
2016-04-28 03:58:50 -04:00
.s-rule.consider
:marked
**Consider** creating a folder for each component including its `.ts`, `.html`, `.css` and `.spec` file.
.s-why
:marked
**Why?** Helps keep the app small and easy to maintain in the early stages, while being easy to evolve as the app grows.
2016-05-01 02:11:33 -04:00
.s-why.s-why-last
2016-04-28 03:58:50 -04:00
:marked
**Why?** Components often have four files (e.g. `*.html`, `*.css`, `*.ts`, and `*.spec.ts`) and can clutter a folder quickly.
2016-05-01 02:11:33 -04:00
.example-title Overall Folder and File Structure
2016-04-28 03:58:50 -04:00
.filetree
.file src
.children
.file app
.children
.file +heroes
.children
.file hero
.children
.file hero.component.ts|html|css|spec.ts
.file index.ts
.file hero-list
.children
.file hero-list.component.ts|html|css|spec.ts
.file index.ts
.file shared
.children
.file hero.model.ts
.file hero.service.ts|spec.ts
.file index.ts
.file heroes.component.ts|html|css|spec.ts
.file index.ts
.file shared
.children
.file ...
.file app.component.ts|html|css|spec.ts
.file main.ts
.file index.html
.file ...
:marked
.l-sub-section
:marked
While we prefer our Components to be in their own dedicated folder, another option for small apps is to keep Components flat (not in a dedicated folder). This adds up to four files to the existing folder, but also reduces the folder nesting. Be consistent.
2016-04-25 12:24:13 -04:00
2016-04-26 01:42:22 -04:00
a(href="#toc") Back to top
2016-04-25 12:24:13 -04:00
2016-04-26 01:42:22 -04:00
.l-main-section
2016-04-13 17:39:12 -04:00
:marked
2016-04-28 03:58:50 -04:00
### Shared Folder
<a id="04-07"></a>
#### Style 04-07
2016-04-13 17:39:12 -04:00
2016-04-28 03:58:50 -04:00
.s-rule.do
:marked
**Do** put all shared files within a component feature in a `shared` folder.
2016-04-25 12:24:13 -04:00
2016-04-28 03:58:50 -04:00
.s-rule.consider
:marked
**Consider** creating a folder for each component including its `.ts`, `.html`, `.css` and `.spec` file.
2016-04-13 17:39:12 -04:00
2016-04-28 03:58:50 -04:00
.s-why
:marked
**Why?** Separates shared files from the components within a feature.
2016-04-25 12:24:13 -04:00
2016-05-01 02:11:33 -04:00
.s-why.s-why-last
2016-04-28 03:58:50 -04:00
:marked
**Why?** Makes it easier to locate shared files within a component feature.
2016-05-01 02:11:33 -04:00
.example-title Shared Folder
2016-04-28 03:58:50 -04:00
.filetree
.file src
.children
.file app
.children
.file +heroes
.children
.file hero
.children
.file ...
.file hero-list
.children
.file ...
.file shared
.children
.file hero-button
.children
.file ...
.file hero.model.ts
.file hero.service.ts|spec.ts
.file index.ts
.file heroes.component.ts|html|css|spec.ts
.file index.ts
.file shared
.children
.file exception.service.ts|spec.ts
.file index.ts
.file nav
.children
.file ...
.file app.component.ts|html|css|spec.ts
.file main.ts
.file index.html
.file ...
2016-04-13 17:39:12 -04:00
:marked
2016-04-25 12:24:13 -04:00
2016-04-26 01:42:22 -04:00
a(href="#toc") Back to top
2016-04-25 12:24:13 -04:00
2016-04-26 01:42:22 -04:00
.l-main-section
2016-04-13 17:39:12 -04:00
:marked
2016-04-28 03:58:50 -04:00
### Folders-by-Feature Structure
<a id="04-08"></a>
#### Style 04-08
.s-rule.do
:marked
**Do** create folders named for the feature they represent.
.s-why
:marked
2016-05-01 02:11:33 -04:00
**Why?** A developer can locate the code, identify what each file represents at a glance, the structure is as flat as it can be, and there is no repetitive nor redundant names.
2016-04-13 17:39:12 -04:00
2016-04-28 03:58:50 -04:00
.s-why
:marked
**Why?** The LIFT guidelines are all covered.
2016-04-13 17:39:12 -04:00
2016-04-28 03:58:50 -04:00
.s-why
:marked
**Why?** Helps reduce the app from becoming cluttered through organizing the content and keeping them aligned with the LIFT guidelines.
2016-04-13 17:39:12 -04:00
2016-05-01 02:11:33 -04:00
.s-why.s-why-last
2016-04-28 03:58:50 -04:00
:marked
**Why?** When there are a lot of files (e.g. 10+) locating them is easier with a consistent folder structures and more difficult in flat structures.
2016-04-25 12:24:13 -04:00
2016-04-13 17:39:12 -04:00
:marked
2016-04-28 03:58:50 -04:00
Below is an example of a small app with folders per component.
2016-04-13 17:39:12 -04:00
2016-05-01 02:11:33 -04:00
.example-title Folders per Component
2016-04-28 03:58:50 -04:00
.filetree
.file src
.children
.file app
.children
.file +heroes
.children
.file hero
.children
.file ...
.file hero-list
.children
.file ...
.file shared
.children
.file ...
.file heroes.component.ts|html|css|spec.ts
.file index.ts
.file +villains
.children
.file villain
.children
.file ...
.file villain-list
.children
.file ...
.file shared
.children
.file ...
.file villains.component.ts|html|css|spec.ts
.file index.ts
.file shared
.children
.file nav
.children
.file ...
.file ...
.file app.component.ts|html|css|spec.ts
.file main.ts
.file index.html
.file ...
:marked
2016-04-13 17:39:12 -04:00
2016-04-26 01:42:22 -04:00
a(href="#toc") Back to top
2016-04-25 12:24:13 -04:00
2016-04-26 01:42:22 -04:00
.l-main-section
2016-04-13 17:39:12 -04:00
:marked
2016-04-28 03:58:50 -04:00
### Layout Components
<a id="04-09"></a>
#### Style 04-09
.s-rule.do
:marked
**Do** put components that define the overall layout in a `shared` folder.
.s-rule.do
:marked
**Do** put shared layout components in their own folder, under the `shared` folder.
2016-04-13 17:39:12 -04:00
2016-04-28 03:58:50 -04:00
.s-why
:marked
**Why?** We need a place to host our layout for our app. Our navigation bar, footer, and other aspects of the app that are needed for the entire app.
2016-04-13 17:39:12 -04:00
2016-05-01 02:11:33 -04:00
.s-why.s-why-last
2016-04-28 03:58:50 -04:00
:marked
**Why?** Organizes all layout in a consistent place re-used throughout the application.
2016-05-01 02:11:33 -04:00
.example-title Folder for Layout Components
2016-04-28 03:58:50 -04:00
.filetree
.file src
.children
.file app
.children
.file +heroes
.children
.file ...
.file shared
.children
.file nav
.children
.file index.ts
.file nav.component.ts|html|css|spec.ts
.file footer
.children
.file index.ts
.file footer.component.ts|html|css|spec.ts
.file index.ts
.file ...
.file app.component.ts|html|css|spec.ts
.file main.ts
.file index.html
.file ...
:marked
2016-04-13 17:39:12 -04:00
2016-04-26 01:42:22 -04:00
a(href="#toc") Back to top
2016-04-25 12:24:13 -04:00
2016-04-26 01:42:22 -04:00
.l-main-section
2016-04-13 17:39:12 -04:00
:marked
2016-04-28 03:58:50 -04:00
### Create and Import Barrels
<a id="04-10"></a>
#### Style 04-10
2016-04-13 17:39:12 -04:00
2016-04-28 03:58:50 -04:00
.s-rule.do
:marked
**Do** create a file that imports, aggregates, and re-exports items. We call this technique a **barrel**.
.s-rule.do
:marked
2016-05-01 02:11:33 -04:00
**Do** name this barrel file `index.ts`.
2016-04-28 03:58:50 -04:00
.s-why
:marked
**Why?** A barrel aggregates many imports into a single import.
.s-why
:marked
**Why?** A barrel reduces the number of imports a file may need.
2016-05-01 02:11:33 -04:00
.s-why.s-why-last
2016-04-28 03:58:50 -04:00
:marked
**Why?** A barrel shortens import statements.
2016-04-13 17:39:12 -04:00
2016-04-28 03:58:50 -04:00
+makeTabs(
`style-guide/ts/04-10/app/shared/index.ts,
style-guide/ts/04-10/app/shared/filter-text/index.ts,
style-guide/ts/04-10/app/shared/modal/index.ts,
style-guide/ts/04-10/app/shared/nav/index.ts,
style-guide/ts/04-10/app/shared/spinner/index.ts,
style-guide/ts/04-10/app/shared/toast/index.ts`,
`example,,,,,`,
2016-05-01 02:11:33 -04:00
`app/shared/index.ts,
app/shared/filter-text/index.ts,
app/shared/modal/index.ts,
app/shared/nav/index.ts,
app/shared/spinner/index.ts,
app/shared/toast/index.ts`)
2016-04-28 03:58:50 -04:00
:marked
2016-05-01 02:11:33 -04:00
.example-title Folder Barrels
2016-04-28 03:58:50 -04:00
.filetree
.file src
.children
.file app
.children
.file +dashboard
.children
.file ...
.file index.ts
.file +heroes
.children
.file ...
.file index.ts
.file shared
.children
.file nav
.children
.file ...
.file index.ts
.file search
.children
.file ...
.file index.ts
.file ...
.file index.ts
.file app.component.ts|html|css|spec.ts
.file main.ts
.file index.html
.file ...
:marked
+makeExample('style-guide/ts/04-10/app/+heroes/heroes.component.avoid.ts', 'example', 'app/+heroes/heroes.component.ts')(avoid=1)
:marked
+makeExample('style-guide/ts/04-10/app/+heroes/heroes.component.ts', 'example', 'app/+heroes/heroes.component.ts')
:marked
2016-04-13 17:39:12 -04:00
2016-04-26 01:42:22 -04:00
a(href="#toc") Back to top
2016-04-25 12:24:13 -04:00
2016-04-26 01:42:22 -04:00
.l-main-section
2016-04-13 17:39:12 -04:00
:marked
2016-04-28 03:58:50 -04:00
### Lazy Loaded Folders
<a id="04-11"></a>
#### Style 04-11
A distinct application feature or workflow may be *lazy loaded* or *loaded on demand* rather than when the application starts.
2016-04-13 17:39:12 -04:00
2016-04-28 03:58:50 -04:00
.s-rule.do
:marked
**Do** put the contents of lazy loaded features in a *lazy loaded folder*.
A typical *lazy loaded folder* contains a *routing component*, its child components, and their related assets and modules.
2016-04-13 17:39:12 -04:00
2016-05-01 02:11:33 -04:00
.s-why.s-why-last
2016-04-28 03:58:50 -04:00
:marked
**Why?** The folder makes it easy to identify and isolate the feature content.
2016-04-13 17:39:12 -04:00
2016-04-26 01:42:22 -04:00
a(href="#toc") Back to top
2016-04-13 17:39:12 -04:00
2016-04-26 01:42:22 -04:00
.l-main-section
:marked
2016-04-28 03:58:50 -04:00
### Prefix Lazy Loaded Folders with +
<a id="04-12"></a>
#### Style 04-12
.s-rule.do
:marked
**Do** prefix the name of a *lazy loaded folder* with a (+) e.g., `+dashboard/`.
2016-04-26 01:42:22 -04:00
2016-04-28 03:58:50 -04:00
.s-why
:marked
**Why?** Lazy loaded code paths are easily identifiable by their `+` prefix.
2016-04-26 01:42:22 -04:00
2016-04-28 03:58:50 -04:00
.s-why
:marked
**Why?** Lazy loaded code paths are easily distinguishable from non lazy loaded paths.
2016-04-26 01:42:22 -04:00
2016-05-01 02:11:33 -04:00
.s-why.s-why-last
2016-04-28 03:58:50 -04:00
:marked
**Why?** If we see an `import` path that contains a `+`, we can quickly refactor to use lazy loading.
2016-05-01 02:11:33 -04:00
.example-title Lazy Loaded Folders
2016-04-28 03:58:50 -04:00
.filetree
.file src
.children
.file app
.children
.file +dashboard
.children
.file dashboard.component.ts|html|css|spec.ts
.file index.ts
:marked
2016-04-26 01:42:22 -04:00
a(href="#toc") Back to top
.l-main-section
:marked
2016-04-28 03:58:50 -04:00
### Never Directly Import Lazy Loaded Folders
<a id="04-13"></a>
#### Style 04-13
.s-rule.avoid
:marked
**Avoid** allowing modules in sibling and parent folders to directly import a module in a *lazy loaded feature*.
2016-04-26 01:42:22 -04:00
2016-05-01 02:11:33 -04:00
.s-why.s-why-last
2016-04-28 03:58:50 -04:00
:marked
**Why?** Directly importing a module loads it immediately when our intention is to load it on demand.
2016-04-26 01:42:22 -04:00
2016-04-28 03:58:50 -04:00
+makeExample('style-guide/ts/04-13/app/app.component.avoid.ts', 'example', 'app/app.component.ts')(avoid=1)
:marked
2016-04-26 01:42:22 -04:00
a(href="#toc") Back to top
.l-main-section
2016-04-13 17:39:12 -04:00
:marked
2016-04-28 03:58:50 -04:00
### Lazy Loaded Folders May Import From a Parent
<a id="04-14"></a>
#### Style 04-14
2016-04-13 17:39:12 -04:00
2016-04-28 03:58:50 -04:00
.s-rule.do
:marked
**Do** allow lazy loaded modules to import a module from a parent folder.
2016-04-13 17:39:12 -04:00
2016-05-01 02:11:33 -04:00
.s-why.s-why-last
2016-04-28 03:58:50 -04:00
:marked
**Why?** A parent module has already been loaded by the time the lazy loaded module imports it.
2016-04-13 17:39:12 -04:00
2016-04-28 03:58:50 -04:00
+makeExample('style-guide/ts/04-14/app/heroes/heroes.component.ts', 'example', 'app/heroes/heroes.component.ts')
:marked
2016-04-13 17:39:12 -04:00
2016-04-28 03:58:50 -04:00
a(href="#toc") Back to top
2016-04-13 17:39:12 -04:00
2016-04-28 03:58:50 -04:00
.l-main-section
:marked
### Use Component Router to Lazy Load
<a id="04-15"></a>
#### Style 04-15
2016-04-25 12:24:13 -04:00
2016-04-28 03:58:50 -04:00
.s-rule.do
:marked
**Do** use the Component Router to lazy load routable features.
2016-04-25 12:24:13 -04:00
2016-05-01 02:11:33 -04:00
.s-why.s-why-last
2016-04-28 03:58:50 -04:00
:marked
**Why?** That's the easiest way to load a module on demand.
2016-04-13 17:39:12 -04:00
2016-04-26 01:42:22 -04:00
a(href="#toc") Back to top
2016-04-25 12:24:13 -04:00
2016-04-26 01:42:22 -04:00
.l-main-section
2016-04-13 17:39:12 -04:00
:marked
## Components
### Components Selector Naming
<a id="05-02"></a>
#### Style 05-02
2016-04-28 03:58:50 -04:00
.s-rule.do
:marked
**Do** use `kebab-case` for naming the element selectors of our components.
2016-04-13 17:39:12 -04:00
2016-05-01 02:11:33 -04:00
.s-why.s-why-last
2016-04-28 03:58:50 -04:00
:marked
**Why?** Keeps the element names consistent with the specification for [Custom Elements](https://www.w3.org/TR/custom-elements/).
2016-04-25 12:24:13 -04:00
2016-05-01 02:11:33 -04:00
+makeExample('style-guide/ts/05-02/app/heroes/shared/hero-button/hero-button.component.avoid.ts', 'example', 'app/heroes/shared/hero-button/hero-button.component.ts')(avoid=1)
2016-04-26 01:42:22 -04:00
:marked
2016-04-13 17:39:12 -04:00
2016-04-26 01:42:22 -04:00
+makeTabs(
2016-04-28 03:58:50 -04:00
`style-guide/ts/05-02/app/heroes/shared/hero-button/hero-button.component.ts,
2016-04-26 01:42:22 -04:00
style-guide/ts/05-02/app/app.component.html`,
'example,',
2016-04-28 03:58:50 -04:00
`app/heroes/shared/hero-button/hero-button.component.ts,
2016-04-26 01:42:22 -04:00
app/app.component.html`)
:marked
2016-04-13 17:39:12 -04:00
2016-04-26 01:42:22 -04:00
a(href="#toc") Back to top
2016-04-25 12:24:13 -04:00
2016-04-26 01:42:22 -04:00
.l-main-section
2016-04-13 17:39:12 -04:00
:marked
### Components as Elements
<a id="05-03"></a>
#### Style 05-03
2016-04-28 03:58:50 -04:00
.s-rule.do
:marked
**Do** define Components as elements via the selector.
.s-why
:marked
**Why?** Components have templates containing HTML and optional Angular template syntax. They are most associated with putting content on a page, and thus are more closely aligned with elements.
2016-04-13 17:39:12 -04:00
2016-04-28 03:58:50 -04:00
.s-why
:marked
**Why?** Components are derived from Directives, and thus their selectors can be elements, attributes, or other selectors. Defining the selector as an element provides consistency for components that represent content with a template.
2016-04-13 17:39:12 -04:00
2016-05-01 02:11:33 -04:00
.s-why.s-why-last
2016-04-28 03:58:50 -04:00
:marked
**Why?** It is easier to recognize that a symbol is a component vs a directive by looking at the template's html.
2016-04-13 17:39:12 -04:00
2016-05-01 02:11:33 -04:00
+makeExample('style-guide/ts/05-03/app/heroes/shared/hero-button/hero-button.component.avoid.ts', 'example', 'app/heroes/hero-button/hero-button.component.ts')(avoid=1)
2016-04-26 01:42:22 -04:00
:marked
2016-04-25 12:24:13 -04:00
2016-04-28 03:58:50 -04:00
+makeExample('style-guide/ts/05-03/app/heroes/shared/hero-button/hero-button.component.avoid.html', '', 'app/heroes/hero-button/hero-button.component.html')(avoid=1)
2016-04-26 01:42:22 -04:00
:marked
2016-04-13 17:39:12 -04:00
2016-04-26 01:42:22 -04:00
+makeTabs(
2016-04-28 03:58:50 -04:00
`style-guide/ts/05-03/app/heroes/shared/hero-button/hero-button.component.ts,
2016-04-26 01:42:22 -04:00
style-guide/ts/05-03/app/app.component.html`,
'example,',
2016-04-28 03:58:50 -04:00
`app/heroes/shared/hero-button/hero-button.component.ts,
2016-04-26 01:42:22 -04:00
app/app.component.html`)
:marked
2016-04-13 17:39:12 -04:00
2016-04-26 01:42:22 -04:00
a(href="#toc") Back to top
2016-04-25 12:24:13 -04:00
2016-04-26 01:42:22 -04:00
.l-main-section
2016-04-13 17:39:12 -04:00
:marked
### Extract Template and Styles to Their Own Files
<a id="05-04"></a>
#### Style 05-04
2016-04-28 03:58:50 -04:00
.s-rule.do
:marked
**Do** extract templates and styles into a separate file, when more than 3 lines.
2016-04-13 17:39:12 -04:00
2016-04-28 03:58:50 -04:00
.s-rule.do
:marked
**Do** name the template file `[component-name].component.html`, where [component-name] is our component name.
2016-04-25 12:24:13 -04:00
2016-04-28 03:58:50 -04:00
.s-rule.do
:marked
**Do** name the style file `[component-name].component.css`, where [component-name] is our component name.
2016-04-13 17:39:12 -04:00
2016-04-28 03:58:50 -04:00
.s-why
:marked
**Why?** Syntax hints for inline templates in (*.js and *.ts) code files are not supported by some editors.
2016-04-25 12:24:13 -04:00
2016-05-01 02:11:33 -04:00
.s-why.s-why-last
2016-04-28 03:58:50 -04:00
:marked
**Why?** A component file's logic is easier to read when not mixed with inline template and styles.
2016-04-13 17:39:12 -04:00
2016-05-01 02:11:33 -04:00
+makeExample('style-guide/ts/05-04/app/heroes/heroes.component.avoid.ts', 'example', 'app/heroes/heroes.component.ts')(avoid=1)
2016-04-26 01:42:22 -04:00
:marked
2016-04-13 17:39:12 -04:00
2016-04-26 01:42:22 -04:00
+makeTabs(
`style-guide/ts/05-04/app/heroes/heroes.component.ts,
style-guide/ts/05-04/app/heroes/heroes.component.html,
style-guide/ts/05-04/app/heroes/heroes.component.css`,
'example,,',
`app/heroes/heroes.component.ts,
app/heroes/heroes.component.html,
app/heroes/heroes.component.css`)
:marked
2016-04-25 12:24:13 -04:00
2016-04-26 01:42:22 -04:00
a(href="#toc") Back to top
2016-04-25 12:24:13 -04:00
2016-04-26 01:42:22 -04:00
.l-main-section
2016-04-13 17:39:12 -04:00
:marked
### Decorate Input and Output Properties Inline
<a id="05-12"></a>
#### Style 05-12
2016-04-28 03:58:50 -04:00
.s-rule.do
:marked
**Do** use [`@Input`](https://angular.io/docs/ts/latest/api/core/Input-var.html) and [`@Output`](https://angular.io/docs/ts/latest/api/core/Output-var.html) instead of the `inputs` and `outputs` properties of the [`@Directive`](https://angular.io/docs/ts/latest/api/core/Directive-decorator.html) and [`@Component`](https://angular.io/docs/ts/latest/api/core/Component-decorator.html) decorators:
2016-04-25 12:24:13 -04:00
2016-04-28 03:58:50 -04:00
.s-rule.do
:marked
**Do** place the `@Input()` or `@Output()` on the same line as the property they decorate.
2016-04-13 17:39:12 -04:00
2016-04-28 03:58:50 -04:00
.s-why
:marked
2016-05-01 02:11:33 -04:00
**Why?** It is easier and more readable to identify which properties in a class are inputs or outputs.
2016-04-25 12:24:13 -04:00
2016-04-28 03:58:50 -04:00
.s-why
:marked
**Why?** If we ever need to rename the name of the property, or event name associated to [`@Input`](https://angular.io/docs/ts/latest/api/core/Input-var.html) or respectively [`@Output`](https://angular.io/docs/ts/latest/api/core/Output-var.html) we can modify it on a single place.
2016-04-13 17:39:12 -04:00
2016-04-28 03:58:50 -04:00
.s-why
:marked
**Why?** The metadata declaration attached to the directive is shorter and thus more readable.
2016-04-13 17:39:12 -04:00
2016-05-01 02:11:33 -04:00
.s-why.s-why-last
2016-04-28 03:58:50 -04:00
:marked
**Why?** Placing the decorator on the same line makes for shorter code and still easily identifies the property as an input or output.
2016-04-25 12:24:13 -04:00
2016-05-01 02:11:33 -04:00
+makeExample('style-guide/ts/05-12/app/heroes/shared/hero-button/hero-button.component.avoid.ts', 'example', 'app/heroes/shared/hero-button/hero-button.component.ts')(avoid=1)
2016-04-26 01:42:22 -04:00
:marked
2016-04-13 17:39:12 -04:00
2016-04-28 03:58:50 -04:00
+makeExample('style-guide/ts/05-12/app/heroes/shared/hero-button/hero-button.component.ts', 'example', 'app/heroes/shared/hero-button/hero-button.component.ts')
2016-04-26 01:42:22 -04:00
:marked
2016-04-25 12:24:13 -04:00
2016-04-26 01:42:22 -04:00
a(href="#toc") Back to top
2016-04-25 12:24:13 -04:00
2016-04-26 01:42:22 -04:00
.l-main-section
2016-04-13 17:39:12 -04:00
:marked
### Avoid Renaming Inputs and Outputs
<a id="05-13"></a>
#### Style 05-13
2016-04-25 12:24:13 -04:00
2016-04-28 03:58:50 -04:00
.s-rule.avoid
:marked
**Avoid** renaming inputs and outputs, when possible.
2016-04-13 17:39:12 -04:00
2016-05-01 02:11:33 -04:00
.s-why.s-why-last
2016-04-28 03:58:50 -04:00
:marked
**Why?** May lead to confusion when the output or the input properties of a given directive are named a given way but exported differently as a public API.
2016-04-13 17:39:12 -04:00
2016-05-01 02:11:33 -04:00
+makeExample('style-guide/ts/05-13/app/heroes/shared/hero-button/hero-button.component.avoid.ts', 'example', 'app/heroes/shared/hero-button/hero-button.component.ts')(avoid=1)
2016-04-26 01:42:22 -04:00
:marked
2016-04-13 17:39:12 -04:00
2016-05-01 02:11:33 -04:00
+makeExample('style-guide/ts/05-13/app/app.component.avoid.html', '', 'app/app.component.html')(avoid=1)
2016-04-26 01:42:22 -04:00
:marked
2016-04-25 12:24:13 -04:00
2016-04-26 01:42:22 -04:00
+makeTabs(
2016-04-28 03:58:50 -04:00
`style-guide/ts/05-13/app/heroes/shared/hero-button/hero-button.component.ts,
2016-04-26 01:42:22 -04:00
style-guide/ts/05-13/app/app.component.html`,
'example,',
2016-04-28 03:58:50 -04:00
`app/heroes/shared/hero-button/hero-button.component.ts,
2016-04-26 01:42:22 -04:00
app/app.component.html`)
:marked
2016-04-25 12:24:13 -04:00
2016-04-26 01:42:22 -04:00
a(href="#toc") Back to top
2016-04-25 12:24:13 -04:00
2016-04-26 01:42:22 -04:00
.l-main-section
2016-04-13 17:39:12 -04:00
:marked
2016-04-01 20:23:34 -04:00
### Member Sequence
2016-04-13 17:39:12 -04:00
<a id="05-14"></a>
#### Style 05-14
2016-04-01 20:23:34 -04:00
2016-04-28 03:58:50 -04:00
.s-rule.do
:marked
**Do** place properties up top followed by methods.
2016-04-25 12:24:13 -04:00
2016-04-28 03:58:50 -04:00
.s-rule.do
:marked
**Do** place private members after public members, alphabetized.
2016-04-01 20:23:34 -04:00
2016-05-01 02:11:33 -04:00
.s-why.s-why-last
2016-04-28 03:58:50 -04:00
:marked
**Why?** Placing members in a consistent sequence makes it easy to read and helps we instantly identify which members of the component serve which purpose.
2016-04-01 20:23:34 -04:00
2016-05-01 02:11:33 -04:00
+makeExample('style-guide/ts/05-14/app/shared/toast/toast.component.avoid.ts', 'example', 'app/shared/toast/toast.component.ts')(avoid=1)
2016-04-26 01:42:22 -04:00
:marked
2016-04-01 20:23:34 -04:00
2016-04-28 03:58:50 -04:00
+makeExample('style-guide/ts/05-14/app/shared/toast/toast.component.ts', 'example', 'app/shared/toast/toast.component.ts')
2016-04-26 01:42:22 -04:00
:marked
2016-04-01 20:23:34 -04:00
2016-04-26 01:42:22 -04:00
a(href="#toc") Back to top
2016-04-25 12:24:13 -04:00
2016-04-26 01:42:22 -04:00
.l-main-section
2016-04-01 20:23:34 -04:00
:marked
### Defer Logic to Services
2016-04-13 17:39:12 -04:00
<a id="05-15"></a>
#### Style 05-15
2016-04-01 20:23:34 -04:00
2016-04-28 03:58:50 -04:00
.s-rule.do
:marked
**Do** defer logic in a component by delegating to services.
2016-04-01 20:23:34 -04:00
2016-04-28 03:58:50 -04:00
.s-rule.do
:marked
**Do** move reusable logic to services and keep components simple and focused on their intended purpose.
2016-04-01 20:23:34 -04:00
2016-04-28 03:58:50 -04:00
.s-why
:marked
**Why?** Logic may be reused by multiple components when placed within a service and exposed via a function.
2016-04-01 20:23:34 -04:00
2016-04-28 03:58:50 -04:00
.s-why
:marked
**Why?** Logic in a service can more easily be isolated in a unit test, while the calling logic in the component can be easily mocked.
2016-04-01 20:23:34 -04:00
2016-04-28 03:58:50 -04:00
.s-why
:marked
**Why?** Removes dependencies and hides implementation details from the component.
2016-04-01 20:23:34 -04:00
2016-05-01 02:11:33 -04:00
.s-why.s-why-last
2016-04-28 03:58:50 -04:00
:marked
**Why?** Keeps the component slim, trim, and focused.
2016-04-01 20:23:34 -04:00
2016-04-28 03:58:50 -04:00
+makeExample('style-guide/ts/05-15/app/heroes/hero-list/hero-list.component.avoid.ts', '', 'app/heroes/hero-list/hero-list.component.ts')(avoid=1)
2016-04-26 01:42:22 -04:00
:marked
2016-04-01 20:23:34 -04:00
2016-04-28 03:58:50 -04:00
+makeExample('style-guide/ts/05-15/app/heroes/hero-list/hero-list.component.ts', 'example', 'app/heroes/hero-list/hero-list.component.ts')
2016-04-26 01:42:22 -04:00
:marked
2016-04-01 20:23:34 -04:00
2016-04-26 01:42:22 -04:00
a(href="#toc") Back to top
2016-04-25 12:24:13 -04:00
2016-04-26 01:42:22 -04:00
.l-main-section
2016-04-13 17:39:12 -04:00
:marked
### Don't Prefix Output Properties
2016-04-26 01:42:22 -04:00
<a id="05-16"></a>
#### Style 05-16
2016-04-13 17:39:12 -04:00
2016-04-28 03:58:50 -04:00
.s-rule.do
:marked
**Do** name events without the prefix `on`.
2016-04-13 17:39:12 -04:00
2016-04-28 03:58:50 -04:00
.s-rule.do
:marked
**Do** name our event handler methods with the prefix `on` followed by the event name.
2016-04-13 17:39:12 -04:00
2016-04-28 03:58:50 -04:00
.s-why
:marked
**Why?** This is consistent with built-in events such as button clicks.
2016-04-13 17:39:12 -04:00
2016-05-01 02:11:33 -04:00
.s-why.s-why-last
2016-04-28 03:58:50 -04:00
:marked
**Why?** Angular allows for an [alternative syntax](https://angular.io/docs/ts/latest/guide/template-syntax.html#!#binding-syntax) `on-*`. If the event itself was prefixed with `on` this would result in an `on-onEvent` binding expression.
2016-04-25 12:24:13 -04:00
2016-05-01 02:11:33 -04:00
+makeExample('style-guide/ts/05-16/app/heroes/hero.component.avoid.ts', 'example', 'app/heroes/hero.component.ts')(avoid=1)
2016-04-26 01:42:22 -04:00
:marked
2016-04-25 12:24:13 -04:00
2016-04-28 03:58:50 -04:00
+makeExample('style-guide/ts/05-16/app/app.component.avoid.html', '', 'app/app.component.html')(avoid=1)
2016-04-26 01:42:22 -04:00
:marked
2016-04-13 17:39:12 -04:00
2016-04-26 01:42:22 -04:00
+makeTabs(
`style-guide/ts/05-16/app/heroes/hero.component.ts,
style-guide/ts/05-16/app/app.component.html`,
'example,',
`app/heroes/hero.component.ts,
app/app.component.html`)
:marked
2016-04-13 17:39:12 -04:00
2016-04-26 01:42:22 -04:00
a(href="#toc") Back to top
2016-04-25 12:24:13 -04:00
2016-04-26 01:42:22 -04:00
.l-main-section
2016-04-13 17:39:12 -04:00
:marked
### Put Presentation Logic in the Component Class
2016-04-26 01:42:22 -04:00
<a id="05-17"></a>
#### Style 05-17
2016-04-13 17:39:12 -04:00
2016-04-28 03:58:50 -04:00
.s-rule.do
:marked
**Do** put presentation logic in the Component class, and not in the template.
.s-why
:marked
**Why?** Logic will be contained in one place (the Component class) instead of being spread in two places.
2016-04-13 17:39:12 -04:00
2016-05-01 02:11:33 -04:00
.s-why.s-why-last
2016-04-28 03:58:50 -04:00
:marked
**Why?** Keeping the logic of the components in their controller, instead of template will improve testability, maintability, reusability.
2016-04-25 12:24:13 -04:00
2016-05-01 02:11:33 -04:00
+makeExample('style-guide/ts/05-17/app/heroes/hero-list/hero-list.component.avoid.ts', 'example', 'app/heroes/hero-list/hero-list.component.ts')(avoid=1)
2016-04-26 01:42:22 -04:00
:marked
2016-04-25 12:24:13 -04:00
2016-05-01 02:11:33 -04:00
+makeExample('style-guide/ts/05-17/app/heroes/hero-list/hero-list.component.ts', 'example', 'app/heroes/hero-list/hero-list.component.ts')
2016-04-26 01:42:22 -04:00
:marked
2016-04-13 17:39:12 -04:00
2016-04-26 01:42:22 -04:00
a(href="#toc") Back to top
2016-04-25 12:24:13 -04:00
2016-04-26 01:42:22 -04:00
.l-main-section
2016-04-13 17:39:12 -04:00
:marked
## Directives
2016-04-26 01:42:22 -04:00
a(href="#toc") Back to top
2016-04-13 17:39:12 -04:00
2016-04-26 01:42:22 -04:00
.l-main-section
2016-04-25 12:24:13 -04:00
:marked
### Use HostListener and HostBinding Class Decorators
2016-04-26 01:42:22 -04:00
<a id="06-03"></a>
#### Style 06-03
2016-04-13 17:39:12 -04:00
2016-04-28 03:58:50 -04:00
.s-rule.do
:marked
**Do** use @HostListener and @HostBinding instead of the host property of the @Directive and @Component decorators:
2016-04-13 17:39:12 -04:00
2016-04-28 03:58:50 -04:00
.s-why
:marked
**Why?** The name of the property, or method name associated to @HostBinding or respectively @HostListener should be modified only in a single place - in the directive's controller. In contrast if we use host we need to modify both the property declaration inside the controller, and the metadata associated to the directive.
2016-04-13 17:39:12 -04:00
2016-05-01 02:11:33 -04:00
.s-why.s-why-last
2016-04-28 03:58:50 -04:00
:marked
**Why?** The metadata declaration attached to the directive is shorter and thus more readable.
2016-04-25 12:24:13 -04:00
2016-05-01 02:11:33 -04:00
+makeExample('style-guide/ts/06-03/app/shared/validate.directive.avoid.ts', 'example', 'app/shared/validate.directive.ts')(avoid=1)
2016-04-28 03:58:50 -04:00
:marked
2016-04-01 20:23:34 -04:00
2016-04-28 03:58:50 -04:00
+makeExample('style-guide/ts/06-03/app/shared/validate.directive.ts', 'example', 'app/shared/validate.directive.ts')
:marked
2016-04-25 12:24:13 -04:00
2016-04-26 01:42:22 -04:00
a(href="#toc") Back to top
2016-04-25 12:24:13 -04:00
2016-04-26 01:42:22 -04:00
.l-main-section
2016-04-01 20:23:34 -04:00
:marked
## Services
2016-04-26 01:42:22 -04:00
### Services are Singletons in Same Injector
2016-04-25 12:24:13 -04:00
<a id="07-01"></a>
#### Style 07-01
2016-04-01 20:23:34 -04:00
2016-04-28 03:58:50 -04:00
.s-rule.do
:marked
**Do** use services as singletons within the same injector. Use them for sharing data and functionality.
2016-04-25 12:24:13 -04:00
2016-04-28 03:58:50 -04:00
.s-why
:marked
**Why?** Services are ideal for sharing methods across a feature area or an app.
2016-04-01 20:23:34 -04:00
2016-05-01 02:11:33 -04:00
.s-why.s-why-last
2016-04-28 03:58:50 -04:00
:marked
**Why?** Services are ideal for sharing stateful in-memory data.
2016-04-25 12:24:13 -04:00
2016-04-28 03:58:50 -04:00
+makeExample('style-guide/ts/07-01/app/heroes/shared/hero.service.ts', 'example', 'app/heroes/shared/hero.service.ts')
2016-04-26 01:42:22 -04:00
:marked
2016-04-25 12:24:13 -04:00
2016-04-26 01:42:22 -04:00
a(href="#toc") Back to top
2016-04-25 12:24:13 -04:00
2016-04-26 01:42:22 -04:00
.l-main-section
2016-04-25 12:24:13 -04:00
:marked
### Single Responsibility
<a id="07-02"></a>
#### Style 07-02
2016-04-28 03:58:50 -04:00
.s-rule.do
:marked
**Do** create services with a single responsibility that is encapsulated by its context.
.s-rule.do
:marked
**Do** create a new service once the service begins to exceed that singular purpose.
2016-04-25 12:24:13 -04:00
2016-04-28 03:58:50 -04:00
.s-why
:marked
**Why?** When a service has multiple responsibilities, it becomes difficult to test.
2016-04-25 12:24:13 -04:00
2016-05-01 02:11:33 -04:00
.s-why.s-why-last
2016-04-28 03:58:50 -04:00
:marked
**Why?** When a service has multiple responsibilities, every Component or Service that injects it now carries the weight of them all.
2016-04-25 12:24:13 -04:00
2016-04-26 01:42:22 -04:00
a(href="#toc") Back to top
2016-04-01 20:23:34 -04:00
2016-04-26 01:42:22 -04:00
.l-main-section
2016-04-01 20:23:34 -04:00
:marked
### Providing a Service
2016-04-25 12:24:13 -04:00
<a id="07-03"></a>
#### Style 07-03
2016-04-28 03:58:50 -04:00
.s-rule.do
:marked
**Do** provide services to the Angular 2 injector at the top-most component where they will be shared.
2016-04-01 20:23:34 -04:00
2016-04-28 03:58:50 -04:00
.s-why
:marked
**Why?** The Angular 2 injector is hierarchical.
2016-04-01 20:23:34 -04:00
2016-04-28 03:58:50 -04:00
.s-why
:marked
**Why?** When providing the service to a top level component, that instance is shared and available to all child components of that top level component.
2016-04-25 12:24:13 -04:00
2016-04-28 03:58:50 -04:00
.s-why
:marked
**Why?** This is ideal when a service is sharing methods and has no state, or state that must be shared.
2016-04-25 12:24:13 -04:00
2016-05-01 02:11:33 -04:00
.s-why.s-why-last
2016-04-28 03:58:50 -04:00
:marked
**Why?** This is not ideal when two different components need different instances of a service. In this scenario it would be better to provide the service at the component level that needs the new and separate instance.
2016-04-25 12:24:13 -04:00
2016-04-26 01:42:22 -04:00
+makeTabs(
`style-guide/ts/07-03/app/app.component.ts,
2016-04-28 03:58:50 -04:00
style-guide/ts/07-03/app/heroes/hero-list/hero-list.component.ts`,
2016-04-26 01:42:22 -04:00
'',
`app/app.component.ts,
2016-04-28 03:58:50 -04:00
app/heroes/hero-list/hero-list.component.ts`)
2016-04-26 01:42:22 -04:00
:marked
2016-04-25 12:24:13 -04:00
2016-04-26 01:42:22 -04:00
a(href="#toc") Back to top
2016-04-25 12:24:13 -04:00
2016-04-26 01:42:22 -04:00
.l-main-section
2016-04-01 20:23:34 -04:00
:marked
2016-04-25 12:24:13 -04:00
### Use the @Injectable() Class Decorator
<a id="07-04"></a>
#### Style 07-04
2016-04-28 03:58:50 -04:00
.s-rule.do
:marked
**Do** use the `@Injectable` class decorator instead of the `@Inject` parameter decorator when we are using types as tokens for the dependencies of a service.
2016-04-25 12:24:13 -04:00
2016-04-28 03:58:50 -04:00
.s-why
:marked
**Why?** The Angular DI mechanism resolves all the dependencies of our services based on their types declared with the services' constructors.
2016-04-01 20:23:34 -04:00
2016-05-01 02:11:33 -04:00
.s-why.s-why-last
2016-04-28 03:58:50 -04:00
:marked
**Why?** When a service accepts only dependencies associated with type tokens, the `@Injectable()` syntax is much less verbose compared to using `@Inject()` on each individual constructor parameter.
2016-04-25 12:24:13 -04:00
2016-05-01 02:11:33 -04:00
+makeExample('style-guide/ts/07-04/app/heroes/shared/hero-arena.service.avoid.ts', 'example', 'app/heroes/shared/hero-arena.service.ts')(avoid=1)
2016-04-26 01:42:22 -04:00
:marked
2016-04-01 20:23:34 -04:00
2016-04-28 03:58:50 -04:00
+makeExample('style-guide/ts/07-04/app/heroes/shared/hero-arena.service.ts', 'example', 'app/heroes/shared/hero-arena.service.ts')
2016-04-26 01:42:22 -04:00
:marked
2016-04-25 12:24:13 -04:00
2016-04-26 01:42:22 -04:00
a(href="#toc") Back to top
2016-04-25 12:24:13 -04:00
2016-04-26 01:42:22 -04:00
.l-main-section
2016-04-01 20:23:34 -04:00
:marked
## Data Services
### Separate Data Calls
2016-04-25 12:24:13 -04:00
<a id="08-01"></a>
#### Style 08-01
2016-04-01 20:23:34 -04:00
2016-04-28 03:58:50 -04:00
.s-rule.do
:marked
**Do** refactor logic for making data operations and interacting with data to a service.
.s-rule.do
:marked
**Do** make data services responsible for XHR calls, local storage, stashing in memory, or any other data operations.
2016-04-01 20:23:34 -04:00
2016-04-28 03:58:50 -04:00
.s-why
:marked
**Why?** The component's responsibility is for the presentation and gathering of information for the view. It should not care how it gets the data, just that it knows who to ask for it. Separating the data services moves the logic on how to get it to the data service, and lets the component be simpler and more focused on the view.
2016-04-01 20:23:34 -04:00
2016-04-28 03:58:50 -04:00
.s-why
:marked
**Why?** This makes it easier to test (mock or real) the data calls when testing a component that uses a data service.
2016-04-01 20:23:34 -04:00
2016-05-01 02:11:33 -04:00
.s-why.s-why-last
2016-04-28 03:58:50 -04:00
:marked
**Why?** Data service implementation may have very specific code to handle the data repository. This may include headers, how to talk to the data, or other services such as `Http`. Separating the logic into a data service encapsulates this logic in a single place hiding the implementation from the outside consumers (perhaps a component), also making it easier to change the implementation.
2016-04-01 20:23:34 -04:00
2016-04-26 01:42:22 -04:00
a(href="#toc") Back to top
2016-04-25 12:24:13 -04:00
2016-04-26 01:42:22 -04:00
.l-main-section
2016-04-01 20:23:34 -04:00
:marked
2016-04-13 17:39:12 -04:00
## Lifecycle Hooks
2016-04-25 12:24:13 -04:00
2016-04-13 17:39:12 -04:00
Use Lifecycle Hooks to tap into important events exposed by Angular.
2016-04-01 20:23:34 -04:00
2016-04-26 01:42:22 -04:00
a(href="#toc") Back to top
2016-04-25 12:24:13 -04:00
2016-04-26 01:42:22 -04:00
.l-main-section
2016-04-01 20:23:34 -04:00
:marked
2016-04-13 17:39:12 -04:00
### Implement Lifecycle Hooks Interfaces
2016-04-25 12:24:13 -04:00
<a id="09-01"></a>
#### Style 09-01
2016-04-01 20:23:34 -04:00
2016-04-28 03:58:50 -04:00
.s-rule.do
:marked
**Do** implement the lifecycle hook interfaces.
2016-04-01 20:23:34 -04:00
2016-05-01 02:11:33 -04:00
.s-why.s-why-last
2016-04-28 03:58:50 -04:00
:marked
**Why?** We will avoid unintentionally not calling the hook if we misspell the method.
2016-04-01 20:23:34 -04:00
2016-05-01 02:11:33 -04:00
+makeExample('style-guide/ts/09-01/app/heroes/shared/hero-button/hero-button.component.avoid.ts', 'example', 'app/heroes/shared/hero-button/hero-button.component.ts')(avoid=1)
2016-04-26 01:42:22 -04:00
:marked
2016-04-01 20:23:34 -04:00
2016-04-28 03:58:50 -04:00
+makeExample('style-guide/ts/09-01/app/heroes/shared/hero-button/hero-button.component.ts', 'example', 'app/heroes/shared/hero-button/hero-button.component.ts')
2016-04-26 01:42:22 -04:00
:marked
2016-04-01 20:23:34 -04:00
2016-04-26 01:42:22 -04:00
a(href="#toc") Back to top
2016-04-25 12:24:13 -04:00
2016-04-26 01:42:22 -04:00
.l-main-section
2016-04-01 20:23:34 -04:00
:marked
## Routing
2016-04-25 12:24:13 -04:00
2016-04-01 20:23:34 -04:00
Client-side routing is important for creating a navigation flow between a component tree hierarchy, and composing components that are made of many other child components.
2016-04-26 01:42:22 -04:00
a(href="#toc") Back to top
2016-04-25 12:24:13 -04:00
2016-04-26 01:42:22 -04:00
.l-main-section
2016-04-01 20:23:34 -04:00
:marked
### Component Router
2016-04-25 12:24:13 -04:00
<a id="10-01"></a>
#### Style 10-01
2016-04-01 20:23:34 -04:00
2016-04-28 03:58:50 -04:00
.s-rule.do
:marked
**Do** separate route configuration into a routing component file, also known as a component router.
.s-rule.do
:marked
**Do** use a `<router-outlet>` in the component router, where the routes will have their component targets display their templates.
2016-04-01 20:23:34 -04:00
2016-04-28 03:58:50 -04:00
.s-rule.do
:marked
**Do** focus the logic in the component router to the routing aspects and its target components.
2016-04-25 12:24:13 -04:00
2016-04-28 03:58:50 -04:00
.s-rule.do
:marked
**Do** extract other logic to services and other components.
2016-04-25 12:24:13 -04:00
2016-04-28 03:58:50 -04:00
.s-why
:marked
**Why?** A component that handles routing is known as the component router, thus this follows the Angular 2 routing pattern.
2016-04-25 12:24:13 -04:00
2016-04-28 03:58:50 -04:00
.s-why
:marked
**Why?** A component that handles routing is known as the componenter router.
2016-04-01 20:23:34 -04:00
2016-05-01 02:11:33 -04:00
.s-why.s-why-last
2016-04-28 03:58:50 -04:00
:marked
**Why?** The `<router-outlet>` indicates where the template should be displayed for the target route.
2016-04-25 12:24:13 -04:00
2016-04-28 03:58:50 -04:00
+makeExample('style-guide/ts/10-01/app/app.component.ts', '', 'app/app.component.ts')
2016-04-26 01:42:22 -04:00
:marked
a(href="#toc") Back to top
2016-04-25 12:24:13 -04:00
2016-04-26 01:42:22 -04:00
.l-main-section
2016-04-01 20:23:34 -04:00
:marked
## Appendix
2016-05-01 02:11:33 -04:00
Useful tools and tips for Angular 2.
a(href="#toc") Back to top
.l-main-section
:marked
### Codelyzer
<a id="A-01"></a>
#### Style A-01
2016-04-01 20:23:34 -04:00
2016-05-01 02:11:33 -04:00
.s-rule.do
:marked
**Do** use [codelyzer](https://www.npmjs.com/package/codelyzer) to follow this guide.
2016-04-01 20:23:34 -04:00
2016-05-01 02:11:33 -04:00
.s-rule.consider
:marked
**Consider** adjusting the rules in codelyzer to suit your needs.
2016-04-25 12:24:13 -04:00
2016-05-01 02:11:33 -04:00
a(href="#toc") Back to top
2016-04-25 12:24:13 -04:00
2016-05-01 02:11:33 -04:00
.l-main-section
:marked
### File Templates and Snippets
<a id="A-02"></a>
#### Style A-02
.s-rule.do
:marked
**Do** use file templates or snippets to help follow consistent styles and patterns. Here are templates and/or snippets for some of the web development editors and IDEs.
.s-rule.consider
:marked
**Consider** using [snippets](https://marketplace.visualstudio.com/items?itemName=johnpapa.Angular2) for [Visual Studio Code](https://code.visualstudio.com/) that follow these styles and guidelines.
:marked
[![Use Extension](https://github.com/johnpapa/vscode-angular2-snippets/raw/master/images/use-extension.gif)](https://marketplace.visualstudio.com/items?itemName=johnpapa.Angular2)
2016-04-01 20:23:34 -04:00
2016-04-26 01:42:22 -04:00
a(href="#toc") Back to top