Javier Suárez Ruiz 8 years ago
parent
commit
1d05523617
30 changed files with 314 additions and 423 deletions
  1. +19
    -24
      src/Services/Ordering/Ordering.API/Startup.cs
  2. +1
    -0
      src/Services/Ordering/Ordering.API/project.json
  3. +3
    -9
      src/Web/WebSPA/eShopOnContainers.WebSPA/Client/modules/app.component.ts
  4. +0
    -1
      src/Web/WebSPA/eShopOnContainers.WebSPA/Client/modules/app.module.ts
  5. +10
    -25
      src/Web/WebSPA/eShopOnContainers.WebSPA/Client/modules/catalog/catalog.component.html
  6. +79
    -8
      src/Web/WebSPA/eShopOnContainers.WebSPA/Client/modules/catalog/catalog.component.ts
  7. +11
    -5
      src/Web/WebSPA/eShopOnContainers.WebSPA/Client/modules/catalog/catalog.module.ts
  8. +48
    -0
      src/Web/WebSPA/eShopOnContainers.WebSPA/Client/modules/catalog/catalog.service.ts
  9. +29
    -0
      src/Web/WebSPA/eShopOnContainers.WebSPA/Client/modules/shared/components/pager/pager.html
  10. +0
    -0
      src/Web/WebSPA/eShopOnContainers.WebSPA/Client/modules/shared/components/pager/pager.scss
  11. +33
    -0
      src/Web/WebSPA/eShopOnContainers.WebSPA/Client/modules/shared/components/pager/pager.ts
  12. +1
    -1
      src/Web/WebSPA/eShopOnContainers.WebSPA/Client/modules/shared/layout/footer.component.html
  13. +1
    -3
      src/Web/WebSPA/eShopOnContainers.WebSPA/Client/modules/shared/layout/header.component.ts
  14. +8
    -0
      src/Web/WebSPA/eShopOnContainers.WebSPA/Client/modules/shared/models/catalog.model.ts
  15. +4
    -0
      src/Web/WebSPA/eShopOnContainers.WebSPA/Client/modules/shared/models/catalogBrand.model.ts
  16. +11
    -0
      src/Web/WebSPA/eShopOnContainers.WebSPA/Client/modules/shared/models/catalogItem.model.ts
  17. +4
    -0
      src/Web/WebSPA/eShopOnContainers.WebSPA/Client/modules/shared/models/catalogType.model.ts
  18. +0
    -3
      src/Web/WebSPA/eShopOnContainers.WebSPA/Client/modules/shared/models/operation-result.model.ts
  19. +6
    -0
      src/Web/WebSPA/eShopOnContainers.WebSPA/Client/modules/shared/models/pager.model.ts
  20. +0
    -13
      src/Web/WebSPA/eShopOnContainers.WebSPA/Client/modules/shared/models/user.model.spec.ts
  21. +0
    -4
      src/Web/WebSPA/eShopOnContainers.WebSPA/Client/modules/shared/models/user.model.ts
  22. +0
    -207
      src/Web/WebSPA/eShopOnContainers.WebSPA/Client/modules/shared/services/api-gateway.service.ts
  23. +0
    -23
      src/Web/WebSPA/eShopOnContainers.WebSPA/Client/modules/shared/services/api-translation-loader.service.ts
  24. +0
    -37
      src/Web/WebSPA/eShopOnContainers.WebSPA/Client/modules/shared/services/auth.service.ts
  25. +0
    -13
      src/Web/WebSPA/eShopOnContainers.WebSPA/Client/modules/shared/services/content.service.ts
  26. +36
    -4
      src/Web/WebSPA/eShopOnContainers.WebSPA/Client/modules/shared/services/data.service.ts
  27. +0
    -25
      src/Web/WebSPA/eShopOnContainers.WebSPA/Client/modules/shared/services/http-error-handler.service.ts
  28. +8
    -15
      src/Web/WebSPA/eShopOnContainers.WebSPA/Client/modules/shared/shared.module.ts
  29. +1
    -1
      src/Web/WebSPA/eShopOnContainers.WebSPA/config/webpack.config.js
  30. +1
    -2
      src/Web/WebSPA/eShopOnContainers.WebSPA/package.json

+ 19
- 24
src/Services/Ordering/Ordering.API/Startup.cs View File

