Module: Card::Set::Self::Search

Extended by:
Card::Set
Defined in:
tmpsets/set/mod020-search/self/search.rb

Overview

Set: The card "Search"

Defined Under Namespace

Modules: Format, HtmlFormat, JsonFormat

Class Method Summary collapse

Instance Method Summary collapse

Methods included from I18nScope

#mod_name, #scope

Methods included from Loader

#clean_empty_module_from_hash, #clean_empty_modules, #extended, #process_base_modules, #register_set

Methods included from Helpers

#abstract_set?, #all_set?, #num_set_parts, #shortname, #underscore

Methods included from AdvancedApi

#attachment, #ensure_set, #stage_method

Methods included from Format

#before, #format, layout_method_name, #view, view_method_name, view_setting_method_name, wrapper_method_name

Methods included from Inheritance

#include_set, #include_set_formats

Methods included from Basket

#abstract_basket, #add_to_basket, #basket, #unshift_basket

Methods included from Trait

#card_accessor, #card_reader, #card_writer, #require_field

Methods included from Event::Api

#event

Class Method Details

.source_locationObject



7
# File 'tmpsets/set/mod020-search/self/search.rb', line 7

def self.source_location; "/Users/ethan/dev/decko/gem/card/mod/search/set/self/search.rb"; end

Instance Method Details

#keyword_contains_wql?(hash) ⇒ Boolean

Returns:

  • (Boolean)


17
18
19
# File 'tmpsets/set/mod020-search/self/search.rb', line 17

def keyword_contains_wql? hash
  hash[:vars] && (keyword = hash[:vars][:keyword]) && keyword =~ /^\{.+\}$/
end

#parse_keyword_wql(args) ⇒ Object



13
14
15
# File 'tmpsets/set/mod020-search/self/search.rb', line 13

def parse_keyword_wql args
  parse_json_query(args[:vars][:keyword])
end

#query_args(args = {}) ⇒ Object



8
9
10
11
# File 'tmpsets/set/mod020-search/self/search.rb', line 8

def query_args args={}
  return super unless keyword_contains_wql? args
  args.merge parse_keyword_wql(args)
end