Sha256: a02b24d903ffd7f7cd927824407ee179f837bc40dfcdd0aa25002a0ebd722c0f
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