All files / app/constants trip-filter.constants.ts

90.47% Statements 76/84
100% Branches 12/12
66.66% Functions 6/9
90.47% Lines 76/84

Press n or j to go to the next uncovered block, b, p or k for the previous block.

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 851x 1x 1x 1x 1x 1x 1x 1x                 1x 1x 1x 1x 1x 1x 1x 1x 448x 448x 168x 448x 168x 448x 112x 448x 1x 1x 1x 1x 1x 1x 1x 1x 448x 448x 168x 448x 168x 448x 112x 448x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x  
import { LabelType } from '@angular-slider/ngx-slider';
 
export const personOptionDetails = {
	floor: 0,
	ceil: 10000,
	getPointerColor: () => '#02A388',
	getSelectionBarColor: () => '#02A388',
	translate: (value: number, label: LabelType): string => {
		switch (label) {
			case LabelType.Low:
				return '$' + value;
			case LabelType.High:
				return '$' + value;
			default:
				return '$' + value;
		}
	},
};
export const dayOptionDetails = {
    floor: 0,
    ceil: 1000,
    getPointerColor: () => '#02A388',
    getSelectionBarColor: () => '#02A388',
    translate: (value: number, label: LabelType): string => {
        switch (label) {
            case LabelType.Low:
                return '$' + value;
            case LabelType.High:
                return '$' + value;
            default:
                return '$' + value;
        }
    },
};
export const daysOptionDetails = {
    floor: 1,
    ceil: 25,
    getPointerColor: () => '#02A388',
    getSelectionBarColor: () => '#02A388',
    translate: (value: number, label: LabelType): string => {
        switch (label) {
            case LabelType.Low:
                return String(value);
            case LabelType.High:
                return String(value);
            default:
                return String(value);
        }
    },
};
 
export const showFavoriteList = [
    {
        name: 'Europe',
        status: false,
    },
    {
        name: 'Duration is 5 - 21+ day',
        status: false,
    },
    {
        name: 'Regions is Vienna',
        status: false,
    },
    {
        name: 'Family Friendly',
        status: false,
    },
    {
        name: 'Budget is €2,500 - 8,000',
        status: false,
    },
];
 
export const allThemesList = [
    'Jewish History',
    'Cruises',
    'Small Towns & Countryside',
    'Outdoor Active',
    'WW2',
    'Culture',
    'Family Friendly',
    'Food & Culinary',
];