Why I don't do MVVM anymore

Поділитися
Вставка

КОМЕНТАРІ • 41

  • @Blozoozozoz
    @Blozoozozoz Місяць тому +2

    Some overlayed code snippets would have gone a long way toward explaining the differences between MVVM and View-only. I'm 7 minutes in, and I still don't really follow what's going on.

  • @isurujn
    @isurujn Рік тому +8

    Good topic to discuss further. Another video on this view-only approach with code examples would be nice 👍

    • @FloWritesCode
      @FloWritesCode  Рік тому +3

      Thanks for the idea! Others have also asked for this, so I am considering it for the future :)

  • @DeirdreSM
    @DeirdreSM Рік тому +7

    For smaller MVVM projects, I use something I borrowed from Paul Hudson and put the ViewModel inside the View. *taps forehead* It's a compromise between the two approaches, but still keeps the viewmodel code directly out of the view code.

    • @manwithllama
      @manwithllama Рік тому

      I like how this sounds. Do you happen to remember the video or have a link to see where/how he does this?

  • @ishouldbeworkingrn
    @ishouldbeworkingrn Рік тому +9

    To be really honest, I don't think these kind of architecture is just for small app/prototyping, they really could work in a bigger project since SwiftUI views are meant to be small and cheap.
    The only thing we need to improve to make this architecture (that you call "View-only") is make it testable, corporate people love talking about their code-coverage even if 90% of the tests are total bullshit because they mock everything and in the end nothing is tested.
    Seriously, I've worked in a company that we had a lot of tests like this: "sut.response = mock(); sut.request().response == mock()".
    Anyways, I'm now in another company and I'm facing a similar problem, we are building a POC and the guy I'm working with wants to follow the Bible of Uncle Bob and that's pissing me off.
    Sorry for the vent in those last sentences, it's just that I'm full of people making complex stuff when it shouldn't be.

  • @stigblue
    @stigblue Рік тому +7

    Could you provide a video with examples in cases where you think it reduces complexity to musing view only or shared instances? 😄🙏🏻

    • @FloWritesCode
      @FloWritesCode  Рік тому

      Sure, I'll add it to the list of ideas! Thanks for the suggestion :)

  • @chrisstromberg6527
    @chrisstromberg6527 Рік тому +2

    It seems so much easier to read and write the code when dropping the view model, and just using service classes.

  • @Nairda1705
    @Nairda1705 Рік тому +6

    I always like to write my projects "future proof". Who knows, maybe it's successful and then you have to expand on it. I prefer MVVM. Yes, sometimes you have to write a VM class just for 2-3 properties, but in the end, it's just a few additional lines of code so it's not that big of a deal.

    • @FloWritesCode
      @FloWritesCode  Рік тому

      With that in mind I agree that sticking with a more sophisticated architecture makes sense. Thanks for sharing!

  • @indiekiduk
    @indiekiduk Рік тому +3

    The MVVM crowd didn't bother to learn that the View struct plus modifiers property wrappers is equivalent to a view model object already so they don't need another one. I think they also don't know that SwiftUI diffs the hierarchy of View structs to create/update/remove UIView/NSView objects.

  • @alobaili
    @alobaili Рік тому +2

    Thank you for this insightful video. I'm not sure using view-only completely removes testability. Don't you think there's still a way to test the properties and functions of the struct? At the end it's just a normal struct with a special body property? There's also the ViewInspector library for unit testing SwiftUI views, which looks very promising in covering the testability of view-only architectures.

    • @FloWritesCode
      @FloWritesCode  Рік тому

      You're right, it is still possible to test structs, but things might get a bit more complex than with dedicated ViewModels.

  • @xinth23
    @xinth23 Рік тому +3

    Flo, do you have any videos showing examples of View-Only?

    • @FloWritesCode
      @FloWritesCode  Рік тому +3

      Not yet, because I wasn't sure how this video would be received. Turns out it is very controversial, even though I am just talking about my experience. I will think about showing examples in the future though :)

  • @lukassbeataddicts
    @lukassbeataddicts Рік тому +1

    I agree for simple apps, but some functionality is not even possible to do in the view file. I use hybrid, view models only for main screens of the app.

  • @foilhat
    @foilhat Рік тому +1

    How to call a pattern, when you're sticking to MVVM for actual app screens, but keep it to MV for simpler views? And also largely use service classes, because they are even better solution for unit testing?

    • @FloWritesCode
      @FloWritesCode  Рік тому

      Not sure about a name here, but this sounds like it makes sense!

    • @Muescha
      @Muescha Рік тому

      Maybe you look for MVP (Model View Presenter)?

    • @redhotbits
      @redhotbits 10 місяців тому

      MVU

  • @damjandabo
    @damjandabo Рік тому +2

    Great video!
    I concur with your point that in smaller projects, particularly when working alone, strict adherence to a specific architecture may not be necessary.
    I would also advise having as testable and clean code as possible for bigger and more serious projects.
    The advantages of Core Data and View-Only are one of the reasons I don't like Core Data for larger projects because of the added complexity and overhead required to write scalable code.
    For my own project, I have chosen to use MVVM, even in the early stages, as I am looking at the project as a start-up business with potential to expand the team in the future. By using MVVM and learning best practices from the start, I aim to avoid technical debt and establish strong foundations for future development.

    • @FloWritesCode
      @FloWritesCode  Рік тому +1

      I get where you are coming from! It always depends on what your goals are. This video is just about my personal experience :) Thanks for sharing, Damjan!

  • @danielgogozan1613
    @danielgogozan1613 Рік тому +2

    🎉 I congratulate you for having the courage to express your opinion even though you knew it was unpopular and that probably many people do not agree because is not that academic.
    I believe many times we use all sorts of architectures because we are simply used to and we feel kinda unprofessional if we do things simply, without any fancy pattern.
    You’ve highlighted a core idea that no architecture is bulletproof and we shouldn’t be scared of taking unpopular decisions in projects as long as they’re justified. I very much share the same thoughts.

    • @FloWritesCode
      @FloWritesCode  Рік тому

      Thanks, Daniel. The video was decently well received on UA-cam (also got a bunch of dislikes, which are invisible to you :/), but not so much on Twitter. I absolutely stand by it's content, which is just me talking about my experience.

    • @bigmtnstudio
      @bigmtnstudio Рік тому +2

      Yup, I totally agree with you, Daniel and Flo. So much so that I even teach the same exact thing. Ha ha, but I don't feel unprofessional. For our corporate apps, we have NO tests. Yup, zero tests. (Though we do have testers that write automated UI tests.) We use views and observable objects. That's it. It's simple and it allows us to get a lot done. We constantly work to simplify.

  • @expertadvisors4109
    @expertadvisors4109 6 місяців тому +1

    Makes sense. If your service classes are already tested I would argue why then introduce a ViewModel for the sake of wanting more testing to happen

  • @cloobs1
    @cloobs1 Рік тому +1

    do I feel a new "view only" playlist coming up...? :) it be greatly appreciated. I do agree with the points u made there

    • @FloWritesCode
      @FloWritesCode  Рік тому +1

      I didn't plan an entire playlist initially, but since a few people asked already I'm now considering it, yes!

  • @Swift_Alvar
    @Swift_Alvar Рік тому +1

    Is a good point find your own development style, thanks for the video

  • @MCRotrix
    @MCRotrix Рік тому +1

    If you think MVVM adds complexity, then try VIPER out 😂

  • @redhotbits
    @redhotbits 10 місяців тому +1

    mvvm is just toxic with swiftui, it ruins your code

  • @rank1macro
    @rank1macro Рік тому +1

    5:59 I am sorry, but I have done this custom init to View Model many times, and what I have found out (as far as I remember) is that you can not use @StateObject, but have to use @ObservedObject instead. Unless there is some work around possible to make it work with @ObservedObject, which I do not know about

    • @Nairda1705
      @Nairda1705 Рік тому +1

      There is an ugly hack that you can do. You can define your property in the ViewModel class as forced unwrapped, so for example var property: SomeType! and have a setter in your VM, for example setProperty(_ value: SomeType) that assigns the value to your property . This method can be called on appear so you would have something like this: onAppear { viewModel.setProperty(parameterProperty) }. I don't really like this approach, but sometimes, you need a @StateObject instead of @ObservedObject. Or you could pass your VM as an environment object. But then you would have to store it in some parent.

    • @FloWritesCode
      @FloWritesCode  Рік тому

      Not 100% sure what you are referring to, but you can create StateObjects in your init with `_viewModel = StateObject(wrappedValue: ViewModel())`. According to an Apple engineer it doesn't even get recreated when the View is recreated.

    • @Nairda1705
      @Nairda1705 Рік тому

      @@FloWritesCode I did not know that this is not recreated! I think I saw this on SO, but the people in the comments were saying that it gets recreated everytime, so I just used the hack above. Thank you!

  • @marceljaeger
    @marceljaeger Рік тому

    Nice Video! MVVM is a cool pattern, because, if I edit the View, then I have only the view at the file and for logic the same. But SwiftUI also has cool features for writing logic in the view struct and with extension I also can write functions and View separate. I think with Swiftdate is View-Only much better as CoreData and View-Only. Because of this framework I try to use no Viewmodel in next projects for iOS 17 and macOS 14. With View-Only I can keep the lines and structure of the project small and simple. But if I know, I will testing the code or I use logic for backend, the better or only way is to use a viewModel or service classes.
    Both architectures are good and have advantages and disadvantages.
    I like the words from steve jobs. Another reason for me to write logic in the view struct is this thinking and the power of minimalism.🤏
    (I hope, these sentences are understandable. Normally I speak german and my english is not perfect 😅.)