Sha256: f50e2010dbfee7d580818a0af8418abb116a9c2404c43dc2b60235f71f5e5424

Contents?: true

Size: 847 Bytes

Versions: 34

Compression:

Stored size: 847 Bytes

Contents

# frozen_string_literal: true
# This module provides the body of an email export based on the document's semantic values
module Blacklight::Document::Sms
  # Return a text string that will be the body of the email
  def to_sms_text(config = nil)
    body = []

    if config
      body = config.sms_fields.map do |name, field|
        values = [self[name]].flatten
        "#{field.label} #{values.first}" if self[name].present?
      end
    end

    # Use to_semantic_values for backwards compatibility
    if body.empty?
      semantics = to_semantic_values
      body << I18n.t('blacklight.sms.text.title', value: semantics[:title].first) if semantics[:title].present?
      body << I18n.t('blacklight.sms.text.author', value: semantics[:author].first) if semantics[:author].present?
    end

    return body.join unless body.empty?
  end
end

Version data entries

34 entries across 34 versions & 2 rubygems

Version Path
blacklight-7.40.0 app/models/concerns/blacklight/document/sms.rb
blacklight-7.39.0 app/models/concerns/blacklight/document/sms.rb
blacklight-7.38.0 app/models/concerns/blacklight/document/sms.rb
blacklight-spotlight-3.6.0.beta8 vendor/bundle/ruby/3.2.0/gems/blacklight-7.37.0/app/models/concerns/blacklight/document/sms.rb
blacklight-7.37.0 app/models/concerns/blacklight/document/sms.rb
blacklight-7.36.2 app/models/concerns/blacklight/document/sms.rb
blacklight-7.36.1 app/models/concerns/blacklight/document/sms.rb
blacklight-7.36.0 app/models/concerns/blacklight/document/sms.rb
blacklight-7.35.0 app/models/concerns/blacklight/document/sms.rb
blacklight-7.34.0 app/models/concerns/blacklight/document/sms.rb
blacklight-7.33.1 app/models/concerns/blacklight/document/sms.rb
blacklight-7.33.0 app/models/concerns/blacklight/document/sms.rb
blacklight-7.32.0 app/models/concerns/blacklight/document/sms.rb
blacklight-7.31.0 app/models/concerns/blacklight/document/sms.rb
blacklight-7.30.0 app/models/concerns/blacklight/document/sms.rb
blacklight-7.29.0 app/models/concerns/blacklight/document/sms.rb
blacklight-7.28.0 app/models/concerns/blacklight/document/sms.rb
blacklight-7.27.1 app/models/concerns/blacklight/document/sms.rb
blacklight-7.27.0 app/models/concerns/blacklight/document/sms.rb
blacklight-7.26.1 app/models/concerns/blacklight/document/sms.rb