Sha256: 98826f9c9ff1eb0663240e906d19eed6d1520e9374471bd2da9241cb75274358

Contents?: true

Size: 1.55 KB

Versions: 7

Compression:

Stored size: 1.55 KB

Contents

format :html do
  view :title do |args|
    vars = root.search_params[:vars]
    if vars && vars[:keyword]
      args[:title] = %(Search results for: <span class="search-keyword">)\
                         "#{vars[:keyword]}</span>"
    end
    super args
  end
end

format :json do
  view :complete do
    term = complete_term
    exact = Card.fetch term, new: {}

    {
      search: true,
      add: add_item(exact),
      new: new_item_of_type(exact),
      goto: goto_items(term, exact)
    }
  end

  def add_item exact
    return unless exact.new_card? &&
                  exact.cardname.valid? &&
                  !exact.virtual? &&
                  exact.ok?(:create)
    exact.name
  end

  def new_item_of_type exact
    return unless (exact.type_id == Card::CardtypeID) &&
                  Card.new(type_id: exact.id).ok?(:create)
    [exact.name, exact.cardname.url_key]
  end

  def goto_items term, exact
    goto_names = Card.search goto_wql(term), "goto items for term: #{term}"
    goto_names.unshift exact.name if add_exact_to_goto_names? exact, goto_names
    goto_names.map do |name|
      [name, highlight(name, term), name.to_name.url_key]
    end
  end

  def add_exact_to_goto_names? exact, goto_names
    exact.known? && !goto_names.find { |n| n.to_name.key == exact.key }
  end

  def complete_term
    term = params['_keyword']
    if (term =~ /^\+/) && (main = params['main'])
      term = main + term
    end
    term
  end

  # hacky.  here for override
  def goto_wql term
    { complete: term, limit: 8, sort: 'name', return: 'name' }
  end
end

Version data entries

7 entries across 7 versions & 1 rubygems

Version Path
card-1.18.6 mod/05_standard/set/self/search.rb
card-1.18.5 mod/05_standard/set/self/search.rb
card-1.18.4 mod/05_standard/set/self/search.rb
card-1.18.3 mod/05_standard/set/self/search.rb
card-1.18.2 mod/05_standard/set/self/search.rb
card-1.18.1 mod/05_standard/set/self/search.rb
card-1.18.0 mod/05_standard/set/self/search.rb