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
382 B
21 lines
382 B
# frozen_string_literal: true
|
|
|
|
module Templates
|
|
module_function
|
|
|
|
def build_field_areas_index(template)
|
|
hash = {}
|
|
|
|
template.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
|