Magento 2 Design Patterns presentation

During Magento Meetup 13 which took place in Dublin, Ireland at February 9, 2016 I’ve had a chance to share thoughts about Design Patterns usage in Magento 2.

I’ve uploaded presentation to SlideShare website. Feel free to share your experience using Design Patterns in Magento 2.

About Presentation

Architecture Goals

I decided to start from Magento 2 architectural goals. The goals were set few years ago for Magento 2 project:

  1. Streamline customizations. With this goal developers are able to spend less time implementing frontend and backend features. This goal also comes from Magento 1 development where developers should literally copy-paste big chankes of templates and code in order to customize it. Or in case new field or attribute should be added.
  2. Simplify external integrations. This goal helps to address reduce complexity when it comes to integrations with 3rd party services (e.g. Payment Service Providers, Shipping Providers, Mobile Apps etc.).

How it is solved in Magento 2

Loose coupling between modules. Over the last year before the official Magento 2.0 GA release all teams were working on reducing complexity in Magento modules. It resulted in higher amount of tiny modules with less cross-module dependencies.

SOLID Principles. One of main for my point of view decisions was to accept usage of 5 main object oriented design principles. Thanks to @AntonKril who is now Magento 2 Architect. Anton broadcasted (I hope this is a right word) to every single developer who worked on Magento 2. Would this happens occasionally without him? I don’t know. Maybe few month later.

Design Patterns. In Magento 2 you may find tons of Design Patterns starting from Gang of Four Design Patterns, Enterprise Patterns by Martin Fawler. Sometimes I see overuse of some Design Patterns.

Configuration over customization. With the Inversion of Control Design Pattern and Object Manager implementation the real power of Dependency Injection become available for Magento developers. Now, in Magento 2 you are free to set preference class when you use interface. Or configure virtual type (which is also class created dynamically) with custom constructor arguments.

These are good ways to reduce amount of code developer should write each time.

Useful Links

Presentation


Magento 2 Design Patterns from Maksym Pronko
As always, please share your feedback in comments. I will be happy to discuss with you.


Posted

in

by

Tags:

Comments

Leave a Reply

Your email address will not be published. Required fields are marked *