-
Notifications
You must be signed in to change notification settings - Fork 9.3k
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
Fixed a js bug where ui_component labels have the wrong sort order. #11846
Merged
okorshenko
merged 4 commits into
magento:2.2-develop
from
deiserh:fix-ui-component-wrong-sort-order
Nov 22, 2017
Merged
Changes from 1 commit
Commits
Show all changes
4 commits
Select commit
Hold shift + click to select a range
0f948ac
Fixed a js bug where ui_component labels have the wrong sort order.
deiserh 6f70d06
MAGETWO-83993: Fixed a js bug where ui_component labels have the wron…
omiroshnichenko 8f52242
Merge branch '2.2-develop' of github.com:magento/magento2 into fix-ui…
omiroshnichenko c464951
Merge branch '2.2-develop' of github.com:magento/magento2 into fix-ui…
omiroshnichenko File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -548,6 +548,13 @@ define([ | |
}); | ||
|
||
this.labels.push(data); | ||
|
||
/** | ||
* Sort the array after an element was added to fix an bug where | ||
* additional added field labels in ui_components haven't the right | ||
* sort order. | ||
*/ | ||
this.labels.sort(this._compare); | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Could you, please, move push and sort calls outside of loop for performance improvement. Also, I think it's better to use initHeader: function () {
var labels = [],
data;
if (!this.labels().length) {
_.each(this.childTemplate.children, function (cell) {
data = this.createHeaderTemplate(cell.config);
cell.config.labelVisible = false;
_.extend(data, {
label: cell.config.label,
name: cell.name,
required: !!cell.config.validation,
columnsHeaderClasses: cell.config.columnsHeaderClasses,
sortOrder: cell.config.sortOrder
});
labels.push(data);
}, this);
this.labels(_.sortBy(labels, 'sortOrder'));
}
} |
||
}, this); | ||
} | ||
}, | ||
|
@@ -914,6 +921,24 @@ define([ | |
})); | ||
}, | ||
|
||
/** | ||
* Compare two objects by the sortOrder property. | ||
* | ||
* @param {Object} $object1 | ||
* @param {Object} $object2 | ||
* @returns {Number} | ||
* @private | ||
*/ | ||
_compare: function ($object1, $object2) { | ||
if ($object1.sortOrder > $object2.sortOrder) { | ||
return 1; | ||
} else if ($object1.sortOrder < $object2.sortOrder) { | ||
return -1; | ||
} | ||
|
||
return 0; | ||
}, | ||
|
||
/** | ||
* Set new data to dataSource, | ||
* delete element | ||
|
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.
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.
It's would be nice if you will mark dynamic-rows-tier-price.js as deprecated, because it was created by mistake for fix same issue, but just for tier price functionality.