Key Features:
Flexible Filtering: Create custom filters using the built-in FilterBuilder or define complex conditions using a custom filter syntax. The plugin supports logical operators (AND, OR), grouping, and various comparison operators (=, !=, >, <, etc.).
Example: Using custom filter syntax:
CustomFilterSyntax: "Status = 'Active' AND (Category = 'Technology' OR Category = 'Science')"
Full-Text Search: Perform full-text searches across specified fields using the fullTextSearch and fullTextSearchFields parameters to locate records containing specific text.
Example: To search for records containing the word "Freshly" in the fields Name and Description:
fullTextSearch: 'Freshly', fullTextSearchFields: 'Name, Description'
This will generate a search condition like:
SEARCH('Freshly', {Name}) > 0 OR SEARCH('Freshly', {Description}) > 0
The plugin will combine this condition with any other filters provided, allowing for powerful and flexible searches.
Caching: Utilize the CacheHelper to store query results in the browser's local storage for quick retrieval, minimizing the number of API requests. The cache time-to-live (TTL) is fully configurable.
Lazy Loading: Supports lazy loading of data for infinite scrolling, improving performance for large datasets by fetching data only when needed.
View and Field Selection: Select specific views and fields to fetch only the relevant data from Airtable, reducing response size and improving efficiency.
Event Handling: Includes events for loadingstart, loadingend, and loadingerror to allow easy UI integration for load indicators and error handling.
Debug Mode: A debug mode is available to help developers see the query options being used, making troubleshooting easier.
Bubble Editor:
https://bubble.io/page?id=plugindepartment&tab=tabs-1&name=airtable-connector-pro&type=pagePlease, do not use this plugin for displaying sensitive data. As the loading happens on the client's side, the API key for reading the data is exposed.
We care about privacy of your data so we do not recommend using this plugin with secret information.