@ -23,8 +23,15 @@ namespace Microsoft.eShopOnContainers.Services.Ordering.API
var builder = new ConfigurationBuilder()
.SetBasePath(env.ContentRootPath)
.AddJsonFile("appsettings.json", optional: true, reloadOnChange: true)
.AddJsonFile($"appsettings.{env.EnvironmentName}.json", optional: true)
.AddEnvironmentVariables();
.AddJsonFile($"appsettings.{env.EnvironmentName}.json", optional: true);
if (env.IsDevelopment())
{
builder.AddUserSecrets();
}
builder.AddEnvironmentVariables();
Configuration = builder.Build();
}
@ -37,28 +44,14 @@ namespace Microsoft.eShopOnContainers.Services.Ordering.API
// Add framework services.
services.AddMvc();
//Add EF Core Context (UnitOfWork)
//SQL LocalDB
// var connString = @"Server=(localdb)\mssqllocaldb;Database=Microsoft.eShopOnContainers.Services.OrderingDb;Trusted_Connection=True;";
//SQL SERVER on-premises
//(Integrated Security)
//var connString = @"Server=CESARDLBOOKVHD;Database=Microsoft.eShopOnContainers.Services.OrderingDb;Trusted_Connection=True;";
//(SQL Server Authentication)
//var connString = @"Server=10.0.75.1;Database=Microsoft.eShopOnContainers.Services.OrderingDb;User Id=sa;Password=Pass@word;";
var connString = Configuration["ConnectionString"];
//(CDLTLL) To use only for EF Migrations
//connString = @"Server=10.0.75.1;Database=Microsoft.eShopOnContainers.Services.OrderingDb;User Id=sa;Password=Pass@word;";
services.AddDbContext<OrderingDbContext>(options => options.UseSqlServer(connString)
.UseSqlServer(connString, b => b.MigrationsAssembly("Ordering.API"))
//(CDLTLL) MigrationsAssembly will be Ordering.SqlData, but when supported
//Standard Library 1.6 by "Microsoft.EntityFrameworkCore.Tools"
//Version "1.0.0-preview2-final" just supports .NET Core
);
services.AddDbContext<OrderingDbContext>(options =>
{
options.UseSqlServer(connString)
.UseSqlServer(connString, b => b.MigrationsAssembly("Ordering.API"));
});
services.AddTransient<IOrderRepository, OrderRepository>();
services.AddTransient<IOrderdingQueries, OrderingQueries>();
@ -70,9 +63,11 @@ namespace Microsoft.eShopOnContainers.Services.Ordering.API
loggerFactory.AddConsole(Configuration.GetSection("Logging"));
loggerFactory.AddDebug();
//if (env.IsDevelopment())
if (env.IsDevelopment())
{
app.UseDeveloperExceptionPage();
}
app.UseMvc();
}
}


+ 1
- 0
src/Services/Ordering/Ordering.API/project.json View File

@ -9,6 +9,7 @@
"Microsoft.AspNetCore.Server.Kestrel": "1.0.0",
"Microsoft.Extensions.Configuration.EnvironmentVariables": "1.0.0",
"Microsoft.Extensions.Configuration.FileExtensions": "1.0.0",
"Microsoft.Extensions.Configuration.UserSecrets": "1.0.0",
"Microsoft.Extensions.Configuration.Json": "1.0.0",
"Microsoft.Extensions.Logging": "1.0.0",
"Microsoft.Extensions.Logging.Console": "1.0.0",


+ 3
- 9
src/Web/WebSPA/eShopOnContainers.WebSPA/Client/modules/app.component.ts View File

