Class: Trenni::Formatters::HTML::OptionSelect

Inherits:
Object
  • Object
show all
Defined in:
lib/trenni/formatters/html/option_select.rb

Overview

Standard drop-down select box:

Class Method Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(formatter, options, builder) ⇒ OptionSelect

Returns a new instance of OptionSelect.



34
35
36
37
38
39
40
41
42
# File 'lib/trenni/formatters/html/option_select.rb', line 34

def initialize(formatter, options, builder)
	@formatter = formatter
	@object = formatter.object
	@field = options[:field]
	
	@options = options
	
	@builder = builder
end

Class Method Details

.call(formatter, options, builder, &block) ⇒ Object



28
29
30
31
32
# File 'lib/trenni/formatters/html/option_select.rb', line 28

def self.call(formatter, options, builder, &block)
	instance = self.new(formatter, options, builder)
	
	instance.call(options, &block)
end

Instance Method Details

#call(options = {}, &block) ⇒ Object



119
120
121
122
123
124
125
126
127
128
129
# File 'lib/trenni/formatters/html/option_select.rb', line 119

def call(options = {}, &block)
	Builder.fragment(@builder) do |builder|
		builder.tag :select, select_attributes_for(options) do
			if options[:optional]
				item(:title => '', :value => '', :builder => builder)
			end
			
			builder.append Trenni::Template.capture(self, &block)
		end
	end
end

#group(options = {}, &block) ⇒ Object



97
98
99
100
101
102
103
104
105
106
107
# File 'lib/trenni/formatters/html/option_select.rb', line 97

def group(options = {}, &block)
	Builder.fragment(@builder) do |builder|
		builder.tag :optgroup, group_attributes_for(options) do
			if options[:optional]
				item(:title => '', :value => '', :builder => builder)
			end
			
			builder.append Trenni::Template.capture(&block)
		end
	end
end

#group_attributes_for(options) ⇒ Object



88
89
90
91
92
93
94
95
# File 'lib/trenni/formatters/html/option_select.rb', line 88

def group_attributes_for(options)
	return {
		:label => title_for(options),
		:id => options[:id],
		:class => options[:class],
		:data => options[:data],
	}
end

#item(options = {}) ⇒ Object



80
81
82
83
84
85
86
# File 'lib/trenni/formatters/html/option_select.rb', line 80

def item(options = {})
	options[:field] ||= 'id'
	
	Builder.fragment(options[:builder]) do |builder|
		builder.inline(:option, option_attributes_for(options)) { builder.text title_for(options) }
	end
end

#name_for(options) ⇒ Object



44
45
46
47
48
49
50
51
52
# File 'lib/trenni/formatters/html/option_select.rb', line 44

def name_for(options)
	if name = @formatter.name_for(options)
		if options[:multiple]
			name = "#{name}[]"
		end
		
		return name
	end
end

#option_attributes_for(options) ⇒ Object



70
71
72
73
74
75
76
77
78
# File 'lib/trenni/formatters/html/option_select.rb', line 70

def option_attributes_for(options)
	return {
		:value => value_for(options),
		:selected => options.fetch(:selected){ raw_value == raw_value_for(options) },
		:id => options[:id],
		:class => options[:class],
		:data => options[:data],
	}
end

#raw_valueObject



58
59
60
# File 'lib/trenni/formatters/html/option_select.rb', line 58

def raw_value
	@raw_value ||= raw_value_for(@options)
end

#raw_value_for(options) ⇒ Object



54
55
56
# File 'lib/trenni/formatters/html/option_select.rb', line 54

def raw_value_for(options)
	@formatter.raw_value_for(options)
end

#select_attributes_for(options) ⇒ Object



109
110
111
112
113
114
115
116
117
# File 'lib/trenni/formatters/html/option_select.rb', line 109

def select_attributes_for(options)
	return {
		:name => name_for(options),
		:id => options[:id],
		:class => options[:class],
		:multiple => options[:multiple],
		:data => options[:data],
	}
end

#title_for(options) ⇒ Object



66
67
68
# File 'lib/trenni/formatters/html/option_select.rb', line 66

def title_for(options)
	@formatter.title_for(options)
end

#value_for(options) ⇒ Object



62
63
64
# File 'lib/trenni/formatters/html/option_select.rb', line 62

def value_for(options)
	@formatter.value_for(options)
end