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

Fixes #37382 - Update to jQuery 3 #10138

Open
wants to merge 1 commit into
base: develop
Choose a base branch
from

Conversation

@MariaAga MariaAga requested a review from a team as a code owner April 24, 2024 12:46
@github-actions github-actions bot added UI Legacy JS PRs making changes in the legacy Javascript stack labels Apr 24, 2024
@ekohl
Copy link
Member

ekohl commented Apr 24, 2024

I don't see a bump of jquery itself. Is this removing deprecated jquery < 3 usages?

@MariaAga
Copy link
Member Author

@ekohl jquery is in theforeman/foreman-js#479

Comment on lines 172 to 233
$('#check_all_roles').click(function(e) {
$('#check_all_roles').on('click', function(e) {
e.preventDefault();
$('.role_checkbox').prop('checked', true);
});

$('#uncheck_all_roles').click(function(e) {
$('#uncheck_all_roles').on('click', function(e) {
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I think these are both unused since acfbc45. There the links with check_all_roles and uncheck_all_roles IDs were removed. They were originally added in feacea3.

I've submitted #10141 to drop them.

I also noticed toggleRowGroup, filter_permissions and typeToIcon are now unused.

Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

rebased to include that pr

@@ -1,11 +1,12 @@
group :assets do
gem 'jquery-ui-rails', '~> 6.0'
gem 'jquery-ui-rails', '~> 7.0'
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Do we still use this? I don't see anything using this. I get the impression that since b55d3ed it's unused because we no longer have require jquery-ui in the code, but we do still have @import jquery-ui. So we load the CSS, but not any of the actual JS code?

Can we drop it?

Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I think so #10142

$.fn.bind = function(event, func) {
return this.on(event, func);
};
// used by puppet plugin
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Perhaps open a PR against foreman_puppet to drop this usage?

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
Legacy JS PRs making changes in the legacy Javascript stack Not yet reviewed UI
Projects
None yet
2 participants