Class: Decidim::Component
- Inherits:
-
ApplicationRecord
- Object
- ActiveRecord::Base
- ApplicationRecord
- Decidim::Component
- Includes:
- HasSettings, Loggable, Publicable, ScopableComponent, ShareableWithToken, Traceable
- Defined in:
- app/models/decidim/component.rb
Overview
A Component represents a self-contained group of functionalities usually defined via a ComponentManifest. It’s meant to be able to provide a single component that spans over several steps.
Class Method Summary collapse
Instance Method Summary collapse
- #can_participate_in_space?(user) ⇒ Boolean
-
#form_class ⇒ Object
Public: The Form Class for this component.
-
#manifest ⇒ Object
Public: Finds the manifest this component is associated to.
-
#manifest=(manifest) ⇒ Object
Public: Assigns a manifest to this component.
-
#mounted_admin_engine ⇒ Object
Public: The name of the admin engine the component is mounted to.
-
#mounted_engine ⇒ Object
Public: The name of the engine the component is mounted to.
-
#mounted_params ⇒ Object
Public: The hash of contextual params when the component is mounted.
-
#primary_stat ⇒ Object
Public: Returns the value of the registered primary stat.
-
#resource_description ⇒ Object
Public: Returns an empty description.
-
#resource_title ⇒ Object
Public: Returns the component’s name as resource title.
-
#shareable_url(share_token) ⇒ Object
Public: Public URL for component with given share token as query parameter.
-
#siblings ⇒ Object
Other components with the same manifest and same participatory space as this one.
Methods included from Publicable
#publish!, #published?, #unpublish!
Methods included from HasSettings
#current_settings, #default_step_settings, #default_step_settings=, #settings, #settings=, #step_settings, #step_settings=
Class Method Details
.log_presenter_class_for(_log) ⇒ Object
21 22 23 |
# File 'app/models/decidim/component.rb', line 21 def self.log_presenter_class_for(_log) Decidim::AdminLog::ComponentPresenter end |
Instance Method Details
#can_participate_in_space?(user) ⇒ Boolean
85 86 87 88 89 90 |
# File 'app/models/decidim/component.rb', line 85 def can_participate_in_space?(user) return true unless participatory_space.try(:private_space?) return false unless user participatory_space.can_participate?(user) end |
#form_class ⇒ Object
Public: The Form Class for this component.
Returns a ComponentForm.
68 69 70 |
# File 'app/models/decidim/component.rb', line 68 def form_class manifest.component_form_class end |
#manifest ⇒ Object
Public: Finds the manifest this component is associated to.
Returns a ComponentManifest.
33 34 35 |
# File 'app/models/decidim/component.rb', line 33 def manifest Decidim.find_component_manifest(manifest_name) end |
#manifest=(manifest) ⇒ Object
Public: Assigns a manifest to this component.
manifest - The ComponentManifest for this Component.
Returns nothing.
42 43 44 |
# File 'app/models/decidim/component.rb', line 42 def manifest=(manifest) self.manifest_name = manifest.name end |
#mounted_admin_engine ⇒ Object
Public: The name of the admin engine the component is mounted to.
52 53 54 |
# File 'app/models/decidim/component.rb', line 52 def mounted_admin_engine "decidim_admin_#{participatory_space_name}_#{manifest_name}" end |
#mounted_engine ⇒ Object
Public: The name of the engine the component is mounted to.
47 48 49 |
# File 'app/models/decidim/component.rb', line 47 def mounted_engine "decidim_#{participatory_space_name}_#{manifest_name}" end |
#mounted_params ⇒ Object
Public: The hash of contextual params when the component is mounted.
57 58 59 60 61 62 63 |
# File 'app/models/decidim/component.rb', line 57 def mounted_params { host: organization.host, component_id: id, "#{participatory_space.underscored_name}_slug".to_sym => participatory_space.slug } end |
#primary_stat ⇒ Object
Public: Returns the value of the registered primary stat.
73 74 75 |
# File 'app/models/decidim/component.rb', line 73 def primary_stat @primary_stat ||= manifest.stats.filter(primary: true).with_context([self]).map { |name, value| [name, value] }.first&.last end |
#resource_description ⇒ Object
Public: Returns an empty description
83 |
# File 'app/models/decidim/component.rb', line 83 def resource_description; end |
#resource_title ⇒ Object
Public: Returns the component’s name as resource title
78 79 80 |
# File 'app/models/decidim/component.rb', line 78 def resource_title name end |
#shareable_url(share_token) ⇒ Object
Public: Public URL for component with given share token as query parameter
93 94 95 |
# File 'app/models/decidim/component.rb', line 93 def shareable_url(share_token) EngineRouter.main_proxy(self).root_path(self, share_token: share_token.token) end |
#siblings ⇒ Object
Other components with the same manifest and same participatory space as this one.
26 27 28 |
# File 'app/models/decidim/component.rb', line 26 def siblings @siblings ||= participatory_space.components.where.not(id: id).where(manifest_name: manifest_name) end |