Sha256: 511169d08fc77ef0c48100c0d62f93c15717517901190d2213f1d318dceaee15

Contents?: true

Size: 1.27 KB

Versions: 9

Compression:

Stored size: 1.27 KB

Contents

module SocialShareButton
  module Helper
    def social_share_button_tag(title = "", opts = {})
      opts[:allow_sites] ||= SocialShareButton.config.allow_sites

      extra_data = {}
      rel = opts[:rel]
      html = []
      html << "<div class='social-share-button' data-title='#{h title}' data-img='#{opts[:image]}'"
      html << "data-url='#{opts[:url]}' data-desc='#{opts[:desc]}' data-via='#{opts[:via]}'>"

      opts[:allow_sites].each do |name|
        extra_data = opts.select { |k, _| k.to_s.start_with?('data') } if name.eql?('tumblr')
        special_data = opts.select { |k, _| k.to_s.start_with?('data-' + name) }
        
        special_data["data-wechat-footer"] = t "social_share_button.wechat_footer" if name == "wechat"

        link_title = t "social_share_button.share_to", :name => t("social_share_button.#{name.downcase}")
        html << link_to("", "#", { :rel => ["nofollow", rel],
                                   "data-site" => name,
                                   :class => "ssb-icon ssb-#{name}",
                                   :onclick => "return SocialShareButton.share(this);",
                                   :title => h(link_title) }.merge(extra_data).merge(special_data))
      end
      html << "</div>"
      raw html.join("\n")
    end
  end
end

Version data entries

9 entries across 9 versions & 1 rubygems

Version Path
social-share-button-1.2.4 lib/social_share_button/helper.rb
social-share-button-1.2.3 lib/social_share_button/helper.rb
social-share-button-1.2.2 lib/social_share_button/helper.rb
social-share-button-1.2.1 lib/social_share_button/helper.rb
social-share-button-1.2.0 lib/social_share_button/helper.rb
social-share-button-1.1.0 lib/social_share_button/helper.rb
social-share-button-1.0.0 lib/social_share_button/helper.rb
social-share-button-0.10.0 lib/social_share_button/helper.rb
social-share-button-0.9.0 lib/social_share_button/helper.rb