2018-12-21 15:05:11 +01:00
|
|
|
import { Injectable } from '@angular/core';
|
|
|
|
|
2019-03-11 09:48:20 +01:00
|
|
|
import { _ } from 'app/core/translate/translation-marker';
|
|
|
|
|
2018-12-21 15:05:11 +01:00
|
|
|
/**
|
|
|
|
* The possible keys of a poll object that represent numbers.
|
|
|
|
* TODO Should be 'key of MotionPoll if type of key is number'
|
|
|
|
* TODO: normalize MotionPoll model and other poll models
|
|
|
|
* TODO: reuse more motion-poll-service stuff
|
|
|
|
*/
|
|
|
|
export type CalculablePollKey = 'votesvalid' | 'votesinvalid' | 'votescast' | 'yes' | 'no' | 'abstain';
|
|
|
|
|
|
|
|
/**
|
2019-03-04 18:28:21 +01:00
|
|
|
* TODO: may be obsolete if the server switches to lower case only
|
|
|
|
* (lower case variants are already in CalculablePollKey)
|
|
|
|
*/
|
|
|
|
export type PollVoteValue = 'Yes' | 'No' | 'Abstain';
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Interface representing possible majority calculation methods. The implementing
|
|
|
|
* calc function should return an integer number that must be reached for the
|
|
|
|
* option to reach the quorum, or null if disabled
|
|
|
|
*/
|
|
|
|
export interface MajorityMethod {
|
|
|
|
value: string;
|
|
|
|
display_name: string;
|
|
|
|
calc: (base: number) => number | null;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* List of available majority methods, used in motion and assignment polls
|
|
|
|
*/
|
|
|
|
export const PollMajorityMethod: MajorityMethod[] = [
|
|
|
|
{
|
|
|
|
value: 'simple_majority',
|
|
|
|
display_name: 'Simple majority',
|
|
|
|
calc: base => Math.ceil(base * 0.5)
|
|
|
|
},
|
|
|
|
{
|
|
|
|
value: 'two-thirds_majority',
|
|
|
|
display_name: 'Two-thirds majority',
|
|
|
|
calc: base => Math.ceil((base / 3) * 2)
|
|
|
|
},
|
|
|
|
{
|
|
|
|
value: 'three-quarters_majority',
|
|
|
|
display_name: 'Three-quarters majority',
|
|
|
|
calc: base => Math.ceil((base / 4) * 3)
|
|
|
|
},
|
|
|
|
{
|
|
|
|
value: 'disabled',
|
|
|
|
display_name: 'Disabled',
|
|
|
|
calc: a => null
|
|
|
|
}
|
|
|
|
];
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Shared service class for polls. Used by child classes {@link MotionPollService}
|
|
|
|
* and {@link AssignmentPollService}
|
2018-12-21 15:05:11 +01:00
|
|
|
*/
|
|
|
|
@Injectable({
|
|
|
|
providedIn: 'root'
|
|
|
|
})
|
2019-03-04 18:28:21 +01:00
|
|
|
export abstract class PollService {
|
2018-12-21 15:05:11 +01:00
|
|
|
/**
|
2019-03-04 18:28:21 +01:00
|
|
|
* The chosen and currently used base for percentage calculations. Is
|
|
|
|
* supposed to be set by a config service
|
2018-12-21 15:05:11 +01:00
|
|
|
*/
|
|
|
|
public percentBase: string;
|
|
|
|
|
|
|
|
/**
|
2019-03-04 18:28:21 +01:00
|
|
|
* The default majority method (to be set set per config).
|
2018-12-21 15:05:11 +01:00
|
|
|
*/
|
|
|
|
public defaultMajorityMethod: string;
|
|
|
|
|
2019-03-04 18:28:21 +01:00
|
|
|
/**
|
|
|
|
* The majority method currently in use
|
|
|
|
*/
|
|
|
|
public majorityMethod: MajorityMethod;
|
|
|
|
|
2018-12-21 15:05:11 +01:00
|
|
|
/**
|
|
|
|
* An array of value - label pairs for special value signifiers.
|
2019-03-04 18:28:21 +01:00
|
|
|
* TODO: Should be given by the server, and editable. For now they are hard
|
|
|
|
* coded
|
2018-12-21 15:05:11 +01:00
|
|
|
*/
|
2019-02-06 11:52:04 +01:00
|
|
|
private _specialPollVotes: [number, string][] = [[-1, 'majority'], [-2, 'undocumented']];
|
2018-12-21 15:05:11 +01:00
|
|
|
|
|
|
|
/**
|
2019-03-04 18:28:21 +01:00
|
|
|
* getter for the special vote values
|
2018-12-21 15:05:11 +01:00
|
|
|
*
|
|
|
|
* @returns an array of special (non-positive) numbers used in polls and
|
|
|
|
* their descriptive strings
|
|
|
|
*/
|
|
|
|
public get specialPollVotes(): [number, string][] {
|
|
|
|
return this._specialPollVotes;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* empty constructor
|
|
|
|
*/
|
|
|
|
public constructor() {}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Gets an icon for a Poll Key
|
|
|
|
*
|
|
|
|
* @param key
|
|
|
|
* @returns a string for material-icons to represent the icon for
|
|
|
|
* this key(e.g. yes: positiv sign, no: negative sign)
|
|
|
|
*/
|
|
|
|
public getIcon(key: CalculablePollKey): string {
|
|
|
|
switch (key) {
|
|
|
|
case 'yes':
|
|
|
|
return 'thumb_up';
|
|
|
|
case 'no':
|
|
|
|
return 'thumb_down';
|
|
|
|
case 'abstain':
|
|
|
|
return 'not_interested';
|
2019-03-04 18:28:21 +01:00
|
|
|
// TODO case 'votescast':
|
2018-12-21 15:05:11 +01:00
|
|
|
// sum
|
|
|
|
case 'votesvalid':
|
|
|
|
return 'check';
|
|
|
|
case 'votesinvalid':
|
|
|
|
return 'cancel';
|
|
|
|
default:
|
|
|
|
return '';
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Gets a label for a poll Key
|
|
|
|
*
|
|
|
|
* @returns A short descriptive name for the poll keys
|
|
|
|
*/
|
2019-03-04 18:28:21 +01:00
|
|
|
public getLabel(key: CalculablePollKey | PollVoteValue): string {
|
|
|
|
switch (key.toLowerCase()) {
|
2018-12-21 15:05:11 +01:00
|
|
|
case 'yes':
|
|
|
|
return 'Yes';
|
|
|
|
case 'no':
|
|
|
|
return 'No';
|
|
|
|
case 'abstain':
|
|
|
|
return 'Abstain';
|
|
|
|
case 'votescast':
|
2019-03-11 09:48:20 +01:00
|
|
|
return _('Total votes cast');
|
2018-12-21 15:05:11 +01:00
|
|
|
case 'votesvalid':
|
2019-03-11 09:48:20 +01:00
|
|
|
return _('Valid votes');
|
2018-12-21 15:05:11 +01:00
|
|
|
case 'votesinvalid':
|
2019-03-11 09:48:20 +01:00
|
|
|
return _('Invalid votes');
|
2018-12-21 15:05:11 +01:00
|
|
|
default:
|
|
|
|
return '';
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* retrieve special labels for a poll value
|
|
|
|
*
|
|
|
|
* @param value
|
|
|
|
* @returns the label for a non-positive value, according to
|
|
|
|
* {@link specialPollVotes}. Positive values will return as string
|
|
|
|
* representation of themselves
|
|
|
|
*/
|
|
|
|
public getSpecialLabel(value: number): string {
|
|
|
|
if (value >= 0) {
|
|
|
|
return value.toString();
|
|
|
|
}
|
|
|
|
const vote = this.specialPollVotes.find(special => special[0] === value);
|
|
|
|
return vote ? vote[1] : 'Undocumented special (negative) value';
|
|
|
|
}
|
2019-03-04 18:28:21 +01:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Get the progressbar class for a decision key
|
|
|
|
*
|
|
|
|
* @param key
|
|
|
|
*
|
|
|
|
* @returns a css class designing a progress bar in a color, or an empty string
|
|
|
|
*/
|
|
|
|
public getProgressBarColor(key: CalculablePollKey | PollVoteValue): string {
|
|
|
|
switch (key.toLowerCase()) {
|
|
|
|
case 'yes':
|
|
|
|
return 'progress-green';
|
|
|
|
case 'no':
|
|
|
|
return 'progress-red';
|
|
|
|
case 'abstain':
|
|
|
|
return 'progress-yellow';
|
|
|
|
default:
|
|
|
|
return '';
|
|
|
|
}
|
|
|
|
}
|
2018-12-21 15:05:11 +01:00
|
|
|
}
|