Skip to content
This repository was archived by the owner on Nov 19, 2021. It is now read-only.

Commit aac6595

Browse files
author
Garcia Marin
committed
#14 routing Tables-Kitchen implemented
1 parent d1177e4 commit aac6595

9 files changed

+33
-25
lines changed

oasp4js-sample/src/app/app.routes.ts

-13
This file was deleted.

oasp4js-sample/src/app/components/crud/view/Crud.component.html

+1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
<h2>Tables</h2>
12
<div>
23
<filter-panel (filterValues) = "searchFilters($event)">
34
<label> Number </label>

oasp4js-sample/src/app/components/header/view/Header.component.html

+2-2
Original file line numberDiff line numberDiff line change
@@ -3,10 +3,10 @@
33

44
<ul *ngIf="logged" class = "header-tabs">
55
<li role = "presentation">
6-
<a> Tables </a>
6+
<a [routerLink]="['/Tables']"> Tables </a>
77
</li>
88
<li role = "presentation">
9-
<a> Kitchen </a>
9+
<a [routerLink]="['/Kitchen']"> Kitchen </a>
1010
</li>
1111
</ul>
1212

oasp4js-sample/src/app/components/header/view/Header.component.ts

+3-1
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,14 @@
11
import { Component } from '@angular/core';
22
import { EventEmitter } from '@angular/core';
33
import {languages} from '../../../resources/languages/Languages.resource'
4+
import {ROUTER_DIRECTIVES} from "@angular/router";
45

56
@Component({
67
selector: 'header',
78
templateUrl: 'app/components/header/view/Header.component.html',
89
inputs: ["logged", "username"],
9-
outputs: ["logOffEvent"]
10+
outputs: ["logOffEvent"],
11+
directives: [ROUTER_DIRECTIVES]
1012
})
1113

1214
export class HeaderComponent {
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
<h1>KITCHEN</h1>
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
import {Component} from '@angular/core'
2+
3+
@Component({
4+
selector:'kitchen',
5+
templateUrl:'app/components/kitchen/view/Kitchen.component.html'
6+
})
7+
8+
export class KitchenComponent{
9+
}

oasp4js-sample/src/app/oasp4js-sample.component.html

+3-4
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
<header [logged]="login" [username] ="usuario.username" (logOffEvent)="login = $event"></header>
1+
<header [logged]="login" [username] ="usuario.username" (logOffEvent)="login = logOut($event)"></header>
22

33
<div class = "app-body">
44
<!-- LOGIN -->
@@ -7,9 +7,8 @@
77
</div>
88

99
<!-- APPLICATION -->
10-
<div *ngIf="login">
11-
<h2>Tables</h2>
12-
<crud></crud>
10+
<div [hidden]="!login">
11+
<router-outlet></router-outlet>
1312
</div>
1413
</div>
1514

oasp4js-sample/src/app/oasp4js-sample.component.ts

+10
Original file line numberDiff line numberDiff line change
@@ -3,12 +3,16 @@ import { Component } from '@angular/core';
33
import { HeaderComponent} from './components/header/view/Header.component';
44
import { LoginComponent} from './components/login/view/Login.component';
55
import { CrudComponent } from './components/crud/view/Crud.component'
6+
import { KitchenComponent } from './components/kitchen/view/Kitchen.component'
67

78
import { User } from './models/user/User.model'
89

910
import {ROUTER_DIRECTIVES, Router, Routes} from "@angular/router";
1011

1112
@Routes([
13+
{ path: '', component: CrudComponent },
14+
{ path: '/Tables', component: CrudComponent },
15+
{ path: '/Kitchen', component: KitchenComponent }
1216
])
1317

1418
@Component({
@@ -18,16 +22,22 @@ import {ROUTER_DIRECTIVES, Router, Routes} from "@angular/router";
1822
styleUrls: ['oasp4js-sample.component.css'],
1923
directives: [LoginComponent, HeaderComponent, CrudComponent, ROUTER_DIRECTIVES]
2024
})
25+
26+
2127
export class Oasp4jsSampleAppComponent{
2228
title = "oasp4js-sample works!";
2329
public login:boolean;
2430
public usuario: User = new User(0,"","");
2531

32+
constructor(private router: Router){}
33+
2634
enviar(value){
2735
setTimeout( ()=>{this.login = value;},1);
36+
this.router.navigate(['/Tables']);
2837
}
2938

3039
logOut(){
3140
this.login = false;
41+
this.router.navigate(['']);
3242
}
3343
}

oasp4js-sample/src/main.ts

+4-5
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,14 @@
11
import { bootstrap } from '@angular/platform-browser-dynamic';
22
// import {bootstrap} from 'angular2/platform/browser'
33
import { enableProdMode } from '@angular/core';
4-
import { APP_ROUTER_PROVIDERS } from './app.routes';
4+
import { ROUTER_PROVIDERS, ROUTER_DIRECTIVES } from '@angular/router';
55
import { Oasp4jsSampleAppComponent, environment } from './app/';
66
//import {disableDeprecatedForms, provideForms} from "@angular/forms";
77

88
if (environment.production) {
99
enableProdMode();
1010
}
1111

12-
bootstrap(Oasp4jsSampleAppComponent/*,[
13-
disableDeprecatedForms(),
14-
provideForms()
15-
]*/);
12+
13+
bootstrap(Oasp4jsSampleAppComponent, [ROUTER_PROVIDERS, ROUTER_DIRECTIVES])
14+
.catch(err => console.error(err));

0 commit comments

Comments
 (0)