-
-
Notifications
You must be signed in to change notification settings - Fork 4.4k
fix issues/7796 #7797
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
base: develop
Are you sure you want to change the base?
fix issues/7796 #7797
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.
Pull Request Overview
This PR addresses bug fix #7796 by modifying the sort functionality to improve how data is ordered, including handling grouped data in bootstrap-table. Key changes include:
- Refactoring the sort function in src/utils/index.js to use a new signature and in-place array sorting.
- Updating initSort in src/bootstrap-table.js to handle custom sorting and grouping logic.
- Implementing grouping of data items when groupBy is enabled.
Reviewed Changes
Copilot reviewed 2 out of 2 changed files in this pull request and generated 1 comment.
File | Description |
---|---|
src/utils/index.js | Refactored sort method parameters and logic. |
src/bootstrap-table.js | Updated initSort to support groupBy and custom sorting. |
Comments suppressed due to low confidence (1)
src/utils/index.js:519
- [nitpick] Consider avoiding reassigning the 'name' parameter directly; assign header.sortNames[index] to a new variable to improve clarity in the sort logic.
if (header.sortNames[index]) {
Co-authored-by: Copilot <[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.
Pull Request Overview
This PR fixes bug #7796 by refactoring the sort functionality and introducing new handling for grouped data scenarios. Key changes include:
- Refactored the sort method in src/utils/index.js to sort the entire data array and use updated parameters.
- Modified initSort in src/bootstrap-table.js to support groupBy sorting when a groupBy field is provided.
Reviewed Changes
Copilot reviewed 2 out of 2 changed files in this pull request and generated 1 comment.
File | Description |
---|---|
src/utils/index.js | Refactored the sort function to operate on the full data set and update comparison logic. |
src/bootstrap-table.js | Updated sort function calls and added branch handling for grouped data sorting. |
Co-authored-by: Copilot <[email protected]>
🤔Type of Request
🔗Resolves an issue?
Fix #7796
📝Changelog
💡Example(s)?
before: https://live.bootstrap-table.com/code/EgorTrutnev/18772
after: https://live.bootstrap-table.com/code/EgorTrutnev/18776
☑️Self Check before Merge