Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[Inserter]: Try fix media tab when upload of media types has been disabled #46676

Merged
merged 1 commit into from
Dec 22, 2022
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -66,14 +66,15 @@ export function useMediaCategories( rootClientId ) {
per_page: 1,
_fields: [ 'id' ],
};
const [ image, video, audio ] = await Promise.all( [
const [ image, video, audio ] = await Promise.allSettled( [
fetchMedia( { ...query, media_type: 'image' } ),
fetchMedia( { ...query, media_type: 'video' } ),
fetchMedia( { ...query, media_type: 'audio' } ),
] );
const showImage = canInsertImage && !! image.length;
const showVideo = canInsertVideo && !! video.length;
const showAudio = canInsertAudio && !! audio.length;
// The `value` property is only present if the promise's status is "fulfilled".
const showImage = canInsertImage && !! image.value?.length;
const showVideo = canInsertVideo && !! video.value?.length;
const showAudio = canInsertAudio && !! audio.value?.length;
setCategories(
MEDIA_CATEGORIES.filter(
( { mediaType } ) =>
Expand Down