Class: Decidim::Budgets::Seeds

Inherits:
Seeds
  • Object
show all
Defined in:
lib/decidim/budgets/seeds.rb

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(participatory_space:) ⇒ Seeds

Returns a new instance of Seeds.



11
12
13
# File 'lib/decidim/budgets/seeds.rb', line 11

def initialize(participatory_space:)
  @participatory_space = participatory_space
end

Instance Attribute Details

#participatory_spaceObject (readonly)

Returns the value of attribute participatory_space.



9
10
11
# File 'lib/decidim/budgets/seeds.rb', line 9

def participatory_space
  @participatory_space
end

Instance Method Details

#callObject



15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
# File 'lib/decidim/budgets/seeds.rb', line 15

def call
  landing_page_content = Decidim::Faker::Localized.localized do
    "<h2>#{::Faker::Lorem.sentence}</h2>" \
      "<p>#{::Faker::Lorem.paragraph}</p>" \
      "<p>#{::Faker::Lorem.paragraph}</p>"
  end

  component = Decidim::Component.create!(
    name: Decidim::Components::Namer.new(participatory_space.organization.available_locales, :budgets).i18n_name,
    manifest_name: :budgets,
    published_at: Time.current,
    participatory_space:,
    settings: {
      landing_page_content:,
      more_information_modal: Decidim::Faker::Localized.paragraph(sentence_count: 4),
      workflow: Decidim::Budgets.workflows.keys.sample
    }
  )

  rand(1...3).times do
    Decidim::Budgets::Budget.create!(
      component:,
      title: Decidim::Faker::Localized.sentence(word_count: 2),
      description: Decidim::Faker::Localized.wrapped("<p>", "</p>") do
        Decidim::Faker::Localized.paragraph(sentence_count: 3)
      end,
      total_budget: ::Faker::Number.number(digits: 8)
    )
  end

  Decidim::Budgets::Budget.where(component:).each do |budget|
    rand(2...4).times do
      project = Decidim::Budgets::Project.create!(
        budget:,
        scope: participatory_space.organization.scopes.sample,
        category: participatory_space.categories.sample,
        title: Decidim::Faker::Localized.sentence(word_count: 2),
        description: Decidim::Faker::Localized.wrapped("<p>", "</p>") do
          Decidim::Faker::Localized.paragraph(sentence_count: 3)
        end,
        budget_amount: ::Faker::Number.between(from: Integer(budget.total_budget * 0.7), to: budget.total_budget)
      )

      attachment_collection = create_attachment_collection(collection_for: project)
      create_attachment(attached_to: project, filename: "Exampledocument.pdf", attachment_collection:)
      create_attachment(attached_to: project, filename: "city.jpeg")
      create_attachment(attached_to: project, filename: "Exampledocument.pdf")

      Decidim::Comments::Seed.comments_for(project)
    end
  end
end