Sha256: 705be2baedf99447b07de4afc2294ee890881a3d8bae79cdab120dc5b08f74e1

Contents?: true

Size: 1.49 KB

Versions: 8

Compression:

Stored size: 1.49 KB

Contents

# frozen_string_literal: true

module Decidim
  module Meetings
    # This cell renders the meeting card for an instance of a Meeting
    # the default size is the Medium Card (:m)
    # also available the List Item Card (:list_item)
    class MeetingCell < Decidim::ViewModel
      include Decidim::SanitizeHelper
      include MeetingCellsHelper
      include Cell::ViewModel::Partial

      def show
        cell card_size, model, options
      end

      private

      def card_size
        case @options[:size]
        when :list_item
          "decidim/meetings/meeting_list_item"
        when :s
          "decidim/meetings/meeting_s"
        else
          "decidim/meetings/meeting_m"
        end
      end

      def title
        present(model).title
      end

      def resource_icon
        icon "meetings", remove_icon_class: true, width: 40, height: 70
      end

      def current_component
        model.component
      end

      def current_participatory_space
        model.component.participatory_space
      end

      def component_settings
        model.component.settings
      end

      def component_name
        translated_attribute current_component.name
      end

      def component_type_name
        model.class.model_name.human
      end

      def participatory_space_name
        translated_attribute current_participatory_space.title
      end

      def participatory_space_type_name
        translated_attribute current_participatory_space.model_name.human
      end
    end
  end
end

Version data entries

8 entries across 8 versions & 1 rubygems

Version Path
decidim-meetings-0.23.6 app/cells/decidim/meetings/meeting_cell.rb
decidim-meetings-0.23.5 app/cells/decidim/meetings/meeting_cell.rb
decidim-meetings-0.23.4 app/cells/decidim/meetings/meeting_cell.rb
decidim-meetings-0.23.3 app/cells/decidim/meetings/meeting_cell.rb
decidim-meetings-0.23.2 app/cells/decidim/meetings/meeting_cell.rb
decidim-meetings-0.23.1 app/cells/decidim/meetings/meeting_cell.rb
decidim-meetings-0.23.1.rc1 app/cells/decidim/meetings/meeting_cell.rb
decidim-meetings-0.23.0 app/cells/decidim/meetings/meeting_cell.rb