Module: CmseditHelper
- Included in:
- DcPollRenderer
- Defined in:
- app/helpers/cmsedit_helper.rb
Overview
CmseditHelper module defines common methods used for DRGCMS forms.
Instance Attribute Summary collapse
-
#js ⇒ Object
readonly
javascript part created by form helpers.
Instance Method Summary collapse
-
#dc_field_action(yaml) ⇒ Object
Creates code for including data entry field in index actions.
-
#dc_field_label_help(options) ⇒ Object
Return field code, label and help text for a field defined on a DRG Form.
-
#dc_get_field_form_definition(name) ⇒ Object
Will return field form definition if field is defined on form.
- #dc_html_data(yaml) ⇒ Object
-
#dc_link_ajax_window_submit_action(yaml, record = nil, action_active = true) ⇒ Object
Creates code for link, ajax or windows action for index or form actions.
- #dc_log_exception(exception) ⇒ Object
-
#dc_script_action(yaml) ⇒ Object
Creates code for script action type.
Instance Attribute Details
#js ⇒ Object (readonly)
javascript part created by form helpers
31 32 33 |
# File 'app/helpers/cmsedit_helper.rb', line 31 def js @js end |
Instance Method Details
#dc_field_action(yaml) ⇒ Object
Creates code for including data entry field in index actions.
107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 |
# File 'app/helpers/cmsedit_helper.rb', line 107 def dc_field_action(yaml) # assign value if value found in parameters if params['record'] value = params['record'][yaml['name']] params["p_#{yaml['name']}"] = value end # if ( field_definition = dc_get_field_form_definition(yaml['name']) ) field, label, help = dc_field_label_help(field_definition) else yaml['type'] = yaml['field_type'] field, label, help = dc_field_label_help(yaml) end # input field will have label as placeholder field = field.sub('input',"input placeholder=\"#{label}\"") %Q[<li class="no-background">#{field}</li>] end |
#dc_field_label_help(options) ⇒ Object
Return field code, label and help text for a field defined on a DRG Form.
Parameters: options : Hash : Field definition
Returns:
field_html : String : HTML code for field definition
label : String : Label text
help : String : Help text
75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 |
# File 'app/helpers/cmsedit_helper.rb', line 75 def dc_field_label_help() # no label or help in comments unless %w(comment action).include?(['type']) caption = ['caption'] || ['text'] label = if caption.blank? t_name(['name'], ['name'].capitalize.gsub('_',' ') ) elsif ['name'] t(caption, caption) end # help text can be defined in form or in translations starting with helpers. or as helpers.help.collection.field help = if ['help'] ['help'].match('helpers.') ? t(['help']) : ['help'] end help ||= t('helpers.help.' + @form['table'] + '.' + ['name'],' ') if ['name'] end # create field object from class and call its render method klass_string = ['type'].camelize field_html = if DrgcmsFormFields.const_defined?(klass_string) # when field type defined klass = DrgcmsFormFields.const_get(klass_string) field = klass.new(self, @record, ).render @js << field.js @css << field.css field.html else # litle error string "Error: Field type #{options['type']} not defined!" end [field_html, label, help] end |
#dc_get_field_form_definition(name) ⇒ Object
Will return field form definition if field is defined on form. Field definition will be used for input field on the form.
48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 |
# File 'app/helpers/cmsedit_helper.rb', line 48 def dc_get_field_form_definition(name) #:nodoc: return nil if @form['form'].nil? @form['form']['tabs'].each do |tab| # Array with 2 elements. First is tabname, second is data my_fields = tab.last my_fields.each {|k,v| return v if (k.class == Integer and v['name'] == name) } end if @form['form']['tabs'] # I know. But nice. # @form['form']['fields'].each do |field| next unless field.first.class == Integer # options return field.last if field.last['name'] == name end if @form['form']['fields'] nil end |
#dc_html_data(yaml) ⇒ Object
129 130 131 132 |
# File 'app/helpers/cmsedit_helper.rb', line 129 def dc_html_data(yaml) return '' if yaml.blank? yaml.inject(' ') {|result, e| result << "#{e.first}=\"#{e.last}\" "} end |
#dc_link_ajax_window_submit_action(yaml, record = nil, action_active = true) ⇒ Object
Creates code for link, ajax or windows action for index or form actions.
Parameters:
yaml: Hash : Action definition
record : Object : Currently selected record if available
action_active : Boolean : Is action active or disabled
Returns:
String : HTML code for action
145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 |
# File 'app/helpers/cmsedit_helper.rb', line 145 def dc_link_ajax_window_submit_action(yaml, record=nil, action_active=true) parms = {} caption = yaml['caption'] ? t("#{yaml['caption'].downcase}", yaml['caption']) : nil icon = yaml['icon'] ? "#{fa_icon(yaml['icon'])}" : '' # action is not active unless dc_is_action_active?(yaml) return "<li class=\"dc-link-no\">#{icon} #{caption}</li>" end # set data-confirm when confirm yaml['html'] ||= {} confirm = yaml['html']['data-confirm'] || yaml['confirm'] yaml['html']['data-confirm'] = t(confirm) unless confirm.blank? # direct url if yaml['url'] parms['controller'] = yaml['url'] parms['idr'] = dc_document_path(record) if record # make url from action controller else parms['controller'] = yaml['controller'] || 'cmsedit' parms['action'] = yaml['action'] parms['table'] = yaml['table'] parms['form_name'] = yaml['form_name'] parms['control'] = yaml['control'] if yaml['control'] parms['id'] = record.id if record end # add current id to parameters parms['id'] = dc_document_path(record) if record # overwrite with or add additional parameters from environment or record yaml['params'].each { |k,v| parms[k] = dc_value_for_parameter(v) } if yaml['params'] parms['table'] = parms['table'].underscore if parms['table'] # might be CamelCase # error if controller parameter is missing if parms['controller'].nil? && parms['url'].nil? "<li>#{'Controller not defined'}</li>" else yaml['caption'] ||= yaml['text'] html_data = dc_html_data(yaml['html']) # url = url_for(parms) rescue 'URL error' request = yaml['request'] || yaml['method'] || 'get' if yaml['type'] == 'ajax' # ajax button clas = "dc-link-ajax dc-animate" %Q[<li class="#{clas}" data-url="#{action_active ? url : ''}" #{html_data} data-request="#{request}" title="#{yaml['title']}">#{icon}#{caption}</li>] elsif yaml['type'] == 'submit' # submit button # It's dirty hack, but will prevent not authorized message and render index action correctly parms[:filter] = 'on' url = url_for(parms) rescue 'URL error' clas = "dc-action-submit" %Q[<li class="#{clas}" data-url="#{action_active ? url : ''}" #{html_data} data-request="#{request}" title="#{yaml['title']}">#{icon}#{caption}</li>] elsif yaml['type'] == 'link' # link button clas = "dc-link dc-animate" link = dc_link_to(yaml['caption'],yaml['icon'], parms, {target: yaml['target'], html: yaml['html']} ) %Q[<li class="#{clas}">#{action_active ? link : caption}</li>] elsif yaml['type'] == 'window' clas = "dc-link dc-animate dc-window-open" %Q[<li class="#{clas}" data-url="#{action_active ? url : ''}" #{html_data}>#{icon}#{caption}</li>] else '<li>Action Type error</li>' end end end |
#dc_log_exception(exception) ⇒ Object
216 217 218 219 220 221 |
# File 'app/helpers/cmsedit_helper.rb', line 216 def dc_log_exception(exception) log = exception ? "\n!!!Error: #{exception.message}\n#{exception.backtrace.first.inspect}\n" : '' log << "DRG Form processing line: #{session[:form_processing]}\n" logger.error log end |
#dc_script_action(yaml) ⇒ Object
Creates code for script action type.
36 37 38 39 40 41 42 |
# File 'app/helpers/cmsedit_helper.rb', line 36 def dc_script_action(yaml) # data = {'request' => 'script', 'script' => yaml['js'] || yaml['script'] } # %Q[<li class="dc-link-ajax with-link dc-animate">#{ dc_link_to(yaml['caption'], yaml['icon'], '#', data: data ) }</li>] icon = dc_icon_for_link yaml['icon'] data = %Q[data-request="script" data-script="#{yaml['js'] || yaml['script']}"] %Q[<li class="dc-link-ajax dc-animate" #{data}>#{icon} #{ t(yaml['caption'],yaml['caption']) }</li>] end |