Module: RocketCMS

Defined in:
lib/rocket_cms.rb,
lib/rocket_cms/admin.rb,
lib/rocket_cms/model.rb,
lib/rocket_cms/patch.rb,
lib/rocket_cms/engine.rb,
lib/rocket_cms/models/menu.rb,
lib/rocket_cms/models/news.rb,
lib/rocket_cms/models/page.rb,
lib/rocket_cms/configuration.rb,
lib/rocket_cms/controllers/news.rb,
lib/rocket_cms/controllers/pages.rb,
lib/rocket_cms/controllers/search.rb,
lib/rocket_cms/controllers/contacts.rb,
lib/rocket_cms/models/contact_message.rb

Defined Under Namespace

Modules: Controller, Controllers, ElasticSearch, Model, Models Classes: Configuration, Engine, PatchDSL

Constant Summary collapse

@@patches =
{}

Class Method Summary collapse

Class Method Details

.apply_patches(s) ⇒ Object



41
42
43
44
45
46
47
48
49
50
51
52
53
# File 'lib/rocket_cms/patch.rb', line 41

def self.apply_patches(s)
  if s.class.name.index('RailsAdmin::Config::Sections::').nil?
    if s.class.name == 'RailsAdmin::Config::Model'
      s.instance_eval(&@@patches[s.abstract_model.model_name][:admin]) unless @@patches[s.abstract_model.model_name].nil?
    else
      s.instance_eval(&@@patches[s.name][:model]) unless @@patches[s.name].nil?
    end
  else
    model = s.abstract_model.model_name
    action = s.class.name.split('::')[-1].downcase.to_sym
    s.instance_eval(&@@patches[model][action]) unless @@patches[model].nil?
  end
end

.configurationObject



2
3
4
# File 'lib/rocket_cms/configuration.rb', line 2

def self.configuration
  @configuration ||= Configuration.new
end

.configure {|configuration| ... } ⇒ Object

Yields:



6
7
8
# File 'lib/rocket_cms/configuration.rb', line 6

def self.configure
  yield configuration
end

.contact_message_configObject



89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
# File 'lib/rocket_cms/admin.rb', line 89

def contact_message_config
  Proc.new {
    navigation_label I18n.t('rs.settings')
    field :c_at do
      read_only true
    end
    field :name
    field :content
    field :email
    field :phone

    RocketCMS.apply_patches self
    RocketCMS.only_patches self, [:show, :list, :edit, :export]
  }
end

.map_configObject



3
4
5
6
7
8
9
10
11
12
13
14
15
16
# File 'lib/rocket_cms/admin.rb', line 3

def map_config
  Proc.new {
    active true
    label I18n.t('rs.map')
    field :address, :string
    field :map_address, :string
    field :map_hint, :string
    field :coordinates, :string do
      read_only true
    end
    field :lat
    field :lon
  }
end


79
80
81
82
83
84
85
86
87
# File 'lib/rocket_cms/admin.rb', line 79

def menu_config
  Proc.new {
      navigation_label 'CMS'
      field :text_slug
      field :name
      RocketCMS.apply_patches self
      RocketCMS.only_patches self, [:show, :list, :edit, :export]
  }
end

.news_configObject



105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
# File 'lib/rocket_cms/admin.rb', line 105

def news_config
  Proc.new {
    navigation_label I18n.t('rs.cms')

    field :enabled, :toggle
    field :time
    field :name
    unless RocketCMS.configuration.news_image_styles.nil?
      field :image
    end
    field :excerpt
    RocketCMS.apply_patches self

    edit do
      field :content, :ck_editor
      RocketCMS.apply_patches self
      group :seo, &RocketCMS.seo_config
    end

    RocketCMS.only_patches self, [:show, :list, :export]
  }
end

.only_patches(s, sections) ⇒ Object



31
32
33
34
35
36
37
38
39
# File 'lib/rocket_cms/patch.rb', line 31

def self.only_patches(s, sections)
  s.instance_eval do
    sections.each do |section|
      send section do
        RocketCMS.apply_patches self
      end
    end
  end
end

.page_configObject



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
67
68
69
70
71
72
73
74
75
76
77
# File 'lib/rocket_cms/admin.rb', line 33

def page_config
  Proc.new {
    RocketCMS.apply_patches self
    navigation_label I18n.t('rs.cms')
    list do
      field :enabled,  :toggle
      field :menus, :menu
      field :name
      field :fullpath do
        pretty_value do
          bindings[:view].(:a, bindings[:object].fullpath, href: bindings[:object].fullpath)
        end
      end
      field :redirect
      field :slug
      RocketCMS.apply_patches self
    end
    edit do
      field :name
      field :content, :ck_editor
      RocketCMS.apply_patches self
      group :menu do
        label I18n.t('rs.menu')
        field :menus
        field :fullpath, :string do
          help I18n.t('rs.with_final_slash')
        end
        field :regexp, :string do
          help I18n.t('rs.page_url_regex')
        end
        field :redirect, :string do
          help I18n.t('rs.final_in_menu')
        end
        field :text_slug do
          read_only true
        end
      end
      group :seo, &RocketCMS.seo_config
    end
    RocketCMS.only_patches self, [:show, :export]
    nested_set({
      max_depth: RocketCMS.configuration.menu_max_depth
    })
  }
end

.patch(model, &blk) ⇒ Object



55
56
57
# File 'lib/rocket_cms/patch.rb', line 55

def self.patch(model, &blk)
   @@patches[model] = PatchDSL.call(&blk)
end

.seo_configObject



18
19
20
21
22
23
24
25
26
27
28
29
30
31
# File 'lib/rocket_cms/admin.rb', line 18

def seo_config
  Proc.new {
    active false
    label "SEO"
    field :h1, :string
    field :title, :string
    field :keywords, :string
    field :description, :string
    field :robots, :string

    field :og_title, :string
    field :og_image
  }
end