Skip to main content

Type Alias: GetTabFiles()

GetTabFiles = (tabId) => Promise<Nullable<TabFileItem[]>>

Function

Retrieves downloadable files associated with a specific product tab.

This method fetches all available files for a given tab based on the current product configuration. Files may include documentation, specifications, installation guides, CAD files, or other product-related resources that supplement the visual configuration.

The result includes complete file metadata such as names, sizes in human-readable format, and paths - everything needed to present a file list to users and enable downloads.

Parameters

tabId

string

Unique identifier for the tab containing the files

Returns

Promise<Nullable<TabFileItem[]>>

A promise resolving to an array of file objects, each containing metadata like fileName, s3Path, size, extension, etc.

Example

// Fetch files for the "Documentation" tab
const files = await window.mimeeqApp.actions.getTabFiles('docs_tab_123');

// Display files in a list with download buttons
const fileList = document.getElementById('file-list');
fileList.innerHTML = '';

files.forEach(file => {
const listItem = document.createElement('li');
listItem.innerHTML = `
<span>${file.fileName}</span>
<span>${file.size}</span>
<button onclick="downloadFile('${file.s3Path}', '${file.fileName}')">
Download
</button>
`;
fileList.appendChild(listItem);
});