Skip to content
Snippets Groups Projects
Verified Commit 91f4e8f8 authored by Thomas Lenz's avatar Thomas Lenz Committed by Lukas Maximilian Kimpel
Browse files

Implement first view and fake data

parent 9cb106ed
1 merge request!89Resolve "content types (HTML)"
<p> <div fxLayout="column" fxLayoutAlign="start" fxLayoutGap="20px" fxFill>
participant-choice-content works! <div fxLayout="row" fxLayoutAlign="center">
</p> <mat-card class="input-form">
<mat-card-header>
<mat-card-title>
<h3 class="subheading-2">{{ testChoiceContent.subject }}</h3>
</mat-card-title>
<mat-card-subtitle>
<div>
{{ testChoiceContent.body }}
</div>
</mat-card-subtitle>
</mat-card-header>
<mat-divider></mat-divider>
<mat-card-content>
<mat-list *ngFor="let answer of testChoiceContent.options">
<mat-list-item>{{answer.label}}</mat-list-item>
</mat-list>
</mat-card-content>
<mat-divider></mat-divider>
<app-content-list></app-content-list>
<mat-divider></mat-divider>
</mat-card>
<div *ngIf="!isLoading && !room">Error: room could not be found!</div>
</div>
</div>
import { Component, OnInit } from '@angular/core'; import { Component, OnInit } from '@angular/core';
import { ChoiceContent } from '../choice-content';
import { AnswerOption } from '../answer-option';
@Component({ @Component({
selector: 'app-participant-choice-content', selector: 'app-participant-choice-content',
...@@ -6,7 +8,14 @@ import { Component, OnInit } from '@angular/core'; ...@@ -6,7 +8,14 @@ import { Component, OnInit } from '@angular/core';
styleUrls: ['./participant-choice-content.component.scss'] styleUrls: ['./participant-choice-content.component.scss']
}) })
export class ParticipantChoiceContentComponent implements OnInit { export class ParticipantChoiceContentComponent implements OnInit {
testAnswers = [
new AnswerOption('A - Giraffe', '0'),
new AnswerOption('B - Bär', '0'),
new AnswerOption('C - bra', '10')
];
testCorrectAnswers = [2];
testChoiceContent = new ChoiceContent(
'1', '1', '1', 'Tierkunde', 'Welches Tier ist schwarz mit weißen Streifen?', 1, this.testAnswers, this.testCorrectAnswers, false);
constructor() { } constructor() { }
ngOnInit() { ngOnInit() {
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment