Sha256: 67b2c5b8058dce3caeb012aa15c230693db135515b9bf75b985ac7fae6b3029f
Contents?: true
Size: 922 Bytes
Versions: 8
Compression:
Stored size: 922 Bytes
Contents
module Effective module FormLogics class ShowIf < Effective::FormLogic def to_html(&block) disabled_was = @builder.disabled @builder.disabled = true unless show? content = content_tag(:div, options.merge(input_js_options), &block) @builder.disabled = disabled_was content end def options { style: ('display: none;' unless show?) } end def logic_options { name: tag_name(args.first), value: args.second.to_s }.merge(input_logic_options) end def input_logic_options args.third.kind_of?(Hash) ? args.third : {} end def validate!(args) raise "expected object to respond to #{args.first}" unless object.respond_to?(args.first) end def show? (object.send(args.first) == args.second) || (object.send(args.first).to_s == args.second.to_s) end end end end
Version data entries
8 entries across 8 versions & 1 rubygems