A library containing common utilities and helpers for extractors.
npm i @flatfile/util-extractor
The @flatfile/util-extractor
utility is designed to handle various file formats and extract structured data efficiently. It leverages the power of the Flatfile API to facilitate smooth data extraction and processing.
When embedding Flatfile, this plugin should be deployed in a server-side listener. Learn more
This code defines a shared utility used in Flatfile Extractor plugins for data extraction. The purpose of this utility is to process files and extract structured data from them using the Flatfile API. It leverages various Flatfile SDK components and utilities (@flatfile/util-file-buffer to perform the data extraction process efficiently. Let's break down the main components of the code:
FlatfileListener
from @flatfile/listener
, fileBuffer
from @flatfile/util-file-buffer
, api
and Flatfile
from @flatfile/api
, and mapValues
from remeda
.Extractor
function is the main entry point of the utility. It takes three parameters:
fileExt
: A string or regular expression representing the file extension(s) to be processed.parseBuffer
: A callback function that processes the file buffer and returns a WorkbookCapture
.options
: An optional object containing additional configuration options for data extraction.
options.chunkSize
: Specifies the quantity of Records per chunk. Default value is 10_000
.options.parallel
: Determines how many chunks are processed simultaneously. Default value is 1
.Extractor
function, a FlatfileListener is used to intercept files with the specified extensions and perform the extraction process.parseBuffer
function is then called to extract data from the file buffer using the provided options.createWorkbook
function. The workbook is then updated with sheets containing the extracted data.createWorkbook
: Creates a Flatfile workbook based on the extracted data.getWorkbookConfig
: Generates the configuration for the workbook, including sheet names, fields, and constraints.getSheetConfig
: Generates the configuration for each sheet, including field names, labels, and constraints.asyncBatch
: A utility function that processes data in chunks asynchronously to improve performance.WorkbookCapture
and SheetCapture
. These types represent the structure of captured workbooks and sheets.