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

AdvancedCollection inserts element at wrong position when the element is added at the end of the source collection #317

Closed
24 tasks
abdes opened this issue Jan 16, 2024 · 5 comments

Comments

@abdes
Copy link
Contributor

abdes commented Jan 16, 2024

Describe the bug

In AdvancedCollection.cs,

        private bool HandleItemAdded(int newStartingIndex, object newItem, int? viewIndex = null)
        {
...
                else if (newStartingIndex == _source.Count - 1)
                {
                    newViewIndex = _view.Count - 1;
                }
...
}

When an item is added at the end of the source collection (i.e. _source.Count -1), the AdvancedCollection will insert it at the position _view.Count - 1, which is the position just before the last item in the view. This is not correct and results in the items order not respecting the source collection order, if the view does not use sorting.

Steps to reproduce

Please refer to the source code above, it's obvious.

Expected behavior

The expected behavior is that the item is added at the end of the collection.

Screenshots

No response

Code Platform

  • UWP
  • WinAppSDK / WinUI 3
  • Web Assembly (WASM)
  • Android
  • iOS
  • MacOS
  • Linux / GTK

Windows Build Number

  • Windows 10 1809 (Build 17763)
  • Windows 10 1903 (Build 18362)
  • Windows 10 1909 (Build 18363)
  • Windows 10 2004 (Build 19041)
  • Windows 10 20H2 (Build 19042)
  • Windows 10 21H1 (Build 19043)
  • Windows 10 21H2 (Build 19044)
  • Windows 10 22H2 (Build 19045)
  • Windows 11 21H2 (Build 22000)
  • Other (specify)

Other Windows Build number

No response

App minimum and target SDK version

  • Windows 10, version 1809 (Build 17763)
  • Windows 10, version 1903 (Build 18362)
  • Windows 10, version 1909 (Build 18363)
  • Windows 10, version 2004 (Build 19041)
  • Windows 10, version 2104 (Build 20348)
  • Windows 11, version 22H2 (Build 22000)
  • Other (specify)

Other SDK version

No response

Visual Studio Version

No response

Visual Studio Build Number

No response

Device form factor

No response

Additional context

No response

Help us help you

Yes, I'd like to be assigned to work on this item.

@abdes
Copy link
Contributor Author

abdes commented Jan 16, 2024

Also submitted as: CommunityToolkit/WindowsCommunityToolkit#4965

@zoltan-hadur
Copy link

Just run to this problem the other day. Had to use sorting, which decreases the performance a little bit.

@michael-hawker
Copy link
Member

Thanks @abdes, I believe someone had tried to submit a fix for this before: CommunityToolkit/WindowsCommunityToolkit#4814

Related to #307 and the #309 PR.

However, we really need proper tests here and to ensure we have the correct and desired behavior for various scenarios. So we need ones that show the issue, and also other similar edge cases, and that the submitted fix resolves the broken scenario without impacting the others.

@abdes
Copy link
Contributor Author

abdes commented Jan 25, 2024

Related to #307 and the #309 PR.

#309 it is, but not really #307.

@Arlodotexe
Copy link
Member

#309 it is, but not really #307.

@abdes PR #309 closes issue #307. Closing this as a duplicate of #307.

@Arlodotexe Arlodotexe closed this as not planned Won't fix, can't repro, duplicate, stale Jan 26, 2024
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

4 participants