This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| body { | |
| padding: 20px; | |
| font-family: Halvetica, sans-serif; | |
| .title { | |
| margin-bottom: 4px; | |
| } | |
| .created-at { | |
| font-size: 14px; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| // Use !{var} to use unescaped conent | |
| style(type="text/css") !{compiledStyle} | |
| h1.title Invoice number ##{invoice.id} | |
| p.created-at #{invoice.createdAt} | |
| h3 For: #{invoice.customer.number} | |
| table |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <mat-autocomplete #auto="matAutocomplete" [displayWith]="displayFn"> | |
| <mat-option *ngIf="isLoading" class="is-loading"><mat-spinner diameter="50"></mat-spinner></mat-option> | |
| <ng-container *ngIf="!isLoading"> | |
| <mat-option *ngFor="let user of filteredUsers" [value]="user"> | |
| <span>{{ user.name }}</span> | |
| <small> | ID: {{user.id}}</small> | |
| </mat-option> | |
| </ng-container> | |
| </mat-autocomplete> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| this.usersForm = this.fb.group({ | |
| userInput: null | |
| }) | |
| this.usersForm | |
| .get('userInput') | |
| .valueChanges | |
| .pipe( | |
| debounceTime(300), | |
| tap(() => this.isLoading = true), |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <mat-autocomplete #auto="matAutocomplete" [displayWith]="displayFn"> | |
| <mat-option *ngFor="let user of (filteredUsers | async)?.results" [value]="user"> | |
| <span>{{ user.name }}</span> | |
| <small> | ID: {{user.id}}</small> | |
| </mat-option> | |
| </mat-autocomplete> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| this.usersForm = this.fb.group({ | |
| userInput: null | |
| }) | |
| this.filteredUsers = this.usersForm | |
| .get('userInput') | |
| .valueChanges | |
| .pipe( | |
| debounceTime(300), | |
| switchMap(value => this.appService.search({name: value}, 1)) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| import { Component, Output, EventEmitter, OnInit, AfterContentInit, Input, OnChanges, SimpleChanges } from '@angular/core'; | |
| import { FormGroup, FormBuilder } from '@angular/forms'; | |
| import { User } from '../users/user.class'; | |
| @Component({ | |
| selector: 'shipping-form', | |
| templateUrl: './shipping.component.html', | |
| styleUrls: [ './shipping.component.scss' ] | |
| }) | |
| export class ShippingFormComponent implements OnChanges, OnInit { |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <div class="mat-typography"> | |
| <h1>Checkout Order</h1> | |
| <div class="checkout-form"> | |
| <form novalidate [formGroup]="checkoutForm"> | |
| <mat-form-field> | |
| <input matInput type="text" placeholder='Full name' formControlName="fullName"> | |
| </mat-form-field> | |
| <mat-tab-group> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| import { Component, OnInit } from '@angular/core'; | |
| import {FormGroup, FormBuilder} from '@angular/forms'; | |
| @Component({ | |
| selector: 'my-app', | |
| templateUrl: './app.component.html', | |
| styleUrls: [ './app.component.scss' ] | |
| }) | |
| export class AppComponent implements OnInit { | |
| checkoutForm: FormGroup; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| import { Component, Output, EventEmitter, OnInit } from '@angular/core'; | |
| import { FormGroup, FormBuilder } from '@angular/forms'; | |
| @Component({ | |
| selector: 'shipping-form', | |
| templateUrl: './shipping.component.html', | |
| styleUrls: [ './shipping.component.scss' ] | |
| }) | |
| export class ShippingFormComponent { | |
| @Output() formReady = new EventEmitter<FormGroup>() |