-
Notifications
You must be signed in to change notification settings - Fork 1
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
Highlight insecure element and scroll to it #73
Conversation
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
src/js/gutenberg.js
Outdated
@@ -1,6 +1,10 @@ | |||
import { debounce } from 'underscore'; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
There are a few items in use in this file that are not listed in the dependencies (jQuery, apiRequest, domReady). Some of these are legacy issues but it would be good to add them to ensure this update doesn't end up changing the order in which files are included.
insecure-content-warning/includes/assets.php
Lines 34 to 40 in 42a8fbf
wp_enqueue_script( | |
'insecure-content-gutenberg', | |
INSECURE_CONTENT_URL . 'dist/js/gutenberg.js', | |
array( 'wp-components', 'wp-data', 'wp-dom', 'wp-editor', 'wp-element', 'wp-edit-post', 'wp-i18n', 'wp-plugins' ), | |
INSECURE_CONTENT_VERSION, | |
true | |
); |
🔢 To avoid a duplicate comment, are you able to review both JS files dependencies?
insecure-content-warning/includes/assets.php
Lines 60 to 66 in 42a8fbf
wp_enqueue_script( | |
'insecure-content-admin', | |
INSECURE_CONTENT_URL . 'dist/js/classic-editor.js', | |
array( 'wp-i18n' ), | |
INSECURE_CONTENT_VERSION, | |
true | |
); |
From the original issue report and discussion, the highlight expected to happen on an explicit action. Thanks to your demo, it looks like we should avoid highlighting multiple items at a time, I will add "blur all" action before highlighting new element. |
Co-authored-by: Peter Wilson <[email protected]>
Added a note about multiple elements with the same URL to PR description |
The changes are working as expected, only one image is highlighted at a time. I did notice in the block editor that the code will no longer scroll to an element if the post is unsaved. Again a gif to demonstrate: The steps I am taking are:
I am on leave next week so you'll need to reassign this issue for review. |
This reverts commit c6cedbe.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This is now working as expected, are you able to take a look at this earlier comment about dependencies to ensure all required files are listed for the JS files?
This reverts commit b7c1597.
@peterwilsoncc I've added Webpack Dependency Extractor Plugin to handle with dependencies |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Sorry Max, one final thing due to the dependency extractor not including underscore.
Co-authored-by: Peter Wilson <[email protected]>
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Thanks Max, I checked the built assets and they now include underscore.
The eslint and dependency failures look to be coming from elsewhere so I don't think they need to block merge.
@dkotter will leave it up to you if you want to merge this in ahead of the 1.0.3 release or not |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Still happy with this.
For some reason the eslint and cypress jobs have started failing since I last looked at this repo. I did a quick test in another branch and it seems unrelated to this PR.
Description of the Change
Adds "View element" button, which scrolls editor to the element with insecure content. The element is highlighted with the red outline.
Works both in Classic and Block editor.
The outline is cleared before every new content check, post save or preview.
Closes #9
Verification Process
highlight-scroll.mp4
Possible Drawbacks
The original tracking design doesn't allow to identify exact element/block which refers to insecure content. We only have list of URLs, which is used in this PR to find elements in the editor.
If the content have multiple elements with the same URL, multiple items with this URL will be added to the warning block. But any "View element" link from the identical URLs will only scroll/highlight the first element.
Checklist:
Changelog Entry
Credits
Props @cadic, @psorensen, @adamsilverstein, @dkotter