-
Notifications
You must be signed in to change notification settings - Fork 4.2k
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
Reduce Requests for the gallery block #10994
Comments
This doesn't feel like an urgent fix is needed, just an optimisation that might not be as simple as it first looks (although someone far more familiar with the gallery code might be able to point where to look..) Would a better option be to preload images contained within galleries when editing posts? That would still cause these extra API requests when inserting a gallery, but seems like it'll be better for editing image heavy posts. An example of that being done is this hacky approach (A better approach would be to use the parsed block data, but I didn't immediately see how to get that data)
|
@dd32 I completely agree, this is a bit of an optimization more than an urgent fix. Your assumption about this not being as simple as it first looks is absolutely correct. I spent some time going through it the last few days and my guess for the multiple requests is because the following is called for each image instance added to the gallery: gutenberg/packages/block-library/src/gallery/gallery-image.js Lines 144 to 151 in 07d27f4
The map that is calling that component is here: gutenberg/packages/block-library/src/gallery/edit.js Lines 246 to 259 in 07d27f4
It would require a rethinking of how to create a gallery image for each image returned from the modal. I'd say lets leave this in the 5.0 milestone and we can reevaluate in the next week or so if this should be in a 5.0.x instead. Maybe someone has some ideas? :) |
Another Challenge ist that if the gallery has more than 100 Images the API calls must be separated into two calls because of the API-limits. @antpb @dd32 of cause this is just a optimization but don't this this is completely unimportant. I testet the gallery one of my pages that uses the gallery very much. The gallery contains 72 images 30 seconds pass between the first Media API Call and the Last Media API Call. All Calls combined into one take only 1.5 seconds. A load time > 30 Seconds makes the Editor un usable. |
That's one of the reasons that I think pre-loading the API calls for any galleries would be beneficial, that way the API calls aren't needed as they'd be bulk loaded with the post - Assuming that's performant with a gallery of that size |
Moving to |
Hi, My server is hitting some Would some sort of lazy loading of the galleries be possible to help alleviate this? |
Hi! I have a travel blog and recently started using Gutenberg. I write very long, detailed posts and this week I experimented for the first time with Gutenberg, the new blocks system and Jetpack Galleries, and it has been, unfortunately, a horrible experience :( The post is very long (>30.000 words, >500 images), during the writing, there was usually a 2-5 seconds lag between the keyword input and seeing it on screen, making it very unusable. Everything in general worked so so so so slow it was very difficult to use. I managed to finish the post and published it (you can check it here) but now I CAN NOT edit the post. Whenever I try to open it in the wordpress editor, it keeps loading for minutes and my CPU goes 100% non-stop. If I open the Chrome Dev Tools, I can see in the network tab endless requests to /wp-json/wp/v2/media/ . You can see a video recording here of it, this is after minutes open: https://drive.google.com/file/d/1ZTloy4Q_jsAdeQ-tRTTGE4RRRD84mPkQ/view?usp=sharing (after that, it eventually stopped without even showing anything on screen. I'm writing here as I was looking for possible causes and these requests may be related. I've been using wordpress in this blog since 6-7 years ago, I have several others long posts with also lots of images (although without jetpack galleries) and haven't had issues until know. All the forums I check ask to deactivate all plugins, which is unrealistic as this is a live getting-traffic site and I prefer not to do that. Any clues? Is this something more people are experiencing? Is Jetpack safe to use with Gutenberg? I'm using the Newspack theme (https://newspack.pub/ ) and everything up to date (wordpress core, all the plugins, etc.) Thanks in advance! |
I'm still trying to make sense of this, I've tried to install a REST API cache plugin (this specifically https://wordpress.org/plugins/wp-rest-cache/ ) but it didn't make any difference. All the requests to /wp-json/wp/v2/media/ keep firing and take around 1s each to load. Is there any possibility to force a stop of those request (so I can open and edit the post!) and/or to only fire the requests for each specific gallery when the gallery is being edited? |
@christianoliveira I did some digging in the code and I think the main issue here is that a gallery is handled by the code as a bunch of separate images. And for each image a separate API call is done to retrieve the info needed. This is not easily solved by a cache plugin I guess, but I don't know the plugin your using. @dd32 @antpb the current priority is "low". I also see a lot of "refactoring" issues for the gallery code. Is it possible to somewhere include this performance issue into the refactoring being done? Thanks! |
@joostdekeijzer thanks for the fast response and for looking into ti! The cache plugin is specifically for the REST API, so if it works (which I assume is not working in my case, I need to review it further) if should make those "/wp-json/wp/v2/media/" requests faster by avoiding querying the database (now, at least in my case, each /wp-json/wp/v2/media/ requests takes 1s average to load so it completely freezes my browser until it finishes if it does, as the post has lots of galleries and images. Still not optimal but I was hoping to at least be able to edit the post at this point. I understand this may not be urgent, but it's so frustating as a user see that a "simple" functionality turns wordpress almost completely impossible to use. Also I'm worried that all the manual work invested into creating those galleries will maybe be for nothing as if there is no solution, I will have to try deleting the galleries :( Also, seeing the last replies, this was an issue already 2-3 years ago! |
Wouldn't it make sense to look into pagination or something like "load more" while working on this? |
Describe the bug
The Gallery Block fires a GET request for each image that is uses in the gallery. This does not only happen when an image is added to the gallery at the first time but also when the edit screen is reloaded.
This is not a problem when only a few image are in a gallery but this can really become a problem when many images are added.
To Reproduce
Steps to reproduce the behavior:
Expected behavior
Instead firing a request for each image all requests should be combined into one.
So instead of this request:
the requests should be combined into this request:
The text was updated successfully, but these errors were encountered: