mirror of https://github.com/docusealco/docuseal
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
21 lines
374 B
21 lines
374 B
# frozen_string_literal: true
|
|
|
|
module Flows
|
|
module_function
|
|
|
|
def build_field_areas_index(flow)
|
|
hash = {}
|
|
|
|
flow.fields.each do |field|
|
|
(field['areas'] || []).each do |area|
|
|
hash[area['attachment_uuid']] ||= {}
|
|
acc = (hash[area['attachment_uuid']][area['page']] ||= [])
|
|
|
|
acc << { area:, field: }
|
|
end
|
|
end
|
|
|
|
hash
|
|
end
|
|
end
|