@ -1,7 +1,6 @@
import { Title } from '@angular/platform-browser';
import { Component, ViewEncapsulation, OnInit } from '@angular/core';
import { RouterModule } from '@angular/router';
import { TranslateService } from 'ng2-translate/ng2-translate';
import { DataService } from './shared/services/data.service';
@ -18,20 +17,15 @@ import { DataService } from './shared/services/data.service';
export class AppComponent implements OnInit {
constructor(private translate: TranslateService, private titleService: Title) {
// this language will be used as a fallback when a translation isn't found in the current language
translate.setDefaultLang('en');
constructor(private titleService: Title) {
// the lang to use, if the lang isn't available, it will use the current loader to get them
translate.use('en');
}
ngOnInit() {
this.translate.get('title')
.subscribe(title => this.setTitle(title));
}
public setTitle(newTitle: string) {
this.titleService.setTitle(newTitle);
this.titleService.setTitle('eShopOnContainers');
}
}

+ 0
- 1
src/Web/WebSPA/eShopOnContainers.WebSPA/Client/modules/app.module.ts View File

@ -15,7 +15,6 @@ import { CatalogModule } from './catalog/catalog.module';
imports: [
BrowserModule,
routing,
// FormsModule,
HttpModule,
// Only module that app module loads
SharedModule.forRoot(),


+ 10
- 25
src/Web/WebSPA/eShopOnContainers.WebSPA/Client/modules/catalog/catalog.component.html View File

@ -7,36 +7,21 @@
<div class="catalog-filter">
<div class="catalog-filter-container">
<div class="container">
<select>
<option>Opción 1</option>
<option>Opción 2</option>
<select (change)="onBrandFilterChanged($event, $event.target.value)">
<option *ngFor="let brand of brands" [value]="brand.id">{{brand.brand}}</option>
</select>
<select>
<option>Opción 1</option>
<option>Opción 2</option>
<select (change)="onTypeFilterChanged($event, $event.target.value)">
<option *ngFor="let type of types" [value]="type.id">{{type.type}}</option>
</select>
</div>
<button class="" (click)="onFilterApplied($event)">Apply</button>
</div>
</div>
<esh-pager [model]="paginationInfo" (changed)="onPageChanged($event)"></esh-pager>
<div class="catalog-content row">
<div class="col-md-4 catalog-content-item">
<img src="https://fakeimg.pl/370x240/EEEEEE/000/?text=RoslynRedT-Shirt"/>
<div class="col-md-4 catalog-content-item" *ngFor="let item of catalog?.data">
<img src="{{item.pictureUri}}"/>
<button class="catalog-content-item-button">[ ADD TO CART ]</button>
</div>
<div class="col-md-4 catalog-content-item">
<img src="https://fakeimg.pl/370x240/EEEEEE/000/?text=RoslynRedT-Shirt" />
<button class="catalog-content-item-button">[ ADD TO CART ]</button>
</div>
<div class="col-md-4 catalog-content-item">
<img src="https://fakeimg.pl/370x240/EEEEEE/000/?text=RoslynRedT-Shirt" />
<button class="catalog-content-item-button">[ ADD TO CART ]</button>
</div>
<div class="col-md-4 catalog-content-item">
<img src="https://fakeimg.pl/370x240/EEEEEE/000/?text=RoslynRedT-Shirt" />
<button class="catalog-content-item-button">[ ADD TO CART ]</button>
</div>
<div class="col-md-4 catalog-content-item">
<img src="https://fakeimg.pl/370x240/EEEEEE/000/?text=RoslynRedT-Shirt" />
<button class="catalog-content-item-button">[ ADD TO CART ]</button>
</div>
</div>
</div>
<esh-pager [model]="paginationInfo" (changed)="onPageChanged($event)"></esh-pager>

+ 79
- 8
src/Web/WebSPA/eShopOnContainers.WebSPA/Client/modules/catalog/catalog.component.ts View File

@ -1,15 +1,86 @@
import { Component, OnInit } from '@angular/core';
import { Component, OnInit } from '@angular/core';
import { CatalogService } from './catalog.service';
import { ICatalog } from '../shared/models/catalog.model';
import { ICatalogItem } from '../shared/models/catalogItem.model';
import { ICatalogType } from '../shared/models/catalogType.model';
import { ICatalogBrand } from '../shared/models/catalogBrand.model';
import { IPager } from '../shared/models/pager.model';
@Component({
selector: 'appc-catalog',
styleUrls: ['./catalog.component.scss'],
templateUrl: './catalog.component.html'
selector: 'esh-catalog',
styleUrls: ['./catalog.component.scss'],
templateUrl: './catalog.component.html'
})
export class CatalogComponent implements OnInit {
constructor() { }
brands: ICatalogBrand[];
types: ICatalogType[];
catalog: ICatalog;
brandSelected: number;
typeSelected: number;
paginationInfo: IPager;
ngOnInit() {
console.log('catalog component loaded');
}
constructor(private service: CatalogService) { }
ngOnInit() {
this.getBrands();
this.getCatalog(10,0);
this.getTypes();
}
onFilterApplied(event: any) {
event.preventDefault();
this.getCatalog(this.paginationInfo.itemsPage, this.paginationInfo.actualPage, this.brandSelected, this.typeSelected);
}
onBrandFilterChanged(event: any, value: number) {
event.preventDefault();
this.brandSelected = value;
}
onTypeFilterChanged(event: any, value: number) {
event.preventDefault();
this.typeSelected = value;
}
onPageChanged(value: any) {
console.log('catalog pager event fired' + value);
event.preventDefault();
this.paginationInfo.actualPage = value;
this.getCatalog(this.paginationInfo.itemsPage, value);
}
getCatalog(pageSize:number, pageIndex: number, brand?: number, type?: number) {
this.service.getCatalog(brand, type).subscribe(catalog => {
this.catalog = catalog;
console.log('catalog items retrieved: ' + catalog.count);
this.paginationInfo = {
actualPage : catalog.pageIndex,
itemsPage : catalog.pageSize,
totalItems : catalog.count,
totalPages : (catalog.count / catalog.pageSize)
};
console.log(this.paginationInfo);
});
}
getTypes() {
this.service.getTypes().subscribe(types => {
this.types = types;
let alltypes = { id: null, type: 'All' };
this.types.unshift(alltypes);
console.log('types retrieved: ' + types.length);
});
}
getBrands() {
this.service.getBrands().subscribe(brands => {
this.brands = brands;
let allBrands = { id: null, brand: 'All' };
this.brands.unshift(allBrands);
console.log('brands retrieved: ' + brands.length);
});
}
}

+ 11
- 5
src/Web/WebSPA/eShopOnContainers.WebSPA/Client/modules/catalog/catalog.module.ts View File

@ -1,11 +1,17 @@
import { NgModule } from '@angular/core';
import { NgModule } from '@angular/core';
import { BrowserModule } from '@angular/platform-browser';
import { SharedModule } from '../shared/shared.module';
import { CatalogComponent } from './catalog.component';
import { routing } from './catalog.routes';
import { CatalogService } from './catalog.service';
import { Pager } from '../shared/components/pager/pager';
import { CatalogComponent } from './catalog.component';
import { routing } from './catalog.routes';
@NgModule({
imports: [routing],
declarations: [CatalogComponent]
imports: [routing, BrowserModule, SharedModule],
declarations: [CatalogComponent],
providers: [CatalogService]
})
export class CatalogModule { }

+ 48
- 0
src/Web/WebSPA/eShopOnContainers.WebSPA/Client/modules/catalog/catalog.service.ts View File

@ -0,0 +1,48 @@
import { Injectable } from '@angular/core';
import { Response } from '@angular/http';
import { DataService } from '../shared/services/data.service';
import { ICatalog } from '../shared/models/catalog.model';
import { ICatalogBrand } from '../shared/models/catalogBrand.model';
import { ICatalogType } from '../shared/models/catalogType.model';
import 'rxjs/Rx';
import { Observable } from 'rxjs/Observable';
import 'rxjs/add/observable/throw';
import { Observer } from 'rxjs/Observer';
import 'rxjs/add/operator/map';
@Injectable()
export class CatalogService {
private catalogUrl: string = 'http://eshopcontainers:5101/api/v1/catalog/items';
private brandUrl: string = 'http://eshopcontainers:5101/api/v1/catalog/catalogbrands';
private typesUrl: string = 'http://eshopcontainers:5101/api/v1/catalog/catalogtypes';
constructor(private service: DataService) {
}
getCatalog(pageIndex: number, pageSize: number, brand: number, type: number): Observable<ICatalog> {
var url = this.catalogUrl;
if (brand || type) {
url = this.catalogUrl + '/type/' + ((type) ? type.toString() : 'null') + '/brand/' + ((brand) ? brand.toString() : 'null');
}
url = url + '?pageIndex=' + pageIndex + '&pageSize=' + pageSize;
return this.service.get(url).map((response: Response) => {
return response.json();
});
}
getBrands(): Observable<ICatalogBrand[]> {
return this.service.get(this.brandUrl).map((response: Response) => {
return response.json();
});
}
getTypes(): Observable<ICatalogType[]> {
return this.service.get(this.typesUrl).map((response: Response) => {
return response.json();
});
};
}

+ 29
- 0
src/Web/WebSPA/eShopOnContainers.WebSPA/Client/modules/shared/components/pager/pager.html View File

@ -0,0 +1,29 @@
<div class="row">
<div class="col-xs-4">
<nav>
<ul>
<li class="page-item">
<span class="text previous" id="Previous"
(click)="onPreviousCliked($event)"
aria-label="Previous">
Previous
</span>
</li>
</ul>
</nav>
</div>
<div class="col-xs-4 u-align-center"><span>Showing {{model?.itemsPage}} of {{model?.totalItems}} products - Page {{model?.actualPage}} - {{model?.totalPages}}</span></div>
<div class="col-xs-4">
<nav>
<ul>
<li class="page-item">
<span class="text next" id="Next"
(click)="onNextClicked($event)"
aria-label="Next">
Next
</span>
</li>
</ul>
</nav>
</div>
</div>

+ 0
- 0
src/Web/WebSPA/eShopOnContainers.WebSPA/Client/modules/shared/components/pager/pager.scss View File


+ 33
- 0
src/Web/WebSPA/eShopOnContainers.WebSPA/Client/modules/shared/components/pager/pager.ts View File

@ -0,0 +1,33 @@
import { Component, OnInit, Output, Input, EventEmitter } from '@angular/core';
import { IPager } from '../../models/pager.model';
@Component({
selector: 'esh-pager',
templateUrl: './pager.html',
styleUrls: ['./pager.scss']
})
export class Pager implements OnInit {
@Output()
changed: EventEmitter<number> = new EventEmitter<number>();
@Input()
model: IPager;
ngOnInit() {
console.log(this.model);
}
onNextClicked(event: any) {
event.preventDefault();
console.log('Pager Next Clicked');
this.changed.emit(this.model.actualPage + 1);
}
onPreviousCliked(event: any) {
event.preventDefault();
this.changed.emit(this.model.actualPage - 1);
}
}

+ 1
- 1
src/Web/WebSPA/eShopOnContainers.WebSPA/Client/modules/shared/layout/footer.component.html View File

@ -2,7 +2,7 @@
<div class="container">
<hr>
<p class="text-muted">
&copy; 2015-2016 {{'title' | translate}} Company
&copy; 2015-2016 {{'title'}} Company
</p>
</div>
</footer>

+ 1
- 3
src/Web/WebSPA/eShopOnContainers.WebSPA/Client/modules/shared/layout/header.component.ts View File

@ -1,8 +1,6 @@
import { Component, Inject } from '@angular/core';
import { Router } from '@angular/router';
import { AuthService } from '../services/auth.service';
@Component({
selector: 'appc-header',
styleUrls: ['./header.component.scss'],
@ -10,7 +8,7 @@ import { AuthService } from '../services/auth.service';
})
export class HeaderComponent {
isCollapsed: boolean = true;
constructor(private router: Router, private authService: AuthService) { }
constructor(private router: Router) { }
toggleNav() {
this.isCollapsed = !this.isCollapsed;


+ 8
- 0
src/Web/WebSPA/eShopOnContainers.WebSPA/Client/modules/shared/models/catalog.model.ts View File

@ -0,0 +1,8 @@
import {ICatalogItem} from './catalogItem.model';
export interface ICatalog {
pageIndex: number
data: ICatalogItem[]
pageSize: number
count: number
}

+ 4
- 0
src/Web/WebSPA/eShopOnContainers.WebSPA/Client/modules/shared/models/catalogBrand.model.ts View File

@ -0,0 +1,4 @@
export interface ICatalogBrand {
id: number
brand: string
}

+ 11
- 0
src/Web/WebSPA/eShopOnContainers.WebSPA/Client/modules/shared/models/catalogItem.model.ts View File

@ -0,0 +1,11 @@
export interface ICatalogItem {
id: string;
name: string;
description: string;
price: number;
pictureUri: string;
catalogBrandId: number;
catalogBrand: string;
catalogTypeId: number;
catalogType: string;
}

+ 4
- 0
src/Web/WebSPA/eShopOnContainers.WebSPA/Client/modules/shared/models/catalogType.model.ts View File

@ -0,0 +1,4 @@
export interface ICatalogType {
id: number
type: string
}

+ 0
- 3
src/Web/WebSPA/eShopOnContainers.WebSPA/Client/modules/shared/models/operation-result.model.ts View File

@ -1,3 +0,0 @@
export class OperationResult {
constructor(public succeeded: boolean, public message: string) { }
}

+ 6
- 0
src/Web/WebSPA/eShopOnContainers.WebSPA/Client/modules/shared/models/pager.model.ts View File

@ -0,0 +1,6 @@
export interface IPager {
itemsPage: number,
totalItems: number,
actualPage: number,
totalPages: number
}

+ 0
- 13
src/Web/WebSPA/eShopOnContainers.WebSPA/Client/modules/shared/models/user.model.spec.ts View File

@ -1,13 +0,0 @@
import { User } from './user.model';
// todo: I dont think user follows angular style guides
describe('User Model', () => {
it('has displayName', () => {
let userModel: User = {displayName: 'test', roles: ['1']};
expect(userModel.displayName).toEqual('test');
});
it('has displayName', () => {
let userModel: User = {displayName: 'test', roles: ['admin']};
expect(userModel.roles[0]).toEqual('admin');
});
});

+ 0
- 4
src/Web/WebSPA/eShopOnContainers.WebSPA/Client/modules/shared/models/user.model.ts View File

@ -1,4 +0,0 @@
export class User {
constructor(public displayName: string, public roles: string[]) {
}
}

+ 0
- 207
src/Web/WebSPA/eShopOnContainers.WebSPA/Client/modules/shared/services/api-gateway.service.ts View File

@ -1,207 +0,0 @@
// CREDIT:
// The vast majority of this code came right from Ben Nadel's post:
// http://www.bennadel.com/blog/3047-creating-specialized-http-clients-in-angular-2-beta-8.htm
//
// My updates are mostly adapting it for Typescript:
// 1. Importing required modules
// 2. Adding type notations
// 3. Using the 'fat-arrow' syntax to properly scope in-line functions
//
import 'rxjs/add/operator/map';
import 'rxjs/add/operator/catch';
import 'rxjs/add/operator/finally';
import { Injectable } from '@angular/core';
import { Http, Response, RequestOptions, RequestMethod, URLSearchParams } from '@angular/http';
import { Observable } from 'rxjs/Observable';
import { Subject } from 'rxjs/Subject';
import { HttpErrorHandlerService } from './http-error-handler.service';
// Import the rxjs operators we need (in a production app you'll
// probably want to import only the operators you actually use)
//
export class ApiGatewayOptions {
method: RequestMethod;
url: string;
headers: any = {};
params = {};
data = {};
}
@Injectable()
export class ApiGatewayService {
// Define the internal Subject we'll use to push the command count
private pendingCommandsSubject = new Subject<number>();
private pendingCommandCount = 0;
// Provide the *public* Observable that clients can subscribe to
private pendingCommands$: Observable<number>;
constructor(private http: Http, private httpErrorHandler: HttpErrorHandlerService) {
this.pendingCommands$ = this.pendingCommandsSubject.asObservable();
}
// I perform a GET request to the API, appending the given params
// as URL search parameters. Returns a stream.
get(url: string, params: any): Observable<Response> {
let options = new ApiGatewayOptions();
options.method = RequestMethod.Get;
options.url = url;
options.params = params;
return this.request(options);
}
// I perform a POST request to the API. If both the params and data
// are present, the params will be appended as URL search parameters
// and the data will be serialized as a JSON payload. If only the
// data is present, it will be serialized as a JSON payload. Returns
// a stream.
post(url: string, data: any, params: any): Observable<Response> {
if (!data) {
data = params;
params = {};
}
let options = new ApiGatewayOptions();
options.method = RequestMethod.Post;
options.url = url;
options.params = params;
options.data = data;
return this.request(options);
}
private request(options: ApiGatewayOptions): Observable<any> {
options.method = (options.method || RequestMethod.Get);
options.url = (options.url || '');
options.headers = (options.headers || {});
options.params = (options.params || {});
options.data = (options.data || {});
this.interpolateUrl(options);
this.addXsrfToken(options);
this.addContentType(options);
// TODO add auth token when available
// this.addAuthToken(options);
let requestOptions = new RequestOptions();
requestOptions.method = options.method;
requestOptions.url = options.url;
requestOptions.headers = options.headers;
requestOptions.search = this.buildUrlSearchParams(options.params);
requestOptions.body = JSON.stringify(options.data);
let isCommand = (options.method !== RequestMethod.Get);
if (isCommand) {
this.pendingCommandsSubject.next(++this.pendingCommandCount);
}
let stream = this.http.request(options.url, requestOptions)
.catch((error: any) => {
this.httpErrorHandler.handle(error);
return Observable.throw(error);
})
.map(this.unwrapHttpValue)
.catch((error: any) => {
return Observable.throw(this.unwrapHttpError(error));
})
.finally(() => {
if (isCommand) {
this.pendingCommandsSubject.next(--this.pendingCommandCount);
}
});
return stream;
}
private addContentType(options: ApiGatewayOptions): ApiGatewayOptions {
if (options.method !== RequestMethod.Get) {
options.headers['Content-Type'] = 'application/json; charset=UTF-8';
}
return options;
}
private addAuthToken(options: ApiGatewayOptions): ApiGatewayOptions {
options.headers.Authorization = 'Bearer ' + JSON.parse(sessionStorage.getItem('accessToken'));
return options;
}
private extractValue(collection: any, key: string): any {
let value = collection[key];
delete (collection[key]);
return value;
}
private addXsrfToken(options: ApiGatewayOptions): ApiGatewayOptions {
let xsrfToken = this.getXsrfCookie();
if (xsrfToken) {
options.headers['X-XSRF-TOKEN'] = xsrfToken;
}
return options;
}
private getXsrfCookie(): string {
let matches = document.cookie.match(/\bXSRF-TOKEN=([^\s;]+)/);
try {
return (matches && decodeURIComponent(matches[1]));
} catch (decodeError) {
return ('');
}
}
private addCors(options: ApiGatewayOptions): ApiGatewayOptions {
options.headers['Access-Control-Allow-Origin'] = '*';
return options;
}
private buildUrlSearchParams(params: any): URLSearchParams {
let searchParams = new URLSearchParams();
for (let key in params) {
if (params.hasOwnProperty(key)) {
searchParams.append(key, params[key]);
}
}
return searchParams;
}
private interpolateUrl(options: ApiGatewayOptions): ApiGatewayOptions {
options.url = options.url.replace(/:([a-zA-Z]+[\w-]*)/g, ($0, token) => {
// Try to move matching token from the params collection.
if (options.params.hasOwnProperty(token)) {
return (this.extractValue(options.params, token));
}
// Try to move matching token from the data collection.
if (options.data.hasOwnProperty(token)) {
return (this.extractValue(options.data, token));
}
// If a matching value couldn't be found, just replace
// the token with the empty string.
return ('');
});
// Clean up any repeating slashes.
options.url = options.url.replace(/\/{2,}/g, '/');
// Clean up any trailing slashes.
options.url = options.url.replace(/\/+$/g, '');
return options;
}
private unwrapHttpError(error: any): any {
try {
return (error.json());
} catch (jsonError) {
return ({
code: -1,
message: 'An unexpected error occurred.'
});
}
}
private unwrapHttpValue(value: Response): any {
return (value.json());
}
}

+ 0
- 23
src/Web/WebSPA/eShopOnContainers.WebSPA/Client/modules/shared/services/api-translation-loader.service.ts View File

@ -1,23 +0,0 @@
import { Injectable } from '@angular/core';
import { Observable } from 'rxjs/Rx';
import { TranslateLoader } from 'ng2-translate/ng2-translate';
import { MissingTranslationHandler, MissingTranslationHandlerParams } from 'ng2-translate/ng2-translate';
import { ContentService } from './content.service';
@Injectable()
export class ApiTranslationLoader implements TranslateLoader {
constructor(private cs: ContentService) { }
getTranslation(lang: string): Observable<any> {
return this.cs.get(lang);
}
}
@Injectable()
export class CustomMissingTranslationHandler implements MissingTranslationHandler {
handle(params: MissingTranslationHandlerParams) {
return params.key;
}
}

+ 0
- 37
src/Web/WebSPA/eShopOnContainers.WebSPA/Client/modules/shared/services/auth.service.ts View File

@ -1,37 +0,0 @@
import { Injectable } from '@angular/core';
import { Router } from '@angular/router';
import { DataService } from './data.service';
import { User } from '../models/user.model';
@Injectable()
export class AuthService {
constructor(private router: Router) { }
logout() {
sessionStorage.clear();
this.router.navigate(['/login']);
}
isLoggedIn(): boolean {
return this.user(undefined) !== undefined;
}
user(user: User): User {
if (user) {
sessionStorage.setItem('user', JSON.stringify(user));
}
let userData = JSON.parse(sessionStorage.getItem('user'));
if (userData) {
user = new User(userData.displayName, userData.roles);
}
return user ? user : undefined;
}
setAuth(res: any): void {
if (res && res.user) {
sessionStorage.setItem('user', JSON.stringify(res.user));
}
}
}

+ 0
- 13
src/Web/WebSPA/eShopOnContainers.WebSPA/Client/modules/shared/services/content.service.ts View File

@ -1,13 +0,0 @@
import { Injectable } from '@angular/core';
import { DataService } from './data.service';
@Injectable()
export class ContentService {
constructor(public dataService: DataService) { }
get(lang?: string): any {
return this.dataService.get('api/content?lang=' + (lang ? lang : 'en'));
}
}

+ 36
- 4
src/Web/WebSPA/eShopOnContainers.WebSPA/Client/modules/shared/services/data.service.ts View File

@ -1,17 +1,49 @@
import { Injectable } from '@angular/core';
import { Http, Response, RequestOptionsArgs, RequestMethod, Headers } from '@angular/http';
import { ApiGatewayService } from './api-gateway.service';
import 'rxjs/Rx';
import { Observable } from 'rxjs/Observable';
import 'rxjs/add/observable/throw';
import { Observer } from 'rxjs/Observer';
import 'rxjs/add/operator/map';
import 'rxjs/add/operator/catch';
@Injectable()
export class DataService {
constructor(public http: ApiGatewayService) { }
constructor(private http: Http) { }
get(url: string, params?: any) {
return this.http.get(url, undefined);
get(url: string, params?: any): Observable<Response> {
let options: RequestOptionsArgs = {};
options.headers = new Headers();
this.addCors(options);
return this.http.get(url, options).map(
(res: Response) => {
return res;
}).catch(this.handleError);
}
post(url: string, data: any, params?: any) {
return this.http.post(url, data, params);
}
private addCors(options: RequestOptionsArgs): RequestOptionsArgs {
options.headers.append('Access-Control-Allow-Origin', '*');
return options;
}
private handleError(error: any) {
console.error('server error:', error);
if (error instanceof Response) {
let errMessage = '';
try {
errMessage = error.json().error;
} catch (err) {
errMessage = error.statusText;
}
return Observable.throw(errMessage);
}
return Observable.throw(error || 'server error');
}
}

+ 0
- 25
src/Web/WebSPA/eShopOnContainers.WebSPA/Client/modules/shared/services/http-error-handler.service.ts View File

@ -1,25 +0,0 @@
// CREDIT:
// The vast majority of this code came right from Ben Nadel's post:
// http://www.bennadel.com/blog/3047-creating-specialized-http-clients-in-angular-2-beta-8.htm
//
// My updates are mostly adapting it for Typescript:
// 1. Importing required modules
// 2. Adding type notations
// 3. Using the 'fat-arrow' syntax to properly scope in-line functions
//
import { Injectable } from '@angular/core';
import { Router } from '@angular/router';
@Injectable()
export class HttpErrorHandlerService {
constructor(private _router: Router) { }
handle(error: any) {
if (error.status === 401) {
sessionStorage.clear();
// window.location.href = 'login';
this._router.navigate(['Login']);
}
}
}

+ 8
- 15
src/Web/WebSPA/eShopOnContainers.WebSPA/Client/modules/shared/shared.module.ts View File

@ -4,7 +4,6 @@ import { FormsModule, ReactiveFormsModule, FormBuilder } from '@angular/forms';
import { RouterModule } from '@angular/router';
import { HttpModule, JsonpModule } from '@angular/http';
import { NgbModule } from '@ng-bootstrap/ng-bootstrap';
import { TranslateModule, TranslateLoader } from 'ng2-translate/ng2-translate';
import { PageHeadingComponent } from './directives/page-heading.directive';
import { DynamicFormComponent } from './forms/dynamic-form.component';
@ -17,14 +16,12 @@ import { HeaderComponent } from './layout/header.component';
import { FooterComponent } from './layout/footer.component';
// Services
import { DataService } from './services/data.service';
import { ApiGatewayService } from './services/api-gateway.service';
import { AuthService } from './services/auth.service';
import { HttpErrorHandlerService } from './services/http-error-handler.service';
import { ApiTranslationLoader } from './services/api-translation-loader.service';
import { ContentService } from './services/content.service';
import { UtilityService } from './services/utility.service';
import { UppercasePipe } from './pipes/uppercase.pipe';
//Components:
import {Pager } from './components/pager/pager';
@NgModule({
imports: [
CommonModule,
@ -34,8 +31,7 @@ import { UppercasePipe } from './pipes/uppercase.pipe';
NgbModule.forRoot(),
// No need to export as these modules don't expose any components/directive etc'
HttpModule,
JsonpModule,
TranslateModule.forRoot({ provide: TranslateLoader, useClass: ApiTranslationLoader })
JsonpModule
],
declarations: [
DynamicFormComponent,
@ -45,7 +41,8 @@ import { UppercasePipe } from './pipes/uppercase.pipe';
FooterComponent,
HeaderComponent,
PageHeadingComponent,
UppercasePipe
UppercasePipe,
Pager
],
exports: [
// Modules
@ -54,7 +51,6 @@ import { UppercasePipe } from './pipes/uppercase.pipe';
ReactiveFormsModule,
RouterModule,
NgbModule,
TranslateModule,
// Providers, Components, directive, pipes
DynamicFormComponent,
DynamicFormControlComponent,
@ -63,7 +59,8 @@ import { UppercasePipe } from './pipes/uppercase.pipe';
FooterComponent,
HeaderComponent,
PageHeadingComponent,
UppercasePipe
UppercasePipe,
Pager
]
})
@ -73,11 +70,7 @@ export class SharedModule {
ngModule: SharedModule,
providers: [
// Providers
HttpErrorHandlerService,
ApiGatewayService,
AuthService,
DataService,
ContentService,
FormControlService,
UtilityService
]


+ 1
- 1
src/Web/WebSPA/eShopOnContainers.WebSPA/config/webpack.config.js View File

@ -6,7 +6,7 @@ var extractCSS = new ExtractTextPlugin('styles.css');
var ForkCheckerPlugin = require('awesome-typescript-loader').ForkCheckerPlugin;
var devConfig = require('./webpack.config.dev');
var prodConfig = require('./webpack.config.prod');
var isDevelopment = process.env.ASPNETCORE_ENVIRONMENT === 'Production';
var isDevelopment = process.env.ASPNETCORE_ENVIRONMENT === 'Development';
console.log("==========Dev Mode = " + isDevelopment + " ============" )


+ 1
- 2
src/Web/WebSPA/eShopOnContainers.WebSPA/package.json View File

@ -35,7 +35,7 @@
"build:prod": "npm run setprod && npm run clean:dist && npm run build:vendor && npm run build:main",
"lint": "npm run tslint \"Client/**/*.ts\"",
"docs": "npm run typedoc -- --options typedoc.json --exclude '**/*.spec.ts' ./Client/",
"version": "npm run build",
"version": "npm run build"
},
"dependencies": {
"@angular/common": "2.1.2",
@ -55,7 +55,6 @@
"core-js": "2.4.1",
"font-awesome": "4.6.3",
"isomorphic-fetch": "2.2.1",
"ng2-translate": "4.0.0",
"normalize.css": "5.0.0",
"preboot": "4.5.2",
"rxjs": "5.0.0-beta.12",


Loading…
Cancel
Save