This commit is contained in:
insanity 2018-02-01 18:46:50 +09:00
parent 0836cf68af
commit 01eef7ba82
17 changed files with 240 additions and 62 deletions

View File

@ -0,0 +1,6 @@
<table *ngFor="let elem of data">
<tr>
<td>{{elem.key}}</td>
<td>{{elem.value}}</td>
</tr>
</table>

View File

@ -0,0 +1,10 @@
.example-container {
display: flex;
flex-direction: column;
min-width: 300px;
}
.mat-table {
overflow: auto;
max-height: 500px;
}

View File

@ -0,0 +1,25 @@
import { async, ComponentFixture, TestBed } from '@angular/core/testing';
import { InfoTableComponent } from './info-table.component';
describe('InfoTableComponent', () => {
let component: InfoTableComponent;
let fixture: ComponentFixture<InfoTableComponent>;
beforeEach(async(() => {
TestBed.configureTestingModule({
declarations: [ InfoTableComponent ]
})
.compileComponents();
}));
beforeEach(() => {
fixture = TestBed.createComponent(InfoTableComponent);
component = fixture.componentInstance;
fixture.detectChanges();
});
it('should create', () => {
expect(component).toBeTruthy();
});
});

View File

@ -0,0 +1,17 @@
import { Component, Input } from '@angular/core';
import { MatTableDataSource } from '@angular/material';
@Component({
selector: 'of-info-table',
templateUrl: './info-table.component.html',
styleUrls: ['./info-table.component.scss']
})
export class InfoTableComponent {
@Input() title: string;
@Input() data: any;
constructor() { }
}

View File

@ -0,0 +1,18 @@
import { NgModule } from '@angular/core';
import { CommonModule } from '@angular/common';
import { InfoTableComponent } from 'app/commons/component/info-table/info-table.component';
import { MaterialModule } from 'app/commons/ui/material/material.module';
@NgModule({
imports: [
CommonModule,
MaterialModule
],
declarations: [
InfoTableComponent
],
exports: [
InfoTableComponent
]
})
export class InfoTableModule { }

View File

@ -6,6 +6,7 @@ import { FooterComponent } from './footer/footer.component';
import { MenuItemComponent } from './menu-item/menu-item.component'; import { MenuItemComponent } from './menu-item/menu-item.component';
import { SubMenubarComponent } from './sub-menubar/sub-menubar.component'; import { SubMenubarComponent } from './sub-menubar/sub-menubar.component';
import { FlexLayoutModule } from '@angular/flex-layout'; import { FlexLayoutModule } from '@angular/flex-layout';
import { InfoTableComponent } from './info-table/info-table.component';
@NgModule({ @NgModule({
@ -13,6 +14,6 @@ import { FlexLayoutModule } from '@angular/flex-layout';
CommonModule, CommonModule,
FlexLayoutModule, FlexLayoutModule,
], ],
declarations: [SidebarComponent, HeaderComponent, FooterComponent, MenuItemComponent, SubMenubarComponent] declarations: [SidebarComponent, HeaderComponent, FooterComponent, MenuItemComponent, SubMenubarComponent, InfoTableComponent]
}) })
export class LayoutsModule { } export class LayoutsModule { }

View File

@ -24,11 +24,11 @@ const MATERIAL_MODULES: any[] = [
@NgModule({ @NgModule({
imports: [ imports: [
MATERIAL_MODULES, MATERIAL_MODULES,
FlexLayoutModule FlexLayoutModule,
], ],
exports: [ exports: [
MATERIAL_MODULES, MATERIAL_MODULES,
FlexLayoutModule FlexLayoutModule,
], ],
}) })
export class MaterialModule { } export class MaterialModule { }

View File

@ -1,59 +1,23 @@
<div>{{probeId}}</div> <div>{{probeId}}</div>
<button class="Follow " mat-raised-button color="primary">Status: UP</button>
<div fxLayout="row" fxLayoutWrap fxLayoutAlign="space-between center">
<mat-card>Status: UP</mat-card>
<div>
<button *ngIf="!isUpState" mat-raised-button color="primary" (click)="handleStartStop()">Start</button>
<button *ngIf="isUpState" mat-raised-button color="accent" (click)="handleStartStop()">Stop</button>
<button mat-raised-button color="warn" (click)="handleRemove()">Remove</button>
</div>
</div>
<div fxLayout="row" fxLayoutWrap fxLayoutGap="10px" fxLayoutAlign="center"> <div fxLayout="row" fxLayoutWrap fxLayoutGap="10px" fxLayoutAlign="center">
<mat-card class="example-card" fxFlex="30%" fxFlex.lt-sm="100" fxFlex.sm="30"> <mat-card fxFlex="30%" fxFlex.lt-sm="100" fxFlex.sm="30">
<mat-card-header> <of-info-table [title]="'Title1'" [data]="data"></of-info-table>
<div mat-card-avatar class="example-header-image"></div>
<mat-card-title>Shiba Inu</mat-card-title>
<mat-card-subtitle>Dog Breed</mat-card-subtitle>
</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-card-content>
<mat-card-actions>
<button mat-button>LIKE</button>
<button mat-button>SHARE</button>
</mat-card-actions>
</mat-card> </mat-card>
<mat-card fxFlex="30%" fxFlex.lt-sm="100" fxFlex.sm="30">
<mat-card class="example-card" fxFlex="30" fxFlex.lt-sm="100" fxFlex.sm="30"> <of-info-table [title]="'Title2'" [data]="data"></of-info-table>
<mat-card-header> </mat-card>
<div mat-card-avatar class="example-header-image"></div> <mat-card fxFlex="30%" fxFlex.lt-sm="100" fxFlex.sm="30">
<mat-card-title>Shiba Inu</mat-card-title> <of-info-table [title]="'Title3'" [data]="data"></of-info-table>
<mat-card-subtitle>Dog Breed</mat-card-subtitle>
</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-card-content>
<mat-card-actions>
<button mat-button>LIKE</button>
<button mat-button>SHARE</button>
</mat-card-actions>
</mat-card> </mat-card>
<mat-card class="example-card" fxFlex="30" fxFlex.lt-sm="100" fxFlex.sm="30">
<mat-card-header>
<div mat-card-avatar class="example-header-image"></div>
<mat-card-title>Shiba Inu</mat-card-title>
<mat-card-subtitle>Dog Breed</mat-card-subtitle>
</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-card-content>
<mat-card-actions>
<button mat-button>LIKE</button>
<button mat-button>SHARE</button>
</mat-card-actions>
</mat-card>
</div> </div>

View File

@ -1,5 +1,6 @@
import { Component, OnInit } from '@angular/core'; import { Component, OnInit, Inject } from '@angular/core';
import { ActivatedRoute, Router } from '@angular/router'; import { ActivatedRoute, Router } from '@angular/router';
import { MatDialog, MatDialogRef, MAT_DIALOG_DATA } from '@angular/material';
@Component({ @Component({
selector: 'of-probe-detail', selector: 'of-probe-detail',
@ -9,11 +10,42 @@ import { ActivatedRoute, Router } from '@angular/router';
export class DetailComponent implements OnInit { export class DetailComponent implements OnInit {
probeId = undefined; probeId = undefined;
isUpState = false;
constructor(private route: ActivatedRoute, private router: Router) { } data = [
{
key: 'key1',
value: 'this is value'
},
{
key: 'key2',
value: 'this is value'
},
{
key: 'key3',
value: 'this is value'
},
{
key: 'key4',
value: 'this is value'
},
];
constructor(
private route: ActivatedRoute,
private router: Router,
public dialog: MatDialog) { }
ngOnInit() { ngOnInit() {
this.probeId = this.route.snapshot.paramMap.get('id'); this.probeId = this.route.snapshot.paramMap.get('id');
} }
handleStartStop() {
this.isUpState = !this.isUpState;
}
handleRemove() {
console.log('remove');
}
} }

View File

@ -1,3 +1,15 @@
<p> <div fxLayout="row" fxLayout.lt-sm="column" fxLayoutAglign="center">
download works! <div fxFlex.xs="100" fxFlex.lg="20" fxFlex.md="20" fxFlex.sm="20" >
</p> <div class="tab">
<button class="tablinks" *ngFor="let os of OS_LIST" (click)="handleTabSelection(os)" >{{os}}</button>
</div>
</div>
<div fxFlex.xs="100" fxFlex.lg="80" fxFlex.md="80" fxFlex.sm="80">
<div class="tabcontent">
<div *ngIf="selected == 'Windows' || selected==undefined">Windows Manual</div>
<div *ngIf="selected == 'Ubuntu'">Ubuntu Manual</div>
<div *ngIf="selected == 'CentOS'">CentOS Manual</div>
</div>
</div>
</div>

View File

@ -0,0 +1,36 @@
.tab {
border: 1px solid #ccc;
background-color: #f1f1f1;
height: 100%;
}
/* Style the buttons that are used to open the tab content */
.tab button {
display: block;
background-color: inherit;
color: black;
padding: 22px 16px;
width: 100%;
border: none;
outline: none;
text-align: left;
cursor: pointer;
transition: 0.3s;
}
/* Change background color of buttons on hover */
.tab button:hover {
background-color: #ddd;
}
/* Create an active/current "tab button" class */
.tab button.active {
background-color: #ccc;
}
/* Style the tab content */
.tabcontent {
padding: 0px 12px;
border: 1px solid #ccc;
height: 100%;
}

View File

@ -7,9 +7,21 @@ import { Component, OnInit } from '@angular/core';
}) })
export class DownloadComponent implements OnInit { export class DownloadComponent implements OnInit {
selected: string = undefined;
OS_LIST = [
'Windows',
'Ubuntu',
'CentOS',
];
constructor() { } constructor() { }
ngOnInit() { ngOnInit() {
} }
handleTabSelection(osName: string) {
console.log(osName);
this.selected = osName;
}
} }

View File

@ -3,17 +3,19 @@ import { CommonModule } from '@angular/common';
import { ListComponent } from 'app/packages/probe/component/list/list.component'; import { ListComponent } from 'app/packages/probe/component/list/list.component';
import { DownloadComponent } from 'app/packages/probe/component/download/download.component'; import { DownloadComponent } from 'app/packages/probe/component/download/download.component';
import { MaterialModule } from 'app/commons/ui/material/material.module'; import { MaterialModule } from 'app/commons/ui/material/material.module';
import { InfoTableModule } from 'app/commons/component/info-table/info-table.module';
import { DetailComponent } from 'app/packages/probe/component/detail/detail.component'; import { DetailComponent } from 'app/packages/probe/component/detail/detail.component';
@NgModule({ @NgModule({
imports: [ imports: [
CommonModule, CommonModule,
MaterialModule, MaterialModule,
InfoTableModule,
], ],
declarations: [ declarations: [
ListComponent, ListComponent,
DownloadComponent, DownloadComponent,
DetailComponent DetailComponent,
], ],
}) })
export class ProbeModule { } export class ProbeModule { }

View File

@ -0,0 +1,3 @@
<p>
targets works!
</p>

View File

@ -0,0 +1,25 @@
import { async, ComponentFixture, TestBed } from '@angular/core/testing';
import { TargetsComponent } from './targets.component';
describe('TargetsComponent', () => {
let component: TargetsComponent;
let fixture: ComponentFixture<TargetsComponent>;
beforeEach(async(() => {
TestBed.configureTestingModule({
declarations: [ TargetsComponent ]
})
.compileComponents();
}));
beforeEach(() => {
fixture = TestBed.createComponent(TargetsComponent);
component = fixture.componentInstance;
fixture.detectChanges();
});
it('should create', () => {
expect(component).toBeTruthy();
});
});

View File

@ -0,0 +1,15 @@
import { Component, OnInit } from '@angular/core';
@Component({
selector: 'of-targets',
templateUrl: './targets.component.html',
styleUrls: ['./targets.component.scss']
})
export class TargetsComponent implements OnInit {
constructor() { }
ngOnInit() {
}
}