summaryrefslogtreecommitdiff
path: root/app/services/resource_events/synthetic_state_notes_builder_service.rb
blob: e17882b00deca7fbdc5e8fd7bc70a809cc9faa48 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
# frozen_string_literal: true

module ResourceEvents
  class SyntheticStateNotesBuilderService < BaseSyntheticNotesBuilderService
    private

    def synthetic_notes
      state_change_events.map do |event|
        StateNote.from_event(event, resource: resource, resource_parent: resource_parent)
      end
    end

    def state_change_events
      return [] unless resource.respond_to?(:resource_state_events)

      events = resource.resource_state_events.includes(user: :status) # rubocop: disable CodeReuse/ActiveRecord
      apply_common_filters(events)
    end

    def table_name
      'resource_state_events'
    end
  end
end