Skip to content

Commit 8d29257

Browse files
committed
Proximos passos e user page.
1 parent 736a7d5 commit 8d29257

13 files changed

+93
-3
lines changed

README.md

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -27,6 +27,27 @@ Run `ng e2e` to execute the end-to-end tests via [Protractor](http://www.protrac
2727
To get more help on the Angular CLI use `ng help` or go check out the [Angular CLI README](https://github.com/angular/angular-cli/blob/master/README.md).
2828

2929
users page
30+
componente de filtro passando emitindo dictionary
31+
componente de lista recebendo dictonary
32+
componente de adicao
33+
componente de alteracao
34+
rota de alteracao direta no registro
35+
componente de formulario
36+
sessionstorage no http-backend-interceptor
3037
toast
3138
HttpErroHandling
3239
Error handling
40+
ui.module igual ao core.module
41+
dockerfile
42+
makefile
43+
44+
aspnetcore-bootstrap
45+
users
46+
47+
ambiente-bootstrap
48+
aws
49+
kube
50+
api-gateway
51+
https://aws.amazon.com/pt/blogs/aws-brasil/autenticacao-e-controle-de-sessao-no-api-gateway-com-lambda-e-jwt/
52+
53+
ci no github atraves do azure pipelines

src/app/core/http-backend-interceptor.component.ts

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,6 @@ import { HttpRequest, HttpResponse, HttpHandler, HttpEvent, HttpInterceptor } fr
33
import { Observable, of, throwError } from 'rxjs';
44
import { delay, mergeMap, materialize, dematerialize } from 'rxjs/operators';
55
import { Jwt } from '../domain/Jwt';
6-
import { User } from '../domain/User';
76

87
@Injectable()
98
export class HttpBackendInterceptorComponent implements HttpInterceptor {
@@ -69,7 +68,7 @@ export class HttpBackendInterceptorComponent implements HttpInterceptor {
6968
return next.handle(req);
7069
}))
7170
.pipe(materialize())
72-
.pipe(delay(500))
71+
.pipe(delay(5000))
7372
.pipe(dematerialize());
7473
}
7574
}

src/app/routes/index/index-page/index-page.component.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<h2 class="heading display-4 mb-2">Angular 6</h2>
66
<div class="row justify-content-center">
77
<div class="col-lg-8">
8-
<p class="lead lh-180">Backendless application with http and application error handling, lazy load modules, reactive forms, http interceptors.</p>
8+
<p class="lead lh-180">Backendless application with http and application error handling, lazy load modules, reactive forms, http interceptors .</p>
99
</div>
1010
</div>
1111
</div>
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
My personal page
Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
import { Component, ViewContainerRef, ViewEncapsulation } from '@angular/core';
2+
3+
@Component({
4+
selector: 'users-index-page',
5+
templateUrl: './users-index-page.component.html',
6+
encapsulation: ViewEncapsulation.None
7+
})
8+
9+
export class UsersIndexPageComponent {
10+
title = 'Index';
11+
12+
constructor() { }
13+
}
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
My personal page
Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
import { Component, ViewContainerRef, ViewEncapsulation } from '@angular/core';
2+
3+
@Component({
4+
selector: 'users-index-page',
5+
templateUrl: './users-index-page.component.html',
6+
encapsulation: ViewEncapsulation.None
7+
})
8+
9+
export class UsersIndexPageComponent {
10+
title = 'Index';
11+
12+
constructor() { }
13+
}
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
My personal page
Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
import { Component, ViewContainerRef, ViewEncapsulation } from '@angular/core';
2+
3+
@Component({
4+
selector: 'users-index-page',
5+
templateUrl: './users-index-page.component.html',
6+
encapsulation: ViewEncapsulation.None
7+
})
8+
9+
export class UsersIndexPageComponent {
10+
title = 'Index';
11+
12+
constructor() { }
13+
}
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
My personal page
Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
import { Component, ViewContainerRef, ViewEncapsulation } from '@angular/core';
2+
3+
@Component({
4+
selector: 'users-index-page',
5+
templateUrl: './users-index-page.component.html',
6+
encapsulation: ViewEncapsulation.None
7+
})
8+
9+
export class UsersIndexPageComponent {
10+
title = 'Index';
11+
12+
constructor() { }
13+
}
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
My personal page
Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
import { Component, ViewContainerRef, ViewEncapsulation } from '@angular/core';
2+
3+
@Component({
4+
selector: 'users-index-page',
5+
templateUrl: './users-index-page.component.html',
6+
encapsulation: ViewEncapsulation.None
7+
})
8+
9+
export class UsersIndexPageComponent {
10+
title = 'Index';
11+
12+
constructor() { }
13+
}

0 commit comments

Comments
 (0)