gitlab-org--gitlab-foss/app/presenters
GitLab Bot 69b0ff9002 Add latest changes from gitlab-org/gitlab@master 2021-04-15 12:09:05 +00:00
..
alert_management Add latest changes from gitlab-org/gitlab@master 2020-12-08 09:09:41 +00:00
analytics/cycle_analytics Add latest changes from gitlab-org/gitlab@master 2020-12-11 12:09:43 +00:00
blobs
ci Add latest changes from gitlab-org/gitlab@master 2021-04-12 15:09:30 +00:00
clusters Add latest changes from gitlab-org/gitlab@master 2021-04-15 12:09:05 +00:00
dev_ops_report Add latest changes from gitlab-org/gitlab@master 2021-04-05 21:09:19 +00:00
gitlab Add latest changes from gitlab-org/gitlab@master 2021-01-26 12:09:27 +00:00
packages Add latest changes from gitlab-org/gitlab@master 2021-03-28 15:09:30 +00:00
projects Add latest changes from gitlab-org/gitlab@master 2021-03-30 00:09:26 +00:00
releases
README.md
award_emoji_presenter.rb
blob_presenter.rb
board_presenter.rb Add latest changes from gitlab-org/gitlab@master 2021-01-08 00:10:44 +00:00
clusterable_presenter.rb Add latest changes from gitlab-org/gitlab@master 2020-10-13 00:08:42 +00:00
commit_presenter.rb
commit_status_presenter.rb Add latest changes from gitlab-org/gitlab@master 2021-04-12 15:09:30 +00:00
environment_presenter.rb Add latest changes from gitlab-org/gitlab@master 2020-10-28 09:08:37 +00:00
event_presenter.rb
generic_commit_status_presenter.rb
group_clusterable_presenter.rb
group_member_presenter.rb
instance_clusterable_presenter.rb Add latest changes from gitlab-org/gitlab@master 2020-10-13 00:08:42 +00:00
invitation_presenter.rb Add latest changes from gitlab-org/gitlab@master 2020-11-05 00:09:16 +00:00
issue_presenter.rb Add latest changes from gitlab-org/gitlab@master 2020-11-09 03:09:03 +00:00
label_presenter.rb Add latest changes from gitlab-org/gitlab@master 2020-10-13 06:09:09 +00:00
member_presenter.rb
members_presenter.rb
merge_request_presenter.rb
milestone_presenter.rb
pages_domain_presenter.rb
project_clusterable_presenter.rb
project_hook_presenter.rb
project_member_presenter.rb
project_presenter.rb Add latest changes from gitlab-org/gitlab@master 2021-04-07 12:08:53 +00:00
prometheus_alert_presenter.rb
release_presenter.rb Add latest changes from gitlab-org/gitlab@master 2021-02-02 00:09:14 +00:00
search_service_presenter.rb Add latest changes from gitlab-org/gitlab@master 2021-04-01 18:13:56 +00:00
sentry_error_presenter.rb
service_hook_presenter.rb
snippet_blob_presenter.rb
snippet_presenter.rb
todo_presenter.rb
tree_entry_presenter.rb
user_presenter.rb Add latest changes from gitlab-org/gitlab@master 2021-04-07 00:09:26 +00:00
web_hook_log_presenter.rb

README.md

Presenters

This type of class is responsible for giving the view an object which defines view-related logic/data methods. It is usually useful to extract such methods from models to presenters.

When to use a presenter?

When your view is full of logic

When your view is full of logic (if, else, select on arrays, etc.), it's time to create a presenter!

When your model has a lot of view-related logic/data methods, you can easily move them to a presenter.

Why are we using presenters instead of helpers?

We don't use presenters to generate complex view output that would rely on helpers.

Presenters should be used for:

  • Data and logic methods that can be pulled & combined into single methods from view. This can include loops extracted from views too. A good example is https://gitlab.com/gitlab-org/gitlab-foss/merge_requests/7073/diffs.
  • Data and logic methods that can be pulled from models.
  • Simple text output methods: it's ok if the method returns a string, but not a whole DOM element for which we'd need HAML, a view context, helpers, etc.

Why use presenters instead of model concerns?

We should strive to follow the single-responsibility principle and view-related logic/data methods are definitely not the responsibility of models!

Another reason is as follows:

Avoid using concerns and use presenters instead. Why? After all, concerns seem to be a core part of Rails and can DRY up code when shared among multiple models. Nonetheless, the main issue is that concerns dont make the model object more cohesive. The code is just better organized. In other words, theres no real change to the API of the model.

https://www.toptal.com/ruby-on-rails/decoupling-rails-components

Benefits

By moving pure view-related logic/data methods from models & views to presenters, we gain the following benefits:

  • rules are more explicit and centralized in the presenter => improves security
  • testing is easier and faster as presenters are Plain Old Ruby Object (PORO)
  • views are more readable and maintainable
  • decreases the number of CE -> EE merge conflicts since code is in separate files
  • moves the conflicts from views (not always obvious) to presenters (a lot easier to resolve)

What not to do with presenters?

  • Don't use helpers in presenters. Presenters are not aware of the view context.
  • Don't generate complex DOM elements, forms, etc. with presenters. Presenters can return simple data like texts, and URLs using URL helpers from Gitlab::Routing but nothing much fancier.

Implementation

Presenter definition

Every presenter should inherit from Gitlab::View::Presenter::Simple, which provides a .presents the method which allows you to define an accessor for the presented object. It also includes common helpers like Gitlab::Routing and Gitlab::Allowable.

class LabelPresenter < Gitlab::View::Presenter::Simple
  presents :label

  def text_color
    label.color.to_s
  end

  def to_partial_path
    'projects/labels/show'
  end
end

In some cases, it can be more practical to transparently delegate all missing method calls to the presented object, in these cases, you can make your presenter inherit from Gitlab::View::Presenter::Delegated:

class LabelPresenter < Gitlab::View::Presenter::Delegated
  presents :label

  def text_color
    # color is delegated to label
    color.to_s
  end

  def to_partial_path
    'projects/labels/show'
  end
end

Presenter instantiation

Instantiation must be done via the Gitlab::View::Presenter::Factory class which detects the presenter based on the presented subject's class.

class Projects::LabelsController < Projects::ApplicationController
  def edit
    @label = Gitlab::View::Presenter::Factory
      .new(@label, current_user: current_user)
      .fabricate!
  end
end

You can also include the Presentable concern in the model:

class Label
  include Presentable
end

and then in the controller:

class Projects::LabelsController < Projects::ApplicationController
  def edit
    @label = @label.present(current_user: current_user)
  end
end

Presenter usage

%div{ class: @label.text_color }
  = render partial: @label, label: @label

You can also present the model in the view:

- label = @label.present(current_user: current_user)

%div{ class: label.text_color }
  = render partial: label, label: label