Class: Decidim::Accountability::Result

Inherits:
ApplicationRecord show all
Includes:
Comments::CommentableWithComponent, DataPortability, HasAttachmentCollections, HasAttachments, HasCategory, HasComponent, HasReference, Loggable, Randomable, Resourceable, ScopableResource, Searchable, Traceable, TranslatableResource
Defined in:
app/models/decidim/accountability/result.rb

Overview

The data store for a Result in the Decidim::Accountability component. It stores a title, description and any other useful information to render a custom result.

Class Method Summary collapse

Instance Method Summary collapse

Class Method Details

.log_presenter_class_for(_log) ⇒ Object



47
48
49
# File 'app/models/decidim/accountability/result.rb', line 47

def self.log_presenter_class_for(_log)
  Decidim::Accountability::AdminLog::ResultPresenter
end

Instance Method Details

#allow_resource_permissions?Boolean

Public: Overrides the ‘allow_resource_permissions?` Resourceable concern method.

Returns:

  • (Boolean)


80
81
82
# File 'app/models/decidim/accountability/result.rb', line 80

def allow_resource_permissions?
  true
end

#comments_have_alignment?Boolean

Public: Overrides the ‘comments_have_alignment?` Commentable concern method.

Returns:

  • (Boolean)


70
71
72
# File 'app/models/decidim/accountability/result.rb', line 70

def comments_have_alignment?
  true
end

#comments_have_votes?Boolean

Public: Overrides the ‘comments_have_votes?` Commentable concern method.

Returns:

  • (Boolean)


75
76
77
# File 'app/models/decidim/accountability/result.rb', line 75

def comments_have_votes?
  true
end

#update_parent_progressObject



51
52
53
54
55
# File 'app/models/decidim/accountability/result.rb', line 51

def update_parent_progress
  return if parent.blank?

  parent.update_progress!
end

#update_progress!Object

Public: There are two ways to update parent’s progress:

- using weights, in which case each progress is multiplied by the weigth and them summed
- not using weights, and using the average of progress of each children


60
61
62
63
64
65
66
67
# File 'app/models/decidim/accountability/result.rb', line 60

def update_progress!
  self.progress = if children_use_weighted_progress?
                    children.sum { |result| (result.progress.presence || 0) * (result.weight.presence || 1) }
                  else
                    children.average(:progress)
                  end
  save!
end