Code Monkey home page Code Monkey logo

Comments (10)

onmyway133 avatar onmyway133 commented on July 28, 2024 1

@ValCanBuild Hi, I was thinking so too. I 'd like to expose comparison callback instead of implicitly relying on Hashable.

from deepdiff.

snoozemoose avatar snoozemoose commented on July 28, 2024 1

@ValCanBuild I haven't yet submitted a pull request for this but I've changed the UICollectionView extension to be reload<T: DiffAware> and it is working fine. I guess I should submit that PR along with the same change for UITableView...

from deepdiff.

onmyway133 avatar onmyway133 commented on July 28, 2024

@archagon Hi, it is because currently I use a hashValue as a key to manage uniqueness of objects, so a replacement occurs only if the key remains but the content changes, see #16

It works a bit differently from Wagner Fischer. I will see if I have time to make this more intuitive

from deepdiff.

ValCanBuild avatar ValCanBuild commented on July 28, 2024

@onmyway133 isn't the way you're using hashvalue technically incorrect? You're using it as a unique identifier for an object and the two aren't necessarily the same thing.

A hash of a struct should be computed based on all its properties, not just one. This makes it hard to handle replacement operations. I like what the android DiffUtil library does in this case where it gives the library user the callback to determine whether two items are the same and if they are, then it compares their contents to figure out if they are the same.

This leads to a very straightforward implementation:

  1. Have a unique id for each object (up to developer to choose)
  2. Use that id to determine if two items are the same in the context of DeepDiff
  3. If they aren't, then this is either an insertion or deletion. Stop here
  4. If they are, then check if their contents are the same (this is where just using Equatable would work)
  5. If they are, then nothing has changed
  6. If they aren't then a change has occured.

Any chance something like this could be implemented?

from deepdiff.

onmyway133 avatar onmyway133 commented on July 28, 2024

@archagon Hi, I introduced DiffAware protocol to make diff changes more explicit https://github.com/onmyway133/DeepDiff/releases/tag/2.0.0. Can you check if that works for you ?

from deepdiff.

ValCanBuild avatar ValCanBuild commented on July 28, 2024

@onmyway133 shouldn't DiffAware be constrained to a Hashable?

from deepdiff.

snoozemoose avatar snoozemoose commented on July 28, 2024

@ValCanBuild I can't see any reason for that, would you care to enlighten me?

from deepdiff.

ValCanBuild avatar ValCanBuild commented on July 28, 2024

@snoozemoose well in order to use the reload extension on TableViews/CollectionViews the item must be Hashable. So making your data only conform to DiffAware makes it usable in the diff part of the algorithm but not in the applying changes part.

So either DiffAware needs to be made Hashable or reload function Hashable constraint must ve removed.

from deepdiff.

snoozemoose avatar snoozemoose commented on July 28, 2024

PR is submitted now: #31

from deepdiff.

onmyway133 avatar onmyway133 commented on July 28, 2024

❤️

from deepdiff.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.