status,
mediaInfo
} = props;
const { title } = mediaInfo;
switch (status) {
case FetchStatus.LONG_LOADING:
case FetchStatus.LOADING:
return (title ? (
<VideoInfoOnIndexPageComponent
{...props}
/>
) : <VideoLoaderComponent/>);
case FetchStatus.READY:
case FetchStatus.PREVIEW:
return (
<VideoInfoOnIndexPageComponent
{...props}
/>
);
case FetchStatus.ERROR:
return (title ? (
<VideoInfoOnIndexPageComponent
{...props}
/>
) : (
<VideoErrorComponent errorReason={props.errorReason}/>
));
case FetchStatus.IDLE:
return null;
default:
return <VideoLoaderComponent/>;
}
};
спасибо
Обсуждают сегодня