27 lines
682 B
JavaScript
27 lines
682 B
JavaScript
/**
|
|
* Computed properties module exports
|
|
*
|
|
* Note: These computed properties are defined inline in the main app.js
|
|
* due to their tight coupling with reactive state. This module serves as
|
|
* a placeholder for future extraction if needed.
|
|
*/
|
|
|
|
// Computed properties that could be extracted:
|
|
// - filteredRecordings
|
|
// - groupedRecordings
|
|
// - highlightedTranscript
|
|
// - activeRecordingMetadata
|
|
// - identifiedSpeakers
|
|
// - processedTranscription
|
|
// - totalInQueue
|
|
// - completedInQueue
|
|
// - finishedFilesInQueue
|
|
// - isMobileScreen
|
|
// - datePresetOptions
|
|
// - languageOptions
|
|
// - tagsWithCustomPrompts
|
|
// - filteredAvailableTagsForModal
|
|
// - isMobileDevice
|
|
|
|
export default {};
|