Sha256: c0426a587dd6eea0e80f90143ab3067bd3ac6dec40f52943af59d33be8d04906

Contents?: true

Size: 1.57 KB

Versions: 3

Compression:

Stored size: 1.57 KB

Contents

module Tagtical::Taggable
  module Cache
    def self.included(base)
      # Skip adding caching capabilities if table not exists or no cache columns exist
      return unless base.table_exists? && base.tag_types.any? { |context| base.column_names.include?("cached_#{context.to_s.singularize}_list") }

      base.send :include, Tagtical::Taggable::Cache::InstanceMethods
      base.extend Tagtical::Taggable::Cache::ClassMethods
      
      base.class_eval do
        before_save :save_cached_tag_list        
      end
      
      base.initialize_tagtical_cache
    end
    
    module ClassMethods
      def initialize_tagtical_cache
        tag_types.map(&:to_s).each do |tag_type|
          class_eval %(
            def self.caching_#{tag_type.singularize}_list?
              caching_tag_list_on?("#{tag_type}")
            end        
          )
        end        
      end
      
      def acts_as_taggable(*args)
        super(*args)
        initialize_tagtical_cache
      end
      
      def caching_tag_list_on?(context)
        column_names.include?("cached_#{context.to_s.singularize}_list")
      end
    end
    
    module InstanceMethods      
      def save_cached_tag_list
        tag_types.each do |tag_type|
          if self.class.send("caching_#{tag_type.singularize}_list?")
            if tag_list_cache_set_on?(tag_type)
              list = tag_list_cache_on(tag_type.singularize).to_a.flatten.compact.join(', ')
              self["cached_#{tag_type.singularize}_list"] = list
            end
          end
        end
        
        true
      end
    end
  end
end

Version data entries

3 entries across 3 versions & 1 rubygems

Version Path
tagtical-1.0.8 lib/tagtical/taggable/cache.rb
tagtical-1.0.7 lib/tagtical/taggable/cache.rb
tagtical-1.0.6 lib/tagtical/taggable/cache.rb