Repository: black-shadows/Cheat-Sheets Branch: master Commit: 811c97f72101 Files: 47 Total size: 1.6 MB Directory structure: gitextract_5wy5wbdt/ ├── Angular/ │ └── README.md ├── C++/ │ ├── C++ Syntax.md │ ├── Data Structures and Algorithms.md │ └── README.md ├── Command Line/ │ └── README.md ├── Django/ │ └── README.md ├── Elixir/ │ └── README.md ├── Git/ │ └── README.md ├── Golang/ │ ├── README.md │ └── golang_refcard.odt ├── Java/ │ ├── README.md │ └── todo.md ├── JavaScript/ │ ├── README.md │ ├── _config.yml │ └── translations/ │ ├── fr-FR.md │ ├── ja-JP.md │ ├── pl_PL.md │ ├── pt-BR.md │ ├── ru-RU.md │ ├── th-TH.md │ ├── zh-CN.md │ └── zh-TW.md ├── Kotlin/ │ └── README.md ├── MATLAB/ │ └── README.md ├── Markdown/ │ └── README.md ├── MongoDB/ │ ├── README.md │ └── sql_mongo_comparison.md ├── Oracle SQL/ │ ├── README.md │ └── SQL_commands.md ├── PHP/ │ └── README.md ├── Perl/ │ └── README.md ├── Python/ │ ├── CODE_OF_CONDUCT.md │ ├── CONTRIBUTING.md │ ├── README.md │ ├── _config.yml │ ├── blog_files/ │ │ ├── about.md │ │ └── pysheet.md │ ├── pyproject.toml │ └── python_cheat_sheet.ipynb ├── README.md ├── React/ │ ├── README.md │ └── react-placar.md ├── Ruby/ │ └── README.md ├── Ruby on Rails/ │ └── README.md ├── Scala/ │ └── README.md ├── Swift/ │ └── README.md └── TypeScript/ └── README.md ================================================ FILE CONTENTS ================================================ ================================================ FILE: Angular/README.md ================================================ # Angular Cheatsheet ##### Table of Contents [Basics](#basics) [Loop](#loop) [Html](#html) [Directives](#directives) [Services](#services) [Routing](#routing) [Filters](#filters) ## Basics **Setup** 0. You can use the official [Angular Seed Project](https://github.com/angular/angular-seed) for quick startup. 1. Create a new module named myApp ```javascript // ja > App.js var app = angular.module("myApp", []); ``` 2. add a directive: it tells AngularJS that the myApp module will live within the `
` scope (or the whole page, ``) ```html ``` See: [more info on ng-app](https://docs.angularjs.org/api/ng/directive/ngApp) This is called “Bootstrapping”. Sometimes you want to [do it manually](https://docs.angularjs.org/guide/bootstrap#manual-initialization) (if you have multiple Angular apps for instance). 3. Create a new controller: manages the app's data. ```javascript // js > controllers > MainController.js app.controller('MainController', ['$scope', function($scope) { $scope.title = 'Top Sellers in Books'; }]); ``` 4. ng-controller is a directive that defines the controller scope ```html{{ product.price | currency }}
``` AngularJS gets the value of product.price. It sends this number into the currency filter. The pipe symbol (|) takes the output on the left and "pipes" it to the right. The filter outputs a formatted currency with the dollar sign and the correct decimal places. **Date** ```javascript pubdate: new Date('2014', '03', '08') ``` ```html{{ product.pubdate | date | uppercase }}
``` ## Loop ```javascript $scope.products = [ { name: 'The Book of Trees', price: 19, pubdate: new Date('2014', '03', '08'), cover: 'img/the-book-of-trees.jpg' }, { name: 'Program or be Programmed', price: 8, pubdate: new Date('2013', '08', '01'), cover: 'img/program-or-be-programmed.jpg' } ] ``` ```html{{ product.name }}
{{ product.price | currency }}
{{ product.pubdate | date }}
{{ product.likes }}
{{ product.likes }}
``` ## Directives in js/directives/appInfo.js ```javascript app.directive('appInfo', function() { return { restrict: 'E', // specifies how directive will be used in view. 'E' means it will be used as a new HTML element. scope: { info: '=' // specifies that we will pass information into this directive through an attribute named info. The = tells the directive to look for an attribute named info in the{{ info.developer }}
{{ info.price | currency }}
``` in index.html ```htmlTotal number of phones: {{$ctrl.phones.length}}
{{phone.snippet}}
Sort by:
{{phone.snippet}}
| Bootstrapping |
|
|---|---|
platformBrowserDynamic().bootstrapModule(AppModule); |
Bootstraps the app, using the root component from the specified |
| NgModules |
|
|---|---|
@NgModule({ declarations: ..., imports: ..., |
Defines a module that contains components, directives, pipes, and providers. |
declarations: [MyRedComponent, MyBlueComponent, MyDatePipe] |
List of components, directives, and pipes that belong to this module. |
imports: [BrowserModule, SomeOtherModule] |
List of modules to import into this module. Everything from the imported modules
is available to |
exports: [MyRedComponent, MyDatePipe] |
List of components, directives, and pipes visible to modules that import this module. |
providers: [MyService, { provide: ... }] |
List of dependency injection providers visible both to the contents of this module and to importers of this module. |
entryComponents: [SomeComponent, OtherComponent] |
List of components not referenced in any reachable template, for example dynamically created from code. |
bootstrap: [MyAppComponent] |
List of components to bootstrap when this module is bootstrapped. |
| Template syntax | |
|---|---|
<input [value]="firstName"> |
Binds property |
<div [attr.role]="myAriaRole"> |
Binds attribute |
<div [class.extra-sparkle]="isDelightful"> |
Binds the presence of the CSS class |
<div [style.width.px]="mySize"> |
Binds style property |
<button (click)="readRainbow($event)"> |
Calls method |
<div title="Hello {{ponyName}}"> |
Binds a property to an interpolated string, for example, "Hello Seabiscuit". Equivalent to:
|
<p>Hello {{ponyName}}</p> |
Binds text content to an interpolated string, for example, "Hello Seabiscuit". |
<my-cmp [(title)]="name"> |
Sets up two-way data binding. Equivalent to: |
<video #movieplayer ...> |
Creates a local variable |
<p *myUnless="myExpression">...</p> |
The |
<p>Card No.: {{cardNumber | myCardNumberFormatter}}</p> |
Transforms the current value of expression |
<p>Employer: {{employer?.companyName}}</p> |
The safe navigation operator ( |
<svg:rect x="0" y="0" width="100" height="100"/> |
An SVG snippet template needs an |
<svg> |
An |
| Built-in directives |
|
|---|---|
<section *ngIf="showSection"> |
Removes or recreates a portion of the DOM tree based on the |
<li *ngFor="let item of list"> |
Turns the li element and its contents into a template, and uses that to instantiate a view for each item in list. |
<div [ngSwitch]="conditionExpression"> |
Conditionally swaps the contents of the div by selecting one of the embedded templates based on the current value of |
<div [ngClass]="{'active': isActive, 'disabled': isDisabled}"> |
Binds the presence of CSS classes on the element to the truthiness of the associated map values. The right-hand expression should return {class-name: true/false} map. |
<div [ngStyle]="{'property': 'value'}"><div [ngStyle]="dynamicStyles()"> |
Allows you to assign styles to an HTML element using CSS. You can use CSS directly, as in the first example, or you can call a method from the component. |
| Forms |
|
|---|---|
<input [(ngModel)]="userName"> |
Provides two-way data-binding, parsing, and validation for form controls. |
| Class decorators |
|
|---|---|
@Component({...}) |
Declares that a class is a component and provides metadata about the component. |
@Directive({...}) |
Declares that a class is a directive and provides metadata about the directive. |
@Pipe({...}) |
Declares that a class is a pipe and provides metadata about the pipe. |
@Injectable() |
Declares that a class has dependencies that should be injected into the constructor when the dependency injector is creating an instance of this class. |
| Directive configuration |
|
|---|---|
selector: '.cool-button:not(a)' |
Specifies a CSS selector that identifies this directive within a template. Supported selectors include Does not support parent-child relationship selectors. |
providers: [MyService, { provide: ... }] |
List of dependency injection providers for this directive and its children. |
| Component configuration |
|
|---|---|
moduleId: module.id |
If set, the |
viewProviders: [MyService, { provide: ... }] |
List of dependency injection providers scoped to this component's view. |
template: 'Hello {{name}}' |
Inline template or external template URL of the component's view. |
styles: ['.primary {color: red}'] |
List of inline CSS styles or external stylesheet URLs for styling the component’s view. |
| Class field decorators for directives and components |
|
|---|---|
@Input() myProperty; |
Declares an input property that you can update via property binding (example:
|
@Output() myEvent = new EventEmitter(); |
Declares an output property that fires events that you can subscribe to with an event binding (example: |
@HostBinding('class.valid') isValid; |
Binds a host element property (here, the CSS class |
@HostListener('click', ['$event']) onClick(e) {...} |
Subscribes to a host element event ( |
@ContentChild(myPredicate) myChildComponent; |
Binds the first result of the component content query ( |
@ContentChildren(myPredicate) myChildComponents; |
Binds the results of the component content query ( |
@ViewChild(myPredicate) myChildComponent; |
Binds the first result of the component view query ( |
@ViewChildren(myPredicate) myChildComponents; |
Binds the results of the component view query ( |
| Directive and component change detection and lifecycle hooks | (implemented as class methods) |
|---|---|
constructor(myService: MyService, ...) { ... } |
Called before any other lifecycle hook. Use it to inject dependencies, but avoid any serious work here. |
ngOnChanges(changeRecord) { ... } |
Called after every change to input properties and before processing content or child views. |
ngOnInit() { ... } |
Called after the constructor, initializing input properties, and the first call to |
ngDoCheck() { ... } |
Called every time that the input properties of a component or a directive are checked. Use it to extend change detection by performing a custom check. |
ngAfterContentInit() { ... } |
Called after |
ngAfterContentChecked() { ... } |
Called after every check of the component's or directive's content. |
ngAfterViewInit() { ... } |
Called after |
ngAfterViewChecked() { ... } |
Called after every check of the component's views and child views / the view that a directive is in. |
ngOnDestroy() { ... } |
Called once, before the instance is destroyed. |
| Dependency injection configuration | |
|---|---|
{ provide: MyService, useClass: MyMockService } |
Sets or overrides the provider for |
{ provide: MyService, useFactory: myFactory } |
Sets or overrides the provider for |
{ provide: MyValue, useValue: 41 } |
Sets or overrides the provider for |
| Routing and navigation |
|
|---|---|
const routes: Routes = [ |
Configures routes for the application. Supports static, parameterized, redirect, and wildcard routes. Also supports custom route data and resolve. |
|
Marks the location to load the component of the active route. |
|
Creates a link to a different view based on a route instruction consisting of a route path, required and optional parameters, query parameters, and a fragment. To navigate to a root route, use the |
<a [routerLink]="[ '/path' ]" routerLinkActive="active"> |
The provided classes are added to the element when the |
class CanActivateGuard implements CanActivate { |
An interface for defining a class that the router should call first to determine if it should activate this component. Should return a boolean or an Observable/Promise that resolves to a boolean. |
class CanDeactivateGuard implements CanDeactivate<T> { |
An interface for defining a class that the router should call first to determine if it should deactivate this component after a navigation. Should return a boolean or an Observable/Promise that resolves to a boolean. |
class CanActivateChildGuard implements CanActivateChild { |
An interface for defining a class that the router should call first to determine if it should activate the child route. Should return a boolean or an Observable/Promise that resolves to a boolean. |
class ResolveGuard implements Resolve<T> { |
An interface for defining a class that the router should call first to resolve route data before rendering the route. Should return a value or an Observable/Promise that resolves to a value. |
class CanLoadGuard implements CanLoad { |
An interface for defining a class that the router should call first to check if the lazy loaded module should be loaded. Should return a boolean or an Observable/Promise that resolves to a boolean. |
