Sha256: 06239ad8e5a64ec488faafc05b379870d3235bb046d67a2d6fe48c886f17e0a7

Contents?: true

Size: 1.15 KB

Versions: 8

Compression:

Stored size: 1.15 KB

Contents

# frozen_string_literal: true

module Spotlight
  ##
  # Exhibit curator contact information
  class Contact < ActiveRecord::Base
    belongs_to :exhibit, touch: true, optional: true
    scope :published, -> { where(show_in_sidebar: true) }
    default_scope { order('weight ASC') }
    serialize :contact_info, Hash

    extend FriendlyId
    friendly_id :name, use: %i[slugged scoped finders], scope: :exhibit

    belongs_to :avatar, class_name: 'Spotlight::ContactImage', dependent: :destroy, optional: true
    accepts_nested_attributes_for :avatar, update_only: true, reject_if: proc { |attr| attr['iiif_tilesource'].blank? }

    before_save do
      self.contact_info = contact_info.symbolize_keys
    end

    before_save on: :create do
      self.show_in_sidebar = true if show_in_sidebar.nil?
    end

    def self.fields
      @fields ||= { title: { itemprop: 'jobTitle' },
                    location: { itemprop: 'workLocation' },
                    email: { helper: :render_contact_email_address },
                    telephone: {} }
    end

    protected

    def should_generate_new_friendly_id?
      super || (name_changed? && persisted?)
    end
  end
end

Version data entries

8 entries across 8 versions & 1 rubygems

Version Path
blacklight-spotlight-3.0.0.alpha.10 app/models/spotlight/contact.rb
blacklight-spotlight-3.0.0.alpha.9 app/models/spotlight/contact.rb
blacklight-spotlight-3.0.0.alpha.8 app/models/spotlight/contact.rb
blacklight-spotlight-3.0.0.alpha.7 app/models/spotlight/contact.rb
blacklight-spotlight-3.0.0.alpha.6 app/models/spotlight/contact.rb
blacklight-spotlight-3.0.0.alpha.5 app/models/spotlight/contact.rb
blacklight-spotlight-3.0.0.alpha.4 app/models/spotlight/contact.rb
blacklight-spotlight-3.0.0.alpha.3 app/models/spotlight/contact.rb