Class: Alchemy::Content

Inherits:
BaseRecord
  • Object
show all
Includes:
Factory, Hints, Logger
Defined in:
app/models/alchemy/content.rb

Defined Under Namespace

Modules: Factory

Class Method Summary collapse

Instance Method Summary collapse

Methods included from Factory

#create_essence!, #definition

Methods included from Hints

#has_hint?, #hint

Methods included from Logger

#log_warning, warn

Methods inherited from BaseRecord

#active_record_5_1?

Class Method Details

.translated_label_for(content_name, element_name = nil) ⇒ Object

Returns the translated label for a content name.

Translate it in your locale yml file:

alchemy:
  content_names:
    foo: Bar

Optionally you can scope your content name to an element:

alchemy:
  content_names:
    article:
      foo: Baz


71
72
73
74
75
76
77
# File 'app/models/alchemy/content.rb', line 71

def translated_label_for(content_name, element_name = nil)
  Alchemy.t(
    content_name,
    scope: "content_names.#{element_name}",
    default: Alchemy.t("content_names.#{content_name}", default: content_name.humanize)
  )
end

Instance Method Details

#default_text(default) ⇒ Object

Returns the default value from content definition

If the value is a symbol it gets passed through i18n inside the alchemy.default_content_texts scope



238
239
240
241
242
243
244
245
# File 'app/models/alchemy/content.rb', line 238

def default_text(default)
  case default
  when Symbol
    Alchemy.t(default, scope: :default_content_texts)
  else
    default
  end
end

#dom_idObject

Returns a string used as dom id on html elements.



176
177
178
179
# File 'app/models/alchemy/content.rb', line 176

def dom_id
  return '' if essence.nil?
  "#{essence_partial_name}_#{id}"
end

#editorObject



226
227
228
# File 'app/models/alchemy/content.rb', line 226

def editor
  @_editor ||= ContentEditor.new(self)
end

#essence_partial_nameObject



201
202
203
204
# File 'app/models/alchemy/content.rb', line 201

def essence_partial_name
  return '' if essence.nil?
  essence.partial_name
end

#essence_validation_failed?Boolean

Returns:

  • (Boolean)


167
168
169
# File 'app/models/alchemy/content.rb', line 167

def essence_validation_failed?
  essence.errors.any?
end

#has_custom_tinymce_config?Boolean

Returns true if there is a tinymce setting defined that contains settings.

Returns:

  • (Boolean)


217
218
219
# File 'app/models/alchemy/content.rb', line 217

def has_custom_tinymce_config?
  settings[:tinymce].is_a?(Hash)
end

#has_tinymce?Boolean

Returns true if there is a tinymce setting defined on the content definiton or if the essence.has_tinymce? returns true.

Returns:

  • (Boolean)


212
213
214
# File 'app/models/alchemy/content.rb', line 212

def has_tinymce?
  settings[:tinymce].present? || (essence.present? && essence.has_tinymce?)
end

#has_validations?Boolean

Returns:

  • (Boolean)


171
172
173
# File 'app/models/alchemy/content.rb', line 171

def has_validations?
  definition['validate'].present?
end

#ingredientObject

Gets the ingredient from essence



121
122
123
124
# File 'app/models/alchemy/content.rb', line 121

def ingredient
  return nil if essence.nil?
  essence.ingredient
end

#ingredient=(value) ⇒ Object

Sets the ingredient from essence



146
147
148
149
# File 'app/models/alchemy/content.rb', line 146

def ingredient=(value)
  raise EssenceMissingError if essence.nil?
  essence.ingredient = value
end

#linked?Boolean

Returns:

  • (Boolean)


186
187
188
# File 'app/models/alchemy/content.rb', line 186

def linked?
  essence && !essence.link.blank?
end

#name_for_labelObject

Returns the translated name for displaying in labels, etc.



182
183
184
# File 'app/models/alchemy/content.rb', line 182

def name_for_label
  self.class.translated_label_for(name, element.name)
end

#normalized_essence_typeObject



206
207
208
# File 'app/models/alchemy/content.rb', line 206

def normalized_essence_type
  self.class.normalize_essence_type(essence_type)
end

#preview_content?Boolean

Returns true if this content should be taken for element preview.

Returns:

  • (Boolean)


191
192
193
# File 'app/models/alchemy/content.rb', line 191

def preview_content?
  !!definition['as_element_title']
end

#preview_text(maxlength = 30) ⇒ Object

Proxy method that returns the preview text from essence.



197
198
199
# File 'app/models/alchemy/content.rb', line 197

def preview_text(maxlength = 30)
  essence.preview_text(maxlength)
end

#serializeObject

Serialized object representation for json api



128
129
130
131
132
133
134
# File 'app/models/alchemy/content.rb', line 128

def serialize
  {
    name: name,
    value: serialized_ingredient,
    link: essence.try(:link)
  }.delete_if { |_k, v| v.blank? }
end

#serialized_ingredientObject

Ingredient value from essence for json api

If the essence responds to serialized_ingredient method it takes this otherwise it uses the ingredient column.



141
142
143
# File 'app/models/alchemy/content.rb', line 141

def serialized_ingredient
  essence.try(:serialized_ingredient) || ingredient
end

#settingsObject

Settings from the elements.yml definition



100
101
102
103
# File 'app/models/alchemy/content.rb', line 100

def settings
  return {} if definition.blank?
  @settings ||= definition.fetch(:settings, {})
end

#settings_value(key, options = {}) ⇒ Object

Fetches value from settings

Parameters:

  • key (Symbol)
    • The hash key you want to fetch the value from

  • options (Hash) (defaults to: {})
    • An optional Hash that can override the settings.

    Normally passed as options hash into the content editor view.



111
112
113
# File 'app/models/alchemy/content.rb', line 111

def settings_value(key, options = {})
  settings.update(options || {}).symbolize_keys[key.to_sym]
end

#siblingsObject



115
116
117
118
# File 'app/models/alchemy/content.rb', line 115

def siblings
  return [] if !element
  element.contents
end

#tinymce_class_nameObject

Returns css class names for the content textarea.



222
223
224
# File 'app/models/alchemy/content.rb', line 222

def tinymce_class_name
  "has_tinymce" + (has_custom_tinymce_config? ? " #{element.name}_#{name}" : "")
end

#to_partial_pathObject

The content’s view partial is dependent from its name

Define contents

Contents are defined in the config/alchemy/elements.yml file

- name: article
  contents:
  - name: headline
    type: EssenceText

Override the view

Content partials live in app/views/alchemy/essences



95
96
97
# File 'app/models/alchemy/content.rb', line 95

def to_partial_path
  "alchemy/essences/#{essence_partial_name}_view"
end

#update_essence(params = {}) ⇒ Object

Updates the essence.

Called from Alchemy::Element#update_contents

Adds errors to self.base if essence validation fails.



157
158
159
160
161
162
163
164
165
# File 'app/models/alchemy/content.rb', line 157

def update_essence(params = {})
  raise EssenceMissingError if essence.nil?
  if essence.update(params)
    return true
  else
    errors.add(:essence, :validation_failed)
    return false
  end
end