Module: ApplicationHelper
- Defined in:
- app/helpers/application_helper.rb
Overview
Copyright 2011-2013 innoQ Deutschland GmbH
Licensed under the Apache License, Version 2.0 (the “License”); you may not use this file except in compliance with the License. You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an “AS IS” BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License.
Constant Summary collapse
- GLYPHS =
{ yes: '✓', no: '✗' }
Instance Method Summary collapse
- #alert(type, opts = {}, &block) ⇒ Object
- #error_messages_for(object) ⇒ Object
- #glyph(name) ⇒ Object
- #html_classes(*args) ⇒ Object
- #icon(name, additional_css = '') ⇒ Object
-
#item_listing(items, &block) ⇒ Object
Formats a list of items or returns a remark if no items where given.
- #loading_indicator(label) ⇒ Object
- #login_logout ⇒ Object
- #page_header(args = {}, &block) ⇒ Object
- #page_title ⇒ Object
- #user_details(user) ⇒ Object
Instance Method Details
#alert(type, opts = {}, &block) ⇒ Object
82 83 84 85 86 87 88 89 90 91 92 93 94 |
# File 'app/helpers/application_helper.rb', line 82 def alert(type, opts = {}, &block) header = opts.delete(:header) html = ActiveSupport::SafeBuffer.new html << content_tag(:strong, header) if header html << capture(&block) type = :danger if type == 'error' content_tag(:div, class: "alert alert-#{type}") do html end end |
#error_messages_for(object) ⇒ Object
44 45 46 47 48 49 50 51 52 53 54 55 |
# File 'app/helpers/application_helper.rb', line 44 def (object) if object.errors.any? content_tag :div, class: 'alert alert-danger' do content_tag(:p, content_tag(:strong, t('txt.common.form_errors'))) << content_tag(:ul) do object.errors..each do |msg| concat content_tag(:li, msg) end end end end end |
#glyph(name) ⇒ Object
105 106 107 |
# File 'app/helpers/application_helper.rb', line 105 def glyph(name) raw GLYPHS[name] end |
#html_classes(*args) ⇒ Object
109 110 111 |
# File 'app/helpers/application_helper.rb', line 109 def html_classes(*args) args.compact.join(' ') end |
#icon(name, additional_css = '') ⇒ Object
96 97 98 99 100 101 102 103 |
# File 'app/helpers/application_helper.rb', line 96 def icon(name, additional_css = '') css_classes = %W(fa fa-#{name}) if additional_css.respond_to?(:split) css_classes << additional_css.split(' ') end content_tag :i, '', class: css_classes.join(' ') end |
#item_listing(items, &block) ⇒ Object
Formats a list of items or returns a remark if no items where given
32 33 34 35 36 37 38 39 40 41 42 |
# File 'app/helpers/application_helper.rb', line 32 def item_listing(items, &block) return ' '.html_safe if items.empty? content_tag :ul, class: 'entity_list' do items.map do |item| content_tag :li, class: (items.last == item ? 'last-child' : '') do block.call(item) end end.join("\n").html_safe end end |
#loading_indicator(label) ⇒ Object
121 122 123 |
# File 'app/helpers/application_helper.rb', line 121 def loading_indicator(label) "<i class=\"fa fa-spin fa-spinner\"></i> #{label}" end |
#login_logout ⇒ Object
74 75 76 77 78 79 80 |
# File 'app/helpers/application_helper.rb', line 74 def login_logout if current_user link_to t('txt.views.navigation.logout'), user_session_path, method: :delete else link_to t('txt.views.navigation.login'), new_user_session_path end end |
#page_header(args = {}, &block) ⇒ Object
57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 |
# File 'app/helpers/application_helper.rb', line 57 def page_header(args = {}, &block) if title = args[:title] content_for(:title, (title)) end content_for :page_header do content_tag :div, class: 'page-header' do res = content_tag :h1 do ("#{title} #{content_tag(:small, args[:desc]) if args[:desc]}").html_safe end res << capture(&block) if block_given? res end end end |
#page_title ⇒ Object
113 114 115 116 117 118 119 |
# File 'app/helpers/application_helper.rb', line 113 def page_title if content_for?(:title) "#{content_for(:title)} — #{Iqvoc.title}" else Iqvoc.title end end |
#user_details(user) ⇒ Object
23 24 25 26 27 28 29 |
# File 'app/helpers/application_helper.rb', line 23 def user_details(user) details = mail_to(user.email, user.name) if user.telephone_number? details << ' ' << user.telephone_number end details end |