// models import { SortColumn } from '../../../ca-sort-dropdown/models'; // interfaces import { IFleetFilterData } from '../../interfaces'; import { ICaInput } from '../../../ca-input/config'; export class FleetFilterConstants { static STORY_DATA_EXAMPLES: IFleetFilterData = { trailerCount: 13, truckCount: 2, trailers: [ { id: 251, trailerNumber: '12222', trailerType: { companyId: null, hasVolume: false, id: 1, logoName: 'ic_trailer_flatbed.svg', name: 'Flat Bed', }, }, { id: 252, trailerNumber: '12221', trailerType: { companyId: null, hasVolume: false, id: 2, logoName: 'ic_trailer_step-deck.svg', name: 'Flat Bed', }, }, { id: 253, trailerNumber: '12223', trailerType: { companyId: null, hasVolume: false, id: 1, logoName: 'ic_trailer_tanker-pneumatic.svg', name: 'Flat Bed', }, }, { id: 254, trailerNumber: '12225', trailerType: { companyId: null, hasVolume: false, id: 2, logoName: 'ic_trailer_flatbed.svg', name: 'Flat Bed', }, }, { id: 255, trailerNumber: '12224', trailerType: { companyId: null, hasVolume: false, id: 1, logoName: 'ic_trailer_flatbed.svg', name: 'Flat Bed', }, }, { id: 256, trailerNumber: '12229', trailerType: { companyId: null, hasVolume: false, id: 1, logoName: 'ic_trailer_flatbed.svg', name: 'Flat Bed', }, }, { id: 257, trailerNumber: '12227', trailerType: { companyId: null, hasVolume: false, id: 1, logoName: 'ic_trailer_flatbed.svg', name: 'Flat Bed', }, }, { id: 258, trailerNumber: '12228', trailerType: { companyId: null, hasVolume: false, id: 1, logoName: 'ic_trailer_flatbed.svg', name: 'Flat Bed', }, }, { id: 259, trailerNumber: '12222', trailerType: { companyId: null, hasVolume: false, id: 1, logoName: 'ic_trailer_flatbed.svg', name: 'Flat Bed', }, }, { id: 260, trailerNumber: '12222', trailerType: { companyId: null, hasVolume: false, id: 1, logoName: 'ic_trailer_flatbed.svg', name: 'Flat Bed', }, }, { id: 261, trailerNumber: '12222', trailerType: { companyId: null, hasVolume: false, id: 1, logoName: 'ic_trailer_flatbed.svg', name: 'Flat Bed', }, }, { id: 262, trailerNumber: '12222', trailerType: { companyId: null, hasVolume: false, id: 1, logoName: 'ic_trailer_flatbed.svg', name: 'Flat Bed', }, }, { id: 263, trailerNumber: '12222', trailerType: { companyId: null, hasVolume: false, id: 1, logoName: 'ic_trailer_flatbed.svg', name: 'Flat Bed', }, }, ], trucks: [ { id: 7, truckNumber: '8292', truckType: { id: 1, companyId: null, name: 'Semi Sleeper', logoName: 'ic_truck_semi-wSleeper.svg', }, }, { id: 40, truckNumber: '0408', truckType: { id: 2, companyId: null, name: 'Semi Sleeper', logoName: 'ic_truck_semi-wSleeper.svg', }, }, ], }; static SORT_COLUMNS: SortColumn[] = [ { name: 'Unit No.', sortName: 'unitNo', isDisabled: false, }, { name: 'Type', sortName: 'type', isDisabled: false, }, ]; static SEARCH_INPUT_CONFIG: ICaInput = { name: 'search', type: 'text', label: 'Search', placeholderIcon: 'ic_search', customClass: 'filter-search-input', placeholderInsteadOfLabel: true, blackInput: true, isDisabled: false, }; }