Skip to content
Snippets Groups Projects
Commit a420ce3a authored by David Noah Donges's avatar David Noah Donges
Browse files

Merge branch '33-content-creation-formular-design' into 'master'

Resolve "content creation - Formular Design" 2nd

Closes #33

See merge request swtp-block-ws17/arsnova-angular-frontend!45
parents 60a29fa2 7c03ba3a
Branches
Tags
No related merge requests found
......@@ -11,6 +11,3 @@
<router-outlet></router-outlet>
</div>
</div>
......@@ -56,6 +56,7 @@ import { LoginScreenComponent } from './login-screen/login-screen.component';
import { NotificationService } from './notification.service';
import { AuthenticationService } from './authentication.service';
import { AuthenticationGuard } from './authentication.guard';
import { ContentCreationComponent } from './content-creation/content-creation.component';
import { RoomService } from './room.service';
import { RoomListComponent } from './room-list/room-list.component';
import { CreatorHomeScreenComponent } from './creator-home-screen/creator-home-screen.component';
......@@ -72,6 +73,7 @@ import { ParticipantHomeScreenComponent } from './participant-home-screen/partic
PageNotFoundComponent,
PasswordResetComponent,
RegisterComponent,
ContentCreationComponent,
RoomComponent,
RegisterComponent,
RoomCreationComponent,
......
<div>
<mat-card class="content-card">
<mat-card-title>
<mat-form-field>
<input matInput placeholder="Topic">
</mat-form-field>
</mat-card-title>
<mat-form-field>
<textarea matInput placeholder="Place your text here" matTextareaAutosize matAutosizeMinRows="3" matAutosizeMaxRows="8"></textarea>
</mat-form-field>
</mat-card>
</div>
<mat-card class="content-card">
<mat-selection-list>
<mat-list-option>Answer 32</mat-list-option>
<mat-list-option>Answer 33</mat-list-option>
<mat-list-option>Answer 34</mat-list-option>
<mat-list>
<mat-form-field>
<input matInput placeholder="Add Answer">
</mat-form-field>
<button mat-mini-fab>+</button>
</mat-list>
</mat-selection-list>
</mat-card>
<button mat-raised-button="Preview">Preview</button>
<!-- TODO: Save answers to array in a class. Show answers in a matlist -->
<div>
<mat-slide-toggle>Allow absention</mat-slide-toggle>
<mat-slide-toggle>Show hints</mat-slide-toggle>
</div>
.content-card {
max-width: 400px;
margin-bottom: 5%;
}
import { async, ComponentFixture, TestBed } from '@angular/core/testing';
import { ContentCreationComponent } from './content-creation.component';
describe('ContentCreationComponent', () => {
let component: ContentCreationComponent;
let fixture: ComponentFixture<ContentCreationComponent>;
beforeEach(async(() => {
TestBed.configureTestingModule({
declarations: [ ContentCreationComponent ]
})
.compileComponents();
}));
beforeEach(() => {
fixture = TestBed.createComponent(ContentCreationComponent);
component = fixture.componentInstance;
fixture.detectChanges();
});
it('should create', () => {
expect(component).toBeTruthy();
});
});
import { Component, OnInit } from '@angular/core';
@Component({
selector: 'app-content-creation',
templateUrl: './content-creation.component.html',
styleUrls: ['./content-creation.component.scss']
})
export class ContentCreationComponent implements OnInit {
constructor() { }
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