From c57afa432b91450d8d6afbd2574feef75bf65825 Mon Sep 17 00:00:00 2001 From: Louis Peter <Louis.Peter@mni.thm.de> Date: Mon, 18 Mar 2019 10:54:40 +0100 Subject: [PATCH] Create new comment component --- .../shared/comment/comment.component.html | 7 +++++ .../shared/comment/comment.component.scss | 0 .../shared/comment/comment.component.spec.ts | 26 +++++++++++++++++++ .../shared/comment/comment.component.ts | 15 +++++++++++ 4 files changed, 48 insertions(+) create mode 100644 src/app/components/shared/comment/comment.component.html create mode 100644 src/app/components/shared/comment/comment.component.scss create mode 100644 src/app/components/shared/comment/comment.component.spec.ts create mode 100644 src/app/components/shared/comment/comment.component.ts diff --git a/src/app/components/shared/comment/comment.component.html b/src/app/components/shared/comment/comment.component.html new file mode 100644 index 000000000..834776dfa --- /dev/null +++ b/src/app/components/shared/comment/comment.component.html @@ -0,0 +1,7 @@ +<mat-card> + <mat-card-title>{{comment.subject}}</mat-card-title> + <mat-divider></mat-divider> + <mat-card-content> + <p>{{comment.body}}</p> + </mat-card-content> +</mat-card> diff --git a/src/app/components/shared/comment/comment.component.scss b/src/app/components/shared/comment/comment.component.scss new file mode 100644 index 000000000..e69de29bb diff --git a/src/app/components/shared/comment/comment.component.spec.ts b/src/app/components/shared/comment/comment.component.spec.ts new file mode 100644 index 000000000..5d05159bb --- /dev/null +++ b/src/app/components/shared/comment/comment.component.spec.ts @@ -0,0 +1,26 @@ +/*import { async, ComponentFixture, TestBed } from '@angular/core/testing'; + +import { CommentComponent } from './comment.component'; + +describe('CommentComponent', () => { + let component: CommentComponent; + let fixture: ComponentFixture<CommentComponent>; + + beforeEach(async(() => { + TestBed.configureTestingModule({ + declarations: [ CommentComponent ] + }) + .compileComponents(); + })); + + beforeEach(() => { + fixture = TestBed.createComponent(CommentComponent); + component = fixture.componentInstance; + fixture.detectChanges(); + }); + + it('should create', () => { + expect(component).toBeTruthy(); + }); +}); +*/ diff --git a/src/app/components/shared/comment/comment.component.ts b/src/app/components/shared/comment/comment.component.ts new file mode 100644 index 000000000..131375367 --- /dev/null +++ b/src/app/components/shared/comment/comment.component.ts @@ -0,0 +1,15 @@ +import { Component, Input, OnInit } from '@angular/core'; + +@Component({ + selector: 'app-comment', + templateUrl: './comment.component.html', + styleUrls: ['./comment.component.scss'] +}) +export class CommentComponent implements OnInit { + @Input() comment; + constructor() { } + + ngOnInit() { + } + +} -- GitLab