Class: Spotlight::Page

Inherits:
ActiveRecord::Base
  • Object
show all
Extended by:
FriendlyId
Defined in:
app/models/spotlight/page.rb

Overview

Base page class. See AboutPage, FeaturePage, HomePage rubocop:disable Metrics/ClassLength

Direct Known Subclasses

AboutPage, FeaturePage, HomePage

Constant Summary collapse

MAX_PAGES =
1000

Instance Method Summary collapse

Instance Method Details

#about_page?Boolean



91
92
93
# File 'app/models/spotlight/page.rb', line 91

def about_page?
  is_a? AboutPage
end

#clone_for_locale(locale) ⇒ Object



131
132
133
134
135
136
137
138
139
140
141
142
143
# File 'app/models/spotlight/page.rb', line 131

def clone_for_locale(locale)
  dup.tap do |np|
    np.locale = locale
    np.default_locale_page = self
    np.published = false

    if !top_level_page? && (parent_translation = parent_page.translated_page_for(locale)).present?
      np.parent_page = parent_translation
    end

    child_pages.for_locale(locale).update(parent_page: np) if top_level_page? && respond_to?(:child_pages)
  end
end

#content=(content) ⇒ Object



53
54
55
56
57
58
59
60
# File 'app/models/spotlight/page.rb', line 53

def content=(content)
  if content.is_a? Array
    super content.to_json
  else
    super
  end
  content_changed!
end

#content?Boolean Also known as: has_content?



62
63
64
# File 'app/models/spotlight/page.rb', line 62

def content?
  self[:content].present? && content.present?
end

#content_changed!Object



49
50
51
# File 'app/models/spotlight/page.rb', line 49

def content_changed!
  @content = nil
end

#display_sidebar?Boolean



67
68
69
# File 'app/models/spotlight/page.rb', line 67

def display_sidebar?
  true
end

#feature_page?Boolean



87
88
89
# File 'app/models/spotlight/page.rb', line 87

def feature_page?
  is_a? FeaturePage
end


71
72
73
# File 'app/models/spotlight/page.rb', line 71

def featured_image
  nil
end

#home_page?Boolean



95
96
97
# File 'app/models/spotlight/page.rb', line 95

def home_page?
  is_a? HomePage
end

#lock!(user) ⇒ Object



117
118
119
# File 'app/models/spotlight/page.rb', line 117

def lock!(user)
  create_lock(by: user).tap(&:current_session!) unless lock.present?
end

#should_display_title?Boolean



113
114
115
# File 'app/models/spotlight/page.rb', line 113

def should_display_title?
  title.present?
end

#should_generate_new_friendly_id?Boolean



107
108
109
110
111
# File 'app/models/spotlight/page.rb', line 107

def should_generate_new_friendly_id?
  return false if new_record? && slug.present?

  super || (title_changed? && persisted?)
end

#thumbnail_image_urlObject



75
76
77
78
79
# File 'app/models/spotlight/page.rb', line 75

def thumbnail_image_url
  return unless thumbnail && thumbnail.iiif_url

  thumbnail.iiif_url
end

#to_partial_pathObject

explicitly set the partial path so that we don’t have to duplicate view logic.



83
84
85
# File 'app/models/spotlight/page.rb', line 83

def to_partial_path
  'spotlight/pages/page'
end

#top_level_page?Boolean



99
100
101
# File 'app/models/spotlight/page.rb', line 99

def top_level_page?
  try(:parent_page).blank?
end

#top_level_page_or_selfObject



103
104
105
# File 'app/models/spotlight/page.rb', line 103

def top_level_page_or_self
  parent_page || self
end

#translated_page_for(locale) ⇒ Object



127
128
129
# File 'app/models/spotlight/page.rb', line 127

def translated_page_for(locale)
  translated_pages.for_locale(locale).first
end

#updated_after?(other_page) ⇒ Boolean



121
122
123
124
125
# File 'app/models/spotlight/page.rb', line 121

def updated_after?(other_page)
  return false unless other_page

  updated_at > other_page.updated_at
end