Sha256: 9129c446c37f5a22469e57489c478e3574c0aff0b11f706265254749add7fac8

Contents?: true

Size: 1.04 KB

Versions: 11

Compression:

Stored size: 1.04 KB

Contents

# frozen_string_literal: true

module Jekyll
  class RelatedPosts
    class << self
      attr_accessor :lsi
    end

    attr_reader :post, :site

    def initialize(post)
      @post = post
      @site = post.site
      Jekyll::External.require_with_graceful_fail("classifier-reborn") if site.lsi
    end

    def build
      return [] unless site.posts.docs.size > 1

      if site.lsi
        build_index
        lsi_related_posts
      else
        most_recent_posts
      end
    end

    def build_index
      self.class.lsi ||= begin
        lsi = ClassifierReborn::LSI.new(:auto_rebuild => false)
        Jekyll.logger.info("Populating LSI...")

        site.posts.docs.each do |x|
          lsi.add_item(x)
        end

        Jekyll.logger.info("Rebuilding index...")
        lsi.build_index
        Jekyll.logger.info("")
        lsi
      end
    end

    def lsi_related_posts
      self.class.lsi.find_related(post, 11)
    end

    def most_recent_posts
      @most_recent_posts ||= (site.posts.docs.reverse - [post]).first(10)
    end
  end
end

Version data entries

11 entries across 11 versions & 2 rubygems

Version Path
jekyll-3.6.3 lib/jekyll/related_posts.rb
jekyll-3.7.4 lib/jekyll/related_posts.rb
jekyll-3.7.3 lib/jekyll/related_posts.rb
jekyll-3.7.2 lib/jekyll/related_posts.rb
jekyll-3.7.0 lib/jekyll/related_posts.rb
jekyll-docs-3.6.2 lib/jekyll/related_posts.rb
jekyll-docs-3.6.1 lib/jekyll/related_posts.rb
jekyll-3.6.2 lib/jekyll/related_posts.rb
jekyll-3.6.1 lib/jekyll/related_posts.rb
jekyll-3.6.0 lib/jekyll/related_posts.rb
jekyll-3.6.0.pre.beta1 lib/jekyll/related_posts.rb