Log error in index

This commit is contained in:
Tom Coleman 2023-02-16 15:50:09 +11:00
parent 1b99fc225d
commit 978a0f53b6

View File

@ -103,6 +103,9 @@ export class StoryIndexGenerator {
// - the preview changes [not yet implemented]
private lastIndex?: StoryIndex;
// Same as the above but for the error case
private lastError?: Error;
constructor(
public readonly specifiers: NormalizedStoriesSpecifier[],
public readonly options: {
@ -487,11 +490,13 @@ export class StoryIndexGenerator {
async getIndex() {
if (this.lastIndex) return this.lastIndex;
if (this.lastError) throw this.lastError;
// Extract any entries that are currently missing
// Pull out each file's stories into a list of stories, to be composed and sorted
const storiesList = await this.ensureExtracted();
try {
const firstError = storiesList.find((entry) => entry.type === 'error');
if (firstError) throw (firstError as ErrorEntry).err;
@ -529,6 +534,12 @@ export class StoryIndexGenerator {
};
return this.lastIndex;
} catch (err) {
this.lastError = err;
logger.warn(`🚨 Couldn't fetch index`);
logger.warn(this.lastError.stack);
throw this.lastError;
}
}
invalidate(specifier: NormalizedStoriesSpecifier, importPath: Path, removed: boolean) {
@ -567,6 +578,7 @@ export class StoryIndexGenerator {
cache[absolutePath] = false;
}
this.lastIndex = null;
this.lastError = null;
}
async getStorySortParameter() {