-
Notifications
You must be signed in to change notification settings - Fork 62
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
Editor Performance Rework #3290
Merged
Merged
Conversation
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
🤖 Pull request artifacts
|
# Conflicts: # src/block/carousel/edit.js
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
This PR is a refactor of how the block styles are generated. There are the major changes in this PR:
BlockCss
component will be deprecated, instead of using a ReactJS Component to generate styles, we will now have a single class / object that should be able to generate CSS styles faster. This requires a rewrite of allBlockCss
components into function calls.save.js
will be removed so that there is zero CSS computations performed during block saving. Instead, CSS style generation will only be done inedit.js
when attributes are being changed.useBlockContext
(our own hook) and replaced it withuseSelect
usinggetBlockRootClientId
andgetBlockOrder
minifyCSS
call when saving CSSuseAttributeEditHandlers
is replaced withgetAttributeNameFunc
to prevent rerendersBlock Changes
These changes will need to be applied across all Stackable blocks:
edit.js
useGeneratedCss( props.attributes )
<BlockStyles />
component, and replace with a hook that generates the editor css:save.js
generatedCss
:style.js
<BlockCss />
components toBlockStyleGenerator
objectmemo
s and replace components with the newBlockStyleGenerator
methods:This is assuming we're built
Advanced.Style.addStyles
BlockStyles.Content
Block Component Changes
<BlockCss />
components toBlockStyleGenerator
objectOther Optimizations Implemented
AdvancedRangeControl:
useEffect
useEffect
anduseLayoutEffect
for computing dynamic placeholder valuesuseBlockContext
useGeneratedCss
hook insrc/block-components/style/use-generated-css.js
<BlockCss />
componentuseBlockCssGenerator
, we have 2 hooks one for edit and one for save, maybe we can share the process somehow so as not to compute things twice. e.g. do not minify the saved css (maybe leave that to PHP instead, or don't) so that we can improve performanceScreen.Recording.2024-08-15.at.8.30.44.AM.mov
fixes #3261