funky-framadate-front/src/app/features/consultation/choice-table/choice-table.component.ts

22 lines
589 B
TypeScript

import { Component, Input, OnInit } from '@angular/core';
import { Choice } from '../../../core/models/choice.model';
@Component({
selector: 'app-choice-table',
templateUrl: './choice-table.component.html',
styleUrls: ['./choice-table.component.scss'],
})
export class ChoiceTableComponent implements OnInit {
@Input() detailledDisplay: boolean;
@Input() choice: Choice;
@Input() countMaxVotesForThisAnswer: number = 5;
constructor() {}
ngOnInit(): void {}
roundToPercentWidth(number: number) {
return Math.ceil((number / this.countMaxVotesForThisAnswer) * 100) + '%';
}
}