Class: ActiveScaffold::Config::Search

Inherits:
Base show all
Defined in:
lib/active_scaffold/config/search.rb

Constant Summary collapse

ActiveScaffold::DataStructures::ActionLink.new('show_search', :label => :search, :type => :collection, :security_method => :search_authorized?, :ignore_method => :search_ignore?)
@@text_search =
:full
@@split_terms =
" "

Instance Attribute Summary collapse

Attributes inherited from Base

#action_group, #user

Class Method Summary collapse

Instance Method Summary collapse

Methods inherited from Base

#crud_type, #formats, #formats=, inherited, #label

Methods included from ActiveScaffold::Configurable

#configure, #method_missing

Constructor Details

#initialize(core_config) ⇒ Search

Returns a new instance of Search.



5
6
7
8
9
10
11
12
13
# File 'lib/active_scaffold/config/search.rb', line 5

def initialize(core_config)
  super
  @text_search = self.class.text_search
  @live = self.class.live?
  @split_terms = self.class.split_terms

  # start with the ActionLink defined globally
  @link = self.class.link.clone
end

Dynamic Method Handling

This class handles dynamic methods through the method_missing method in the class ActiveScaffold::Configurable

Instance Attribute Details

the ActionLink for this action



65
66
67
# File 'lib/active_scaffold/config/search.rb', line 65

def link
  @link
end

#live=(value) ⇒ Object (writeonly)

whether submits the search as you type



68
69
70
# File 'lib/active_scaffold/config/search.rb', line 68

def live=(value)
  @live = value
end

#split_termsObject

Returns the value of attribute split_terms.



62
63
64
# File 'lib/active_scaffold/config/search.rb', line 62

def split_terms
  @split_terms
end

#text_searchObject

A flag for how the search should do full-text searching in the database:

  • :full: LIKE %?%

  • :start: LIKE ?%

  • :end: LIKE %?

  • false: LIKE ?

Default is :full



60
61
62
# File 'lib/active_scaffold/config/search.rb', line 60

def text_search
  @text_search
end

Class Method Details

.live?Boolean

Returns:

  • (Boolean)


33
34
35
# File 'lib/active_scaffold/config/search.rb', line 33

def self.live?
  @@live
end

Instance Method Details

#columnsObject

provides access to the list of columns specifically meant for the Search to use



44
45
46
47
48
49
50
# File 'lib/active_scaffold/config/search.rb', line 44

def columns
  # we want to delay initializing to the @core.columns set for as long as possible. Too soon and .search_sql will not be available to .searchable?
  unless @columns
    self.columns = @core.columns.collect{|c| c.name if @core.columns._inheritable.include?(c.name) and c.searchable? and c.column and c.column.text?}.compact
  end
  @columns
end

#live?Boolean

Returns:

  • (Boolean)


69
70
71
# File 'lib/active_scaffold/config/search.rb', line 69

def live?
  @live
end