Sha256: d52c040d12f9fecc91c73945b98abc3788b3490eeb116e67e905603efaecd694

Contents?: true

Size: 1.95 KB

Versions: 8

Compression:

Stored size: 1.95 KB

Contents

# frozen_string_literal: true

module Maglev
  class Page < ApplicationRecord
    ## concerns ##
    include Maglev::Translatable
    include Maglev::SectionsConcern
    include Maglev::Page::PathConcern
    include Maglev::Page::SearchConcern

    ## translations ##
    translates :title, presence: true
    translates :sections
    translates :seo_title, :meta_description
    translates :og_title, :og_description, :og_image_url

    ## scopes ##
    scope :home, ->(locale = nil) { by_path('index', locale) }
    scope :visible, -> { where(visible: true) }
    scope :by_id_or_path, lambda { |id_or_path, locale = nil|
                            joins(:paths).where(id: id_or_path).or(core_by_path(id_or_path, locale))
                          }
    scope :by_path, ->(path, locale = nil) { core_by_path(path, locale).joins(:paths) }
    scope :core_by_path, lambda { |path, locale = nil|
                           where(paths: { locale: locale || Maglev::I18n.current_locale, value: path })
                         }

    ## methods ##

    def index?
      path == 'index'
    end

    def static?
      false
    end

    def translate_in(locale, source_locale)
      %i[title sections seo_title meta_description og_title og_description og_image_url].each do |attr|
        translate_attr_in(attr, locale, source_locale)
      end
    end
  end
end

# == Schema Information
#
# Table name: maglev_pages
#
#  id                            :bigint           not null, primary key
#  lock_version                  :integer
#  meta_description_translations :jsonb
#  og_description_translations   :jsonb
#  og_image_url_translations     :jsonb
#  og_title_translations         :jsonb
#  sections_translations         :jsonb
#  seo_title_translations        :jsonb
#  title_translations            :jsonb
#  visible                       :boolean          default(TRUE)
#  created_at                    :datetime         not null
#  updated_at                    :datetime         not null
#

Version data entries

8 entries across 8 versions & 1 rubygems

Version Path
maglevcms-1.8.0 app/models/maglev/page.rb
maglevcms-1.7.3 app/models/maglev/page.rb
maglevcms-1.7.2 app/models/maglev/page.rb
maglevcms-1.7.1 app/models/maglev/page.rb
maglevcms-1.7.0 app/models/maglev/page.rb
maglevcms-1.6.1 app/models/maglev/page.rb
maglevcms-1.6.0 app/models/maglev/page.rb
maglevcms-1.5.1 app/models/maglev/page.rb