Giter Site home page Giter Site logo

Comments (2)

DenTelezhkin avatar DenTelezhkin commented on June 3, 2024

This depends on whether you want them to have different models or not. If data models for different sections is different, so will be the views, all you need is register all your views, and just set supplementaries on a storage.

If data types of your models is the same, then you can customize mappings using ViewModelMappingCustomizing protocol like so:

extension ViewController: ViewModelMappingCustomizing {
    func viewModelMapping(from candidates: [ViewModelMapping], for model: Any) -> ViewModelMapping? {
        // some kind of model conversion
       if model.kind == .one {
             return candidates.findOneMapping() // hypothethical method
       } else {
           // ...
       }
    }
}

It's a little cumbersome, but you'll be able to specify supplementary views for your models. I think in future releases it's possible that framework will allow overriding datasource methods to create such views without data models, but it's only theory.

Unfortunately, framework also does not have "bindings by section", not for cells, not for supplementary views, so you won't be able to specify mappings for section directly, as described in the issue. It's an interesting idea, and i heard it several times already, but did not have time to properly implement it.

Do first two solutions solve your problem?

from dtcollectionviewmanager.

DenTelezhkin avatar DenTelezhkin commented on June 3, 2024

Hey @RyanCodes!

I've released 6.0.0-beta.1 release of DTCollectionViewManager, which includes conditional mappings feature, that allows you to specify mappings per section, like so:

manager.register(SectionHeader1.self) { mapping in mapping.condition = .section(0) }
manager.register(SectionHeader2.self) { mapping in mapping.condition = .section(1) }

Hope this helps!

from dtcollectionviewmanager.

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.