aboutsummaryrefslogtreecommitdiffstats
path: root/spec/dummy/db/seeds/pages.rb
blob: 668687ff93ec02f5eecc577ea1b30c78d730f7ec (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
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
module Refinery
  ::Refinery::Page.reset_column_information
  
  # Check whether all columns are applied yet by seo_meta.
  unless !defined?(::SeoMeta) || ::SeoMeta.attributes.keys.all? { |k|
    ::Refinery::Page.translation_class.instance_methods.include?(k)
  }
    # Make pages model seo_meta because not all columns are accessible.
    ::Refinery::Page.translation_class.send :is_seo_meta
  end

  page_position = -1

  unless ::Refinery::Page.where(:menu_match => "^/$").any?
    home_page = ::Refinery::Page.create!({:title => "Home",
                :deletable => false,
                :link_url => "/",
                :menu_match => "^/$",
                :position => (page_position += 1)})
    home_page.parts.create({
                  :title => "Body",
                  :body => "<p>Welcome to our site. This is just a place holder page while we gather our content.</p>",
                  :position => 0
                })
    home_page.parts.create({
                  :title => "Side Body",
                  :body => "<p>This is another block of content over here.</p>",
                  :position => 1
                })

    home_page_position = -1
    page_not_found_page = home_page.children.create(:title => "Page not found",
                :menu_match => "^/404$",
                :show_in_menu => false,
                :deletable => false,
                :position => (home_page_position += 1))
    page_not_found_page.parts.create({
                  :title => "Body",
                  :body => "<h2>Sorry, there was a problem...</h2><p>The page you requested was not found.</p><p><a href='/'>Return to the home page</a></p>",
                  :position => 0
                })
  else
    page_position += 1
  end

  unless ::Refinery::Page.by_title("About").any?
    about_us_page = ::Refinery::Page.create(:title => "About",
                :deletable => true,
                :position => (page_position += 1))
    about_us_page.parts.create({
                  :title => "Body",
                  :body => "<p>This is just a standard text page example. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Proin metus dolor, hendrerit sit amet, aliquet nec, posuere sed, purus. Nullam et velit iaculis odio sagittis placerat. Duis metus tellus, pellentesque ut, luctus id, egestas a, lorem. Praesent vitae mauris. Aliquam sed nulla. Sed id nunc vitae leo suscipit viverra. Proin at leo ut lacus consequat rhoncus. In hac habitasse platea dictumst. Nunc quis tortor sed libero hendrerit dapibus.\n\nInteger interdum purus id erat. Duis nec velit vitae dolor mattis euismod. Class aptent taciti sociosqu ad litora torquent per conubia nostra, per inceptos himenaeos. Suspendisse pellentesque dignissim lacus. Nulla semper euismod arcu. Suspendisse egestas, erat a consectetur dapibus, felis orci cursus eros, et sollicitudin purus urna et metus. Integer eget est sed nunc euismod vestibulum. Integer nulla dui, tristique in, euismod et, interdum imperdiet, enim. Mauris at lectus. Sed egestas tortor nec mi.</p>",
                  :position => 0
                })
    about_us_page.parts.create({
                  :title => "Side Body",
                  :body => "<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Vivamus fringilla nisi a elit. Duis ultricies orci ut arcu. Ut ac nibh. Duis blandit rhoncus magna. Pellentesque semper risus ut magna. Etiam pulvinar tellus eget diam. Morbi blandit. Donec pulvinar mauris at ligula. Sed pellentesque, ipsum id congue molestie, lectus risus egestas pede, ac viverra diam lacus ac urna. Aenean elit.</p>",
                  :position => 1
                })
  else
    page_position += 1
  end
end