diff --git a/lib/api/src/modules/refs.ts b/lib/api/src/modules/refs.ts index f67754215e1..8b5452f6594 100644 --- a/lib/api/src/modules/refs.ts +++ b/lib/api/src/modules/refs.ts @@ -15,9 +15,11 @@ export interface SubState { type Versions = Record; -export type SetRefData = Omit & { - stories?: StoriesRaw; -}; +export type SetRefData = Partial< + Omit & { + stories?: StoriesRaw; + } +>; export interface SubAPI { findRef: (source: string) => ComposedRef; @@ -48,12 +50,12 @@ export type RefUrl = string; // eslint-disable-next-line no-useless-escape const findFilename = /(\/((?:[^\/]+?)\.[^\/]+?)|\/)$/; -const allSettled = (promises: Promise[]) => +const allSettled = (promises: Promise[]): Promise<(Response | false)[]> => Promise.all( - promises.map((promise, i) => + promises.map((promise) => promise.then( - (r) => (r.ok ? r : false), - () => false + (r) => (r.ok ? r : (false as const)), + () => false as const ) ) ); @@ -123,7 +125,7 @@ export const init: ModuleFn = ({ store, provider, fullAPI }) => { checkRef: async (ref) => { const { id, url } = ref; - const loadedData: { error?: Error; stories?: StoriesRaw } = {}; + const loadedData: { error?: Error; stories?: StoriesRaw; loginUrl?: string } = {}; const [included, omitted, iframe] = await allSettled([ fetch(`${url}/stories.json`, { @@ -144,7 +146,7 @@ export const init: ModuleFn = ({ store, provider, fullAPI }) => { }), ]); - const handle = async (request: Promise | false) => { + const handle = async (request: Response | false): Promise => { if (request) { return Promise.resolve(request) .then((response) => (response.ok ? response.json() : {})) @@ -168,10 +170,11 @@ export const init: ModuleFn = ({ store, provider, fullAPI }) => { `, } as Error; } else if (omitted || included) { - const credentials = !omitted ? 'include' : 'omit'; + const credentials = included ? 'include' : 'omit'; - const [stories, metadata] = await Promise.all([ - handle(omitted || included), + const [stories, storiesWithAuth, metadata] = await Promise.all([ + handle(omitted), + handle(included), handle( fetch(`${url}/metadata.json`, { headers: { @@ -180,10 +183,14 @@ export const init: ModuleFn = ({ store, provider, fullAPI }) => { credentials, cache: 'no-cache', }) - ), + ).then((r: SetRefData) => (r?.error?.message === 'Failed to fetch' ? {} : r)), ]); - Object.assign(loadedData, { ...stories, ...metadata }); + Object.assign(loadedData, { ...stories, ...storiesWithAuth, ...metadata }); + + if (storiesWithAuth && !storiesWithAuth.loginUrl) { + delete loadedData.loginUrl; + } } api.setRef(id, { diff --git a/lib/api/src/version.ts b/lib/api/src/version.ts index 6cd5db8e8dc..058e3f1f548 100644 --- a/lib/api/src/version.ts +++ b/lib/api/src/version.ts @@ -1 +1 @@ -export const version = '6.0.0-beta.29'; +export const version = '6.0.0-beta.30'; diff --git a/lib/ui/src/components/sidebar/Refs.tsx b/lib/ui/src/components/sidebar/Refs.tsx index a3b5f31224a..ed83ea7a7d1 100644 --- a/lib/ui/src/components/sidebar/Refs.tsx +++ b/lib/ui/src/components/sidebar/Refs.tsx @@ -77,7 +77,7 @@ export const Ref: FunctionComponent = (ref) => { const isLoading = isLoadingMain || isLoadingInjected || ref.type === 'unknown'; const isError = !!error; const isEmpty = !isLoading && length === 0; - const isAuthRequired = !!loginUrl; + const isAuthRequired = !!loginUrl && length === 0; const state = getStateType(isLoading, isAuthRequired, isError, isEmpty);