add links beside editable object uuids
[arvados.git] / apps / workbench / app / helpers / application_helper.rb
1 module ApplicationHelper
2   def current_user
3     controller.current_user
4   end
5
6   def current_api_host
7     Rails.configuration.arvados_v1_base.gsub /https?:\/\/|\/arvados\/v1/,''
8   end
9
10   def render_content_from_database(markup)
11     raw RedCloth.new(markup).to_html
12   end
13
14   def human_readable_bytes_html(n)
15     return h(n) unless n.is_a? Fixnum
16     raw = n.to_s
17     cooked = ''
18     while raw.length > 3
19       cooked = ',' + raw[-3..-1] + cooked
20       raw = raw[0..-4]
21     end
22     cooked = raw + cooked
23   end
24
25   def resource_class_for_uuid(attrvalue, opts={})
26     ArvadosBase::resource_class_for_uuid(attrvalue, opts)
27   end
28
29   def link_to_if_arvados_object(attrvalue, opts={}, style_opts={})
30     if (resource_class = resource_class_for_uuid(attrvalue, opts))
31       link_uuid = attrvalue.is_a?(ArvadosBase) ? attrvalue.uuid : attrvalue
32       link_name = opts[:link_text]
33       if !link_name
34         link_name = link_uuid
35         if opts[:with_class_name]
36           link_name = "#{resource_class.to_s} #{link_name}"
37         end
38       end
39       link_to link_name, { controller: resource_class.to_s.underscore.pluralize, action: 'show', id: link_uuid }, style_opts
40     else
41       attrvalue
42     end
43   end
44
45   def render_editable_attribute(object, attr, attrvalue=nil, htmloptions={})
46     attrvalue = object.send(attr) if attrvalue.nil?
47     return attrvalue if !object.attribute_editable? attr
48
49     input_type = 'text'
50     case object.class.attribute_info[attr.to_sym].andand[:type]
51     when 'text'
52       input_type = 'textarea'
53     when 'datetime'
54       input_type = 'date'
55     else
56       input_type = 'text'
57     end
58
59     attrvalue = attrvalue.to_json if attrvalue.is_a? Hash or attrvalue.is_a? Array
60
61     link_to attrvalue.to_s, '#', {
62       "data-emptytext" => "none",
63       "data-placement" => "bottom",
64       "data-type" => input_type,
65       "data-resource" => object.class.to_s.underscore,
66       "data-name" => attr,
67       "data-url" => url_for(action: "update", id: object.uuid, controller: object.class.to_s.pluralize.underscore),
68       "data-original-title" => "Update #{attr.gsub '_', ' '}",
69       :class => "editable"
70     }.merge(htmloptions)
71   end
72 end