argos/dmp-frontend/src/app/library/auto-complete/multiple/multiple-auto-complete-conf...

43 lines
1.7 KiB
TypeScript
Raw Normal View History

import { TemplateRef } from '@angular/core';
2018-07-24 13:19:52 +02:00
import { Observable } from 'rxjs';
2019-01-18 18:03:45 +01:00
import { AutoCompleteGroup } from '../auto-complete-group';
2018-07-24 13:19:52 +02:00
export interface MultipleAutoCompleteConfiguration {
// Delay for performing the request. Default: 200ms.
requestDelay?: number;
// Min characters for the filtering to be applied. Default: 3.
2018-07-24 13:19:52 +02:00
minFilteringChars?: number;
// Load and present items from start, without user query. Default: true.
loadDataOnStart?: boolean;
// Static or initial items.
initialItems?: (excludedItems: any[], data?: any) => Observable<any[]>;
2018-07-24 13:19:52 +02:00
// Data retrieval function
filterFn?: (searchQuery: string, excludedItems: any[]) => Observable<any[]>;
// Get selected items. Used when valueAssign is used so the full object can be retrieved for presentation.
getSelectedItems?: (selectedItems: any[]) => Observable<any[]>;
2018-07-24 13:19:52 +02:00
// Property formating for input
displayFn?: (item: any) => string;
2019-01-18 18:03:45 +01:00
// Function to group results in the drop down
groupingFn?: (items: any[]) => AutoCompleteGroup[];
// Display function for the drop down title
2018-07-24 13:19:52 +02:00
titleFn?: (item: any) => string;
2019-01-18 18:03:45 +01:00
// Display function for the drop down subtitle
2018-07-24 13:19:52 +02:00
subtitleFn?: (item: any) => string;
//Extra data passed to query function
extraData?: any;
// Callback to intercept value assignment based on item selection
valueAssign?: (selectedItem: any) => any;
// Property formating template
optionTemplate?: TemplateRef<any>;
// Selected value formating template
selectedValueTemplate?: TemplateRef<any>;
// Display icon that opens popup
popupItemActionIcon?: string;
autoSelectFirstOptionOnBlur?: boolean;
appendClassToItem?: {class: string, applyFunc: (item:any) => boolean}[];
2024-01-24 13:47:37 +01:00
canRemoveItem?: (selectedItem: any) => boolean;
2018-07-24 13:19:52 +02:00
}