fixed infrapage
This commit is contained in:
parent
ef3e6a2e27
commit
7928c9ba4c
|
@ -7,7 +7,7 @@ import {
|
|||
MatToolbarModule, MatSnackBarModule, MatSidenavModule,
|
||||
MatTabsModule, MatSelectModule, MatRadioModule,
|
||||
MatAutocompleteModule, MatFormFieldModule, MatChipsModule,
|
||||
MatDialogModule,
|
||||
MatDialogModule, MatGridListModule
|
||||
} from '@angular/material';
|
||||
|
||||
const MATERIAL_MODULES: any[] = [
|
||||
|
@ -17,7 +17,7 @@ const MATERIAL_MODULES: any[] = [
|
|||
MatToolbarModule, MatSnackBarModule, MatSidenavModule,
|
||||
MatTabsModule, MatSelectModule, MatRadioModule,
|
||||
MatAutocompleteModule, MatFormFieldModule, MatChipsModule,
|
||||
MatDialogModule,
|
||||
MatDialogModule, MatGridListModule
|
||||
];
|
||||
|
||||
@NgModule({
|
||||
|
|
|
@ -1,11 +1,11 @@
|
|||
import { NgModule } from '@angular/core';
|
||||
import { Routes, RouterModule } from '@angular/router';
|
||||
import { DiscoveryComponent } from './discovery.component';
|
||||
import { DiscoveryPageComponent } from './discovery-page.component';
|
||||
|
||||
const routes: Routes = [
|
||||
{
|
||||
path: '',
|
||||
component: DiscoveryComponent,
|
||||
component: DiscoveryPageComponent,
|
||||
}
|
||||
];
|
||||
|
||||
|
@ -13,4 +13,5 @@ const routes: Routes = [
|
|||
imports: [RouterModule.forChild(routes)],
|
||||
exports: [RouterModule]
|
||||
})
|
||||
export class DiscoveryRoutingModule { }
|
||||
|
||||
export class DiscoveryPageRoutingModule { }
|
3
src/app/pages/discovery/discovery-page.component.html
Normal file
3
src/app/pages/discovery/discovery-page.component.html
Normal file
|
@ -0,0 +1,3 @@
|
|||
<p>
|
||||
discovery-page works!
|
||||
</p>
|
|
@ -1,20 +1,20 @@
|
|||
import { async, ComponentFixture, TestBed } from '@angular/core/testing';
|
||||
|
||||
import { DiscoveryComponent } from './discovery.component';
|
||||
import { DiscoveryPageComponent } from './discovery-page.component';
|
||||
|
||||
describe('DiscoveryComponent', () => {
|
||||
let component: DiscoveryComponent;
|
||||
let fixture: ComponentFixture<DiscoveryComponent>;
|
||||
describe('DiscoveryPageComponent', () => {
|
||||
let component: DiscoveryPageComponent;
|
||||
let fixture: ComponentFixture<DiscoveryPageComponent>;
|
||||
|
||||
beforeEach(async(() => {
|
||||
TestBed.configureTestingModule({
|
||||
declarations: [ DiscoveryComponent ]
|
||||
declarations: [ DiscoveryPageComponent ]
|
||||
})
|
||||
.compileComponents();
|
||||
}));
|
||||
|
||||
beforeEach(() => {
|
||||
fixture = TestBed.createComponent(DiscoveryComponent);
|
||||
fixture = TestBed.createComponent(DiscoveryPageComponent);
|
||||
component = fixture.componentInstance;
|
||||
fixture.detectChanges();
|
||||
});
|
15
src/app/pages/discovery/discovery-page.component.ts
Normal file
15
src/app/pages/discovery/discovery-page.component.ts
Normal file
|
@ -0,0 +1,15 @@
|
|||
import { Component, OnInit } from '@angular/core';
|
||||
|
||||
@Component({
|
||||
selector: 'of-discovery-page',
|
||||
templateUrl: './discovery-page.component.html',
|
||||
styleUrls: ['./discovery-page.component.scss']
|
||||
})
|
||||
export class DiscoveryPageComponent implements OnInit {
|
||||
|
||||
constructor() { }
|
||||
|
||||
ngOnInit() {
|
||||
}
|
||||
|
||||
}
|
17
src/app/pages/discovery/discovery-page.module.ts
Normal file
17
src/app/pages/discovery/discovery-page.module.ts
Normal file
|
@ -0,0 +1,17 @@
|
|||
import { NgModule } from '@angular/core';
|
||||
import { CommonModule } from '@angular/common';
|
||||
|
||||
import { DiscoveryPageComponent } from './discovery-page.component';
|
||||
import { DiscoveryPageRoutingModule } from './discovery-page-routing.module';
|
||||
|
||||
import { DiscoveryModule } from '../../packages/discovery/discovery.module';
|
||||
|
||||
@NgModule({
|
||||
imports: [
|
||||
CommonModule,
|
||||
DiscoveryPageRoutingModule,
|
||||
DiscoveryModule
|
||||
],
|
||||
declarations: [DiscoveryPageComponent]
|
||||
})
|
||||
export class DiscoveryPageModule { }
|
|
@ -1,5 +0,0 @@
|
|||
<p>
|
||||
discovery works!
|
||||
</p>
|
||||
|
||||
<of-setting></of-setting>
|
|
@ -1,15 +0,0 @@
|
|||
import { Component, OnInit } from '@angular/core';
|
||||
|
||||
@Component({
|
||||
selector: 'of-discovery',
|
||||
templateUrl: './discovery.component.html',
|
||||
styleUrls: ['./discovery.component.scss']
|
||||
})
|
||||
export class DiscoveryComponent implements OnInit {
|
||||
|
||||
constructor() { }
|
||||
|
||||
ngOnInit() {
|
||||
}
|
||||
|
||||
}
|
|
@ -1,23 +0,0 @@
|
|||
import { NgModule } from '@angular/core';
|
||||
import { CommonModule } from '@angular/common';
|
||||
|
||||
import { DiscoveryComponent } from './discovery.component';
|
||||
import { DiscoveryRoutingModule } from './discovery-routing.module';
|
||||
|
||||
import { DiscoveryModule as DisModule } from '../../packages/discovery/discovery.module';
|
||||
|
||||
// import { MaterialModule } from 'app/commons/ui/material/material.module';
|
||||
|
||||
@NgModule({
|
||||
imports: [
|
||||
CommonModule,
|
||||
DiscoveryRoutingModule,
|
||||
DisModule,
|
||||
// MaterialModule
|
||||
],
|
||||
exports: [
|
||||
// MaterialModule
|
||||
],
|
||||
declarations: [DiscoveryComponent]
|
||||
})
|
||||
export class DiscoveryModule { }
|
|
@ -7,11 +7,12 @@
|
|||
</mat-card-header>
|
||||
|
||||
<mat-card-content>
|
||||
<p>
|
||||
The Shiba Inu is the smallest of the six original and distinct spitz breeds of dog from Japan.
|
||||
A small, agile dog that copes very well with mountainous terrain, the Shiba Inu was originally
|
||||
bred for hunting.
|
||||
</p>
|
||||
<mat-grid-list cols="2" rowHeight="2:1">
|
||||
<mat-grid-tile>1</mat-grid-tile>
|
||||
<mat-grid-tile>2</mat-grid-tile>
|
||||
<mat-grid-tile>3</mat-grid-tile>
|
||||
<mat-grid-tile>4</mat-grid-tile>
|
||||
</mat-grid-list>
|
||||
</mat-card-content>
|
||||
<mat-card-actions>
|
||||
<button mat-button>LIKE</button>
|
||||
|
|
|
@ -11,7 +11,7 @@ const routes: Routes = [
|
|||
{ path: 'home', loadChildren: './home/home-page.module#HomePageModule' },
|
||||
{ path: 'probes', loadChildren: './probes/probes-page.module#ProbesPageModule' },
|
||||
|
||||
{ path: 'discovery', loadChildren: './discovery/discovery.module#DiscoveryModule' },
|
||||
{ path: 'discovery', loadChildren: './discovery/discovery-page.module#DiscoveryPageModule' },
|
||||
{ path: 'map', loadChildren: './infra/infra-page.module#InfraPageModule' },
|
||||
]
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue
Block a user