Popularity
1.0
Stable
Activity
0.0
Stable
17
4
5

Programming language: Swift
License: MIT License
Tags: Xcode     Other Xcode    

VIPER Module Template alternatives and similar libraries

Based on the "Other Xcode" category.
Alternatively, view VIPER Module Template alternatives based on common mentions on social networks and blogs.

Do you think we are missing an alternative of VIPER Module Template or a related project?

Add another 'Other Xcode' Library

README

[](assets/header.jpg)

Swift_Version GitHub stars GitHub issues GitHub license Awesome

Once you've decided to use a VIPER architecture in your app, you should know about the routine. For each screen/module you should create at least 6 files. Imagine that you need to create 10 modules. To avoid this boring work you can use this template which helps you to generate a compete module. It's very useful for me, and I hope it can be useful for you too.

Generated files

The template generates all the files that you need to create a new VIPER module. All generated code is Swift 4 compatible.

File Name Acts As Description
ModuleNameViewController.swift View UIViewController of your module.
ModuleNameInteractor.swift Interactor It's for communication with the Data Layer.
ModuleNamePresenter.swift Presenter It's for communication with the View and the Interactor.
ModuleNameRouter.swift Router It's for routing to other modules.
ModuleNameViewController.xib ViewControllerXib If you use xibs, you can use it for layout.
ModuleNameAssembly.swift Assembly It's an assembly, to build a module.
ModuleNameModuleAPI.swift API It's an API, a file with all protocols of your module

How to install

Using script (easy)

Execute this command in the terminal:

sudo swift install.swift

You should see this output message:

✅ VIPER Template successfully installed.

If it's ok, you could see your template in the Xcode.

Manual installation

Go to the Application folder, browse to the Xcode application icon. Right-click on it and choose 'Show Package Contents'. Then, browse to: Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/Xcode/Templates/File Templates/Architecture and add "VIPER Module.xctemplate" file. Now you can see your template in the Xcode.

Easy to use

VIPER Diagram overview

Preview

VIPER Checklist

To get started easier, we’ve prepared a checklist to make sure that everything follows the VIPER’s design principle. We hope, this list will be useful for you as it is for us.

  • [ ] Views and view controllers receive user interactions and pass them to presenters for decision making.
  • [ ] Presenters contain the view's logic and prepare content for display and reacting to user inputs.
  • [ ] Presenters should not know about the existence of all UIViewControllers.
  • [ ] Interactors contain business' logic and they should be independent of UI.

What is VIPER?

VIPER is not a framework, but an approach to iOS application architecture, which stands for:

VIEW

View controller. It is responsible to receive user interactions and pass them to presenters for decision making. To keep the view simple, it shouldn’t contain any view's logic. This is where to define how the view looks like, and nothing beyond this.

PRESENTER

The presenter defines the view's logic, e.g. when to show a warning message or highlight a button. It is responsible to prepare content for the view to display. Whenever data is required, the presenter requests data from interactors (but not directly from the model).

INTERACTOR

The interactor mainly contains business logic, e.g. logging in the user / processing a purchase / sending a friend request. It should be independent of the UI. It only handles requests from the presenter and prepares corresponding data regardless of how the view looks like.

ROUTER

Router defines the routes from one screen to another. In VIPER, the responsibility for Routing is shared between the presenter and the wireframe. When the presenter receives user interactions and decided to navigate to another screen, it will use the wireframe to perform the desired navigation (to which screen and how to navigate). The wireframe can also contain transition animations.

ASSEMBLY

Assembly builds the modules with input params and links all layers. Should connect Presenter with View, Router and Interactor, Interactor with Presenter, View with Presenter. Should setup input data of module and can return module Input if needed.

Why VIPER?

After using VIPER, I've found it to be very beneficial in many ways. Let’s get back to the list of things we set out to accomplish when architecting our app to see if VIPER addresses them.

  • Single responsibility principles applied.
  • Easy to iterate on.
  • Collaboration friendly.
  • Separated out concerns.
  • Spec-ability.
  • Testability.

Next steps

Would you like to decide what the next feature will be?

  • [ ] Storyboard support
  • [ ] Separated iPhone & iPad UIs

References

Contribute

This is an open source project, so feel free to contribute.


Authors


*Note that all licence references and agreements mentioned in the VIPER Module Template README section above are relevant to that project's source code only.