Sha256: 70db1e5750bfae48bfd00a5beab55013ad547a0786a96f7bccb0e6fec21e16cf

Contents?: true

Size: 1.09 KB

Versions: 6

Compression:

Stored size: 1.09 KB

Contents

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

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

    belongs_to :avatar, class_name: 'Spotlight::ContactImage', dependent: :destroy
    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

6 entries across 6 versions & 1 rubygems

Version Path
blacklight-spotlight-0.34.1 app/models/spotlight/contact.rb
blacklight-spotlight-0.34.0 app/models/spotlight/contact.rb
blacklight-spotlight-0.33.3 app/models/spotlight/contact.rb
blacklight-spotlight-0.33.2 app/models/spotlight/contact.rb
blacklight-spotlight-0.33.1 app/models/spotlight/contact.rb
blacklight-spotlight-0.33.0 app/models/spotlight/contact.rb