Module: Karafka::Web::Ui::Helpers::ApplicationHelper
- Included in:
- Base
- Defined in:
- lib/karafka/web/ui/helpers/application_helper.rb
Overview
Main application helper
Instance Method Summary collapse
-
#deep_merge(hash1, hash2) ⇒ Hash
Merges two hashes deeply, combining nested hashes recursively.
- #flat_hash(hash, parent_key = nil, result = {}) ⇒ Hash
-
#format_memory(mem_kb) ⇒ String
Formatted memory usage.
-
#icon(name) ⇒ String
Renders the svg icon out of our icon set.
-
#kafka_state_badge(state) ⇒ String
Takes a kafka report state and recommends background style color.
-
#lag_trend_badge(trend) ⇒ String
Takes the lag trend and gives it appropriate background style color for badge.
-
#lag_with_label(lag) ⇒ String
Lag if correct or
N/A
with labeled explanation. -
#lso_risk_state_badge(details) ⇒ String
Background classes for row marking.
-
#lso_risk_state_bg(details) ⇒ String
Background classes for row marking.
-
#nav_class(location) ⇒ Object
Adds active class to the current location in the nav if needed.
-
#normalized_metric(value) ⇒ String
Normalizes the metric value for display.
-
#number_with_delimiter(number, delimiter = ',') ⇒ String
Converts number to a more friendly delimiter based version.
-
#object_value_to_s(object) ⇒ String
Converts object into a string and for objects that would anyhow return their stringified instance value, it replaces it with the class name instead.
-
#offset_with_label(topic_name, partition_id, offset, explore: false) ⇒ String
Offset if correct or
N/A
with labeled explanation for offsets that are less than 0. -
#sort_link(name, attribute = nil, rev: false) ⇒ String
Html link for sorting with arrow when attribute sort enabled.
-
#status_badge(status) ⇒ String
Takes a status and recommends background style color.
-
#tags(tags_array) ⇒ String
Renders tags one after another.
-
#truncate(string, length: 50, omission: '...', strategy: :default) ⇒ String
Truncates given text if it is too long and wraps it with a title with full text.
-
#view_title(title) ⇒ String
Sets the particular page title.
Instance Method Details
#deep_merge(hash1, hash2) ⇒ Hash
Merges two hashes deeply, combining nested hashes recursively.
317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 |
# File 'lib/karafka/web/ui/helpers/application_helper.rb', line 317 def deep_merge(hash1, hash2) merged_hash = hash1.dup hash2.each_pair do |k, v| tv = merged_hash[k] merged_hash[k] = if tv.is_a?(Hash) && v.is_a?(Hash) deep_merge(tv, v) else v end end merged_hash end |
#flat_hash(hash, parent_key = nil, result = {}) ⇒ Hash
216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 |
# File 'lib/karafka/web/ui/helpers/application_helper.rb', line 216 def flat_hash(hash, parent_key = nil, result = {}) hash.each do |key, value| current_key = parent_key ? "#{parent_key}.#{key}" : key.to_s if value.is_a?(Hash) flat_hash(value, current_key, result) elsif value.is_a?(Array) value.each_with_index do |item, index| flat_hash({ index => item }, current_key, result) end else result[current_key] = value end end result end |
#format_memory(mem_kb) ⇒ String
Returns formatted memory usage.
108 109 110 111 112 113 114 115 116 117 118 |
# File 'lib/karafka/web/ui/helpers/application_helper.rb', line 108 def format_memory(mem_kb) return '0' if !mem_kb || mem_kb.zero? if mem_kb < 10_240 "#{number_with_delimiter(mem_kb.round(4))} KB" elsif mem_kb < 1_000_000 "#{number_with_delimiter((mem_kb / 1024.0).to_i)} MB" else "#{number_with_delimiter((mem_kb / (1024.0 * 1024.0)).round(1))} GB" end end |
#icon(name) ⇒ String
Renders the svg icon out of our icon set
308 309 310 |
# File 'lib/karafka/web/ui/helpers/application_helper.rb', line 308 def icon(name) render "shared/icons/_#{name}" end |
#kafka_state_badge(state) ⇒ String
Takes a kafka report state and recommends background style color
96 97 98 99 100 101 102 103 104 |
# File 'lib/karafka/web/ui/helpers/application_helper.rb', line 96 def kafka_state_badge(state) case state when 'up' then 'badge-success' when 'active' then 'badge-success' when 'steady' then 'badge-success' else 'badge-warning' end end |
#lag_trend_badge(trend) ⇒ String
Takes the lag trend and gives it appropriate background style color for badge
76 77 78 79 80 81 |
# File 'lib/karafka/web/ui/helpers/application_helper.rb', line 76 def lag_trend_badge(trend) bg = 'badge-success' if trend.negative? bg ||= 'badge-warning' if trend.positive? bg ||= 'badge-secondary' bg end |
#lag_with_label(lag) ⇒ String
Returns lag if correct or N/A
with labeled explanation.
135 136 137 138 139 140 141 142 |
# File 'lib/karafka/web/ui/helpers/application_helper.rb', line 135 def lag_with_label(lag) if lag.negative? title = 'Not available until first offset commit' %(<span class="badge badge-secondary" title="#{title}">N/A</span>) else lag.to_s end end |
#lso_risk_state_badge(details) ⇒ String
Returns background classes for row marking.
191 192 193 194 195 196 197 198 199 200 201 202 |
# File 'lib/karafka/web/ui/helpers/application_helper.rb', line 191 def lso_risk_state_badge(details) case details.lso_risk_state when :active '' when :at_risk 'badge-warning' when :stopped 'badge-error' else raise ::Karafka::Errors::UnsupportedCaseError end end |
#lso_risk_state_bg(details) ⇒ String
Returns background classes for row marking.
175 176 177 178 179 180 181 182 183 184 185 186 |
# File 'lib/karafka/web/ui/helpers/application_helper.rb', line 175 def lso_risk_state_bg(details) case details.lso_risk_state when :active '' when :at_risk 'bg-warning bg-opacity-25' when :stopped 'bg-error bg-opacity-25' else raise ::Karafka::Errors::UnsupportedCaseError end end |
#nav_class(location) ⇒ Object
Adds active class to the current location in the nav if needed
36 37 38 39 40 41 |
# File 'lib/karafka/web/ui/helpers/application_helper.rb', line 36 def nav_class(location) comparator, value = location.to_a.first local_location = request.path.gsub(env.fetch('SCRIPT_NAME'), '') local_location.public_send(:"#{comparator}?", value) ? 'active' : '' end |
#normalized_metric(value) ⇒ String
Normalizes the metric value for display. Negative values coming from statistics usually mean, that the value is not (yet) available.
168 169 170 |
# File 'lib/karafka/web/ui/helpers/application_helper.rb', line 168 def normalized_metric(value) value.negative? ? 'N/A' : value.to_s end |
#number_with_delimiter(number, delimiter = ',') ⇒ String
Converts number to a more friendly delimiter based version
124 125 126 127 128 129 130 |
# File 'lib/karafka/web/ui/helpers/application_helper.rb', line 124 def number_with_delimiter(number, delimiter = ',') return '' unless number parts = number.to_s.to_str.split('.') parts[0].gsub!(/(\d)(?=(\d\d\d)+(?!\d))/, "\\1#{delimiter}") parts.join('.') end |
#object_value_to_s(object) ⇒ String
Converts object into a string and for objects that would anyhow return their stringified instance value, it replaces it with the class name instead. Useful for deserializers, etc presentation.
49 50 51 |
# File 'lib/karafka/web/ui/helpers/application_helper.rb', line 49 def object_value_to_s(object) object.to_s.include?('#<') ? object.class.to_s : object.to_s end |
#offset_with_label(topic_name, partition_id, offset, explore: false) ⇒ String
Returns offset if correct or N/A
with labeled explanation for offsets that are less than 0. Offset with less than 0 indicates, that the offset was not yet committed and there is no value we know of.
151 152 153 154 155 156 157 158 159 160 161 |
# File 'lib/karafka/web/ui/helpers/application_helper.rb', line 151 def offset_with_label(topic_name, partition_id, offset, explore: false) if offset.negative? title = 'Not available until first offset commit' %(<span class="badge badge-secondary" title="#{title}">N/A</span>) elsif explore path = explorer_topics_path(topic_name, partition_id, offset) %(<a href="#{path}">#{offset}</a>) else offset.to_s end end |
#sort_link(name, attribute = nil, rev: false) ⇒ String
Returns html link for sorting with arrow when attribute sort enabled.
241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 |
# File 'lib/karafka/web/ui/helpers/application_helper.rb', line 241 def sort_link(name, attribute = nil, rev: false) unless attribute attribute = name if SORT_NAMES[attribute] name = SORT_NAMES[attribute] else name = attribute.to_s.tr('_', ' ').tr('?', '') # Always capitalize the name name = name.split(' ').map(&:capitalize).join(' ') end end arrow_both = '⇕' arrow_down = '▾' arrow_up = '▴' desc = "#{attribute} desc" asc = "#{attribute} asc" path = current_path(sort: desc) full_name = "#{name} #{arrow_both}" if params.current_sort == desc path = current_path(sort: asc) full_name = "#{name} #{rev ? arrow_up : arrow_down}" end if params.current_sort == asc path = current_path(sort: desc) full_name = "#{name} #{rev ? arrow_down : arrow_up}" end "<a class=\"sort\" href=\"#{path}\">#{full_name}</a>" end |
#status_badge(status) ⇒ String
Takes a status and recommends background style color
57 58 59 60 61 62 63 64 65 66 67 68 69 70 |
# File 'lib/karafka/web/ui/helpers/application_helper.rb', line 57 def status_badge(status) case status when 'initialized' then 'badge-success' when 'supervising' then 'badge-success' when 'running' then 'badge-success' when 'quieting' then 'badge-warning' when 'quiet' then 'badge-warning' when 'stopping' then 'badge-warning' when 'stopped' then 'badge-error' when 'terminated' then 'badge-error' else raise ::Karafka::Errors::UnsupportedCaseError, status end end |
#tags(tags_array) ⇒ String
Renders tags one after another
87 88 89 90 91 |
# File 'lib/karafka/web/ui/helpers/application_helper.rb', line 87 def () .map { |tag| %(<span class="badge badge-info">#{tag}</span>) } .join(' ') end |
#truncate(string, length: 50, omission: '...', strategy: :default) ⇒ String
Truncates given text if it is too long and wraps it with a title with full text. Can use a middle-based strategy that keeps beginning and ending of a string instead of keeping just the beginning.
The :middle
strategy is useful when we have strings such as really long process names that have important beginning and end but middle can be removed without risk of not allowing user to recognize the content.
289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 |
# File 'lib/karafka/web/ui/helpers/application_helper.rb', line 289 def truncate(string, length: 50, omission: '...', strategy: :default) return string if string.length <= length case strategy when :default truncated = string[0...(length - omission.length)] + omission when :middle part_length = (length - omission.length) / 2 truncated = string[0...part_length] + omission + string[-part_length..] else raise Karafka::Errors::UnsupportedCaseError, "Unknown strategy: #{strategy}" end %(<span title="#{string}">#{truncated}</span>) end |
#view_title(title) ⇒ String
Sets the particular page title
208 209 210 |
# File 'lib/karafka/web/ui/helpers/application_helper.rb', line 208 def view_title(title) content_for(:title) { title } end |