Skip to content
Snippets Groups Projects
Commit 4a51281b authored by Lukas Maximilian Kimpel's avatar Lukas Maximilian Kimpel
Browse files

Merge branch '112-answer-statistics-template' into 'master'

Resolve "answer statistics (template)"

Closes #112

See merge request swtp-block-ws17/arsnova-angular-frontend!82
parents 7f6f4ead 9f2d8638
Branches
Tags
No related merge requests found
<div fxLayout="row" fxLayoutGap="20px" fxLayoutAlign="center">
<mat-card>
<mat-tab-group>
<mat-tab label="Answer statistic">
<mat-select placeholder="Answers" fxLayoutAlign="right" (change)="showStatistic($event.value)">
<mat-option *ngFor="let state of states" [value]="state.value">
{{ state.viewValue }}
</mat-option>
</mat-select>
<div *ngIf="selected == 1">
<!-- Add list of Question statistic -->
<mat-progress-bar [value]="50">
</mat-progress-bar>
</div>
<div *ngIf="selected == 2">
<!-- Add list of Question statistic -->
<mat-progress-bar [value]="50" color="warn">
</mat-progress-bar>
</div>
</mat-tab>
<!-- Add second tab with true false answers -->
</mat-tab-group>
</mat-card>
</div>
mat-card {
max-width: 800px;
width: 100%;
}
mat-select {
max-width: 150px;
margin-top: 10px;
margin-left: 625px;
}
mat-progress-bar {
margin-top: 20px;
}
import { async, ComponentFixture, TestBed } from '@angular/core/testing';
import { AnswerStatisticsComponent } from './answer-statistics.component';
describe('AnswerStatisticsComponent', () => {
let component: AnswerStatisticsComponent;
let fixture: ComponentFixture<AnswerStatisticsComponent>;
beforeEach(async(() => {
TestBed.configureTestingModule({
declarations: [ AnswerStatisticsComponent ]
})
.compileComponents();
}));
beforeEach(() => {
fixture = TestBed.createComponent(AnswerStatisticsComponent);
component = fixture.componentInstance;
fixture.detectChanges();
});
it('should create', () => {
expect(component).toBeTruthy();
});
});
import { Component, OnInit } from '@angular/core';
@Component({
selector: 'app-answer-statistics',
templateUrl: './answer-statistics.component.html',
styleUrls: ['./answer-statistics.component.scss']
})
export class AnswerStatisticsComponent implements OnInit {
states = [
{ value: '1', viewValue: 'Responded' },
{ value: '2', viewValue: 'Not responded' },
];
selected: number = null;
constructor() { }
ngOnInit() {
}
showStatistic(value) {
this.selected = value;
}
}
...@@ -13,6 +13,7 @@ import { CommentListComponent } from './comment-list/comment-list.component'; ...@@ -13,6 +13,7 @@ import { CommentListComponent } from './comment-list/comment-list.component';
import { ContentListComponent } from './content-list/content-list.component'; import { ContentListComponent } from './content-list/content-list.component';
import { ContentCreationComponent } from './content-creation/content-creation.component'; import { ContentCreationComponent } from './content-creation/content-creation.component';
import { ContentDetailComponent } from './content-detail/content-detail.component'; import { ContentDetailComponent } from './content-detail/content-detail.component';
import { AnswerStatisticsComponent } from './answer-statistics/answer-statistics.component';
const routes: Routes = [ const routes: Routes = [
{ path: '', redirectTo: '/home', pathMatch: 'full' }, { path: '', redirectTo: '/home', pathMatch: 'full' },
...@@ -45,6 +46,12 @@ const routes: Routes = [ ...@@ -45,6 +46,12 @@ const routes: Routes = [
canActivate: [AuthenticationGuard], canActivate: [AuthenticationGuard],
data: { roles: [UserRole.CREATOR] } data: { roles: [UserRole.CREATOR] }
}, },
{
path: 'creator/room/:roomId/answer-statistics',
component: AnswerStatisticsComponent,
canActivate: [AuthenticationGuard],
data: { roles: [UserRole.CREATOR] }
},
{ {
path: 'creator/room/:roomId/content-creation', path: 'creator/room/:roomId/content-creation',
component: ContentCreationComponent, component: ContentCreationComponent,
......
...@@ -73,6 +73,7 @@ import { ContentService } from './content.service'; ...@@ -73,6 +73,7 @@ import { ContentService } from './content.service';
import { ContentAnswersListComponent } from './content-answers-list/content-answers-list.component'; import { ContentAnswersListComponent } from './content-answers-list/content-answers-list.component';
import { ContentAnswerService } from './content-answer.service'; import { ContentAnswerService } from './content-answer.service';
import { RoomDeletionComponent } from './room-deletion/room-deletion.component'; import { RoomDeletionComponent } from './room-deletion/room-deletion.component';
import { AnswerStatisticsComponent } from './answer-statistics/answer-statistics.component';
import { RoomModificationComponent } from './room-modification/room-modification.component'; import { RoomModificationComponent } from './room-modification/room-modification.component';
@NgModule({ @NgModule({
...@@ -101,7 +102,8 @@ import { RoomModificationComponent } from './room-modification/room-modification ...@@ -101,7 +102,8 @@ import { RoomModificationComponent } from './room-modification/room-modification
ContentListComponent, ContentListComponent,
ContentAnswersListComponent, ContentAnswersListComponent,
RoomDeletionComponent, RoomDeletionComponent,
RoomModificationComponent RoomModificationComponent,
AnswerStatisticsComponent
], ],
entryComponents: [ entryComponents: [
RegisterComponent, RegisterComponent,
......
...@@ -24,10 +24,12 @@ ...@@ -24,10 +24,12 @@
<button mat-button color="primary" matTooltip="Create new content" (click)="createContentDialog()"> <button mat-button color="primary" matTooltip="Create new content" (click)="createContentDialog()">
Create content Create content
</button> </button>
<button mat-button color="primary" matTooltip="See room comments" <button mat-button color="primary" matTooltip="See room comments" routerLink="/creator/room/{{room.id}}/comments">
routerLink="/creator/room/{{room.id}}/comments">
Comments Comments
</button> </button>
<button mat-button color="primary" matTooltip="See answer statistics" routerLink="/creator/room/{{room.id}}/answer-statistics">
Answer statistics
</button>
<button *ngIf="!modify" (click)="showEditDialog()" mat-button color="primary"> <button *ngIf="!modify" (click)="showEditDialog()" mat-button color="primary">
Edit room Edit room
</button> </button>
......
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