src/lib/models/cut.model.ts
Cut for specifying filters on event data attribute.
Properties |
|
Methods |
constructor(field: string, minValue: number, maxValue: number, step: number, minCutActive: boolean, maxCutActive: boolean)
|
||||||||||||||||||||||||||||
Defined in src/lib/models/cut.model.ts:17
|
||||||||||||||||||||||||||||
Create the cut to filter an event data attribute.
Parameters :
|
Public Optional configRangeSlider |
Type : ConfigRangeSlider
|
Defined in src/lib/models/cut.model.ts:17
|
Range slider for Cut |
Private defaultApplyMaxValue |
Type : boolean
|
Defined in src/lib/models/cut.model.ts:13
|
Default if upper bound applied |
Private defaultApplyMinValue |
Type : boolean
|
Defined in src/lib/models/cut.model.ts:15
|
Default if lower bound applied |
Private defaultMaxValue |
Type : number
|
Defined in src/lib/models/cut.model.ts:11
|
Default maximum allowed value of the event data attribute. |
Private defaultMinValue |
Type : number
|
Defined in src/lib/models/cut.model.ts:9
|
Default minimum allowed value of the event data attribute. |
Public field |
Type : string
|
Defined in src/lib/models/cut.model.ts:29
|
Name of the event data attribute to be filtered.
|
Public maxCutActive |
Type : boolean
|
Default value : true
|
Defined in src/lib/models/cut.model.ts:34
|
If true, the maximum cut is appled. Can be overriden later with enableMaxCut.
|
Public maxValue |
Type : number
|
Defined in src/lib/models/cut.model.ts:31
|
Maximum allowed value of the event data attribute.
|
Public minCutActive |
Type : boolean
|
Default value : true
|
Defined in src/lib/models/cut.model.ts:33
|
If true, the minimum cut is appled. Can be overriden later with enableMinCut.
|
Public minValue |
Type : number
|
Defined in src/lib/models/cut.model.ts:30
|
Minimum allowed value of the event data attribute.
|
Public step |
Type : number
|
Default value : 1
|
Defined in src/lib/models/cut.model.ts:32
|
Size of increment when using slider.
|
cutPassed | ||||||
cutPassed(value: number)
|
||||||
Defined in src/lib/models/cut.model.ts:53
|
||||||
Returns true if the passed value is within the active cut range.
Parameters :
Returns :
boolean
|
enableMaxCut | ||||||
enableMaxCut(check: boolean)
|
||||||
Defined in src/lib/models/cut.model.ts:43
|
||||||
Returns true if upper cut is valid.
Parameters :
Returns :
void
|
enableMinCut | ||||||
enableMinCut(check: boolean)
|
||||||
Defined in src/lib/models/cut.model.ts:48
|
||||||
Returns true if upper cut is valid.
Parameters :
Returns :
void
|
Public getConfigRangeSlider | ||||||||
getConfigRangeSlider(collectionFiltering: () => void)
|
||||||||
Defined in src/lib/models/cut.model.ts:82
|
||||||||
Builds a config range slider for the cut to be used in Phoenix Menu
Parameters :
Returns :
ConfigRangeSlider
config range slider for the cut to be used in Phoenix Menu |
reset |
reset()
|
Defined in src/lib/models/cut.model.ts:63
|
Reset the minimum and maximum value of the cut to default.
Returns :
void
|
import { PrettySymbols } from '../../helpers/pretty-symbols';
import { ConfigRangeSlider } from '../../managers/ui-manager/phoenix-menu/config-types';
/**
* Cut for specifying filters on event data attribute.
*/
export class Cut {
/** Default minimum allowed value of the event data attribute. */
private defaultMinValue: number;
/** Default maximum allowed value of the event data attribute. */
private defaultMaxValue: number;
/** Default if upper bound applied */
private defaultApplyMaxValue: boolean;
/** Default if lower bound applied */
private defaultApplyMinValue: boolean;
/** Range slider for Cut */
public configRangeSlider?: ConfigRangeSlider;
/**
* Create the cut to filter an event data attribute.
* @param field Name of the event data attribute to be filtered.
* @param minValue Minimum allowed value of the event data attribute.
* @param maxValue Maximum allowed value of the event data attribute.
* @param step Size of increment when using slider.
* @param minCutActive If true, the minimum cut is appled. Can be overriden later with enableMinCut.
* @param maxCutActive If true, the maximum cut is appled. Can be overriden later with enableMaxCut.
*
*/
constructor(
public field: string,
public minValue: number,
public maxValue: number,
public step: number = 1,
public minCutActive: boolean = true,
public maxCutActive: boolean = true,
) {
this.defaultMinValue = minValue;
this.defaultMaxValue = maxValue;
this.defaultApplyMinValue = minCutActive;
this.defaultApplyMaxValue = maxCutActive;
}
/** Returns true if upper cut is valid. */
enableMaxCut(check: boolean) {
this.maxCutActive = check;
}
/** Returns true if upper cut is valid. */
enableMinCut(check: boolean) {
this.minCutActive = check;
}
/** Returns true if the passed value is within the active cut range. */
cutPassed(value: number): boolean {
return (
(!this.maxCutActive || value <= this.maxValue) &&
(!this.minCutActive || value > this.minValue)
);
}
/**
* Reset the minimum and maximum value of the cut to default.
*/
reset() {
this.minValue = this.defaultMinValue;
this.maxValue = this.defaultMaxValue;
this.minCutActive = this.defaultApplyMinValue;
this.maxCutActive = this.defaultApplyMaxValue;
// Reset the config range slider
if (this.configRangeSlider != undefined) {
this.configRangeSlider.enableMin = true;
this.configRangeSlider.enableMax = true;
this.configRangeSlider.value = this.minValue;
this.configRangeSlider.highValue = this.maxValue;
}
}
/**
* Builds a config range slider for the cut to be used in Phoenix Menu
* @param collectionFiltering callback function to apply to all objects inside a collection, filtering them given a parameter
* @returns config range slider for the cut to be used in Phoenix Menu
*/
public getConfigRangeSlider(
collectionFiltering: () => void,
): ConfigRangeSlider {
if (this.configRangeSlider == undefined) {
this.configRangeSlider = {
type: 'rangeSlider',
label: PrettySymbols.getPrettySymbol(this.field),
min: this.minValue,
max: this.maxValue,
step: this.step,
value: this.minValue,
highValue: this.maxValue,
enableMin: this.minCutActive,
enableMax: this.maxCutActive,
onChange: ({ value, highValue }) => {
this.minValue = value;
this.maxValue = highValue;
collectionFiltering();
},
setEnableMin: (checked: boolean) => {
this.enableMinCut(checked);
collectionFiltering();
},
setEnableMax: (checked: boolean) => {
this.enableMaxCut(checked);
collectionFiltering();
},
};
}
return this.configRangeSlider;
}
}