X-Git-Url: https://git.arvados.org/arvados.git/blobdiff_plain/5b1602a521d3f6689f5988cdc2b25b74ff9fc1e1..0561bd0c3c07257fd58ded6c7cfa5feeae97af57:/apps/workbench/app/helpers/application_helper.rb diff --git a/apps/workbench/app/helpers/application_helper.rb b/apps/workbench/app/helpers/application_helper.rb index a8b88a351f..57b8d8780c 100644 --- a/apps/workbench/app/helpers/application_helper.rb +++ b/apps/workbench/app/helpers/application_helper.rb @@ -1,3 +1,7 @@ +# Copyright (C) The Arvados Authors. All rights reserved. +# +# SPDX-License-Identifier: AGPL-3.0 + module ApplicationHelper def current_user controller.current_user @@ -126,7 +130,11 @@ module ApplicationHelper else begin if resource_class.name == 'Collection' - link_name = collections_for_object(link_uuid).andand.first.andand.friendly_link_name + if CollectionsHelper.match(link_uuid) + link_name = collection_for_pdh(link_uuid).andand.first.andand.portable_data_hash + else + link_name = collections_for_object(link_uuid).andand.first.andand.friendly_link_name + end else link_name = object_for_dataclass(resource_class, link_uuid).andand.friendly_link_name end @@ -222,7 +230,10 @@ module ApplicationHelper return_value end - def render_editable_attribute(object, attr, attrvalue=nil, htmloptions={}) + # Render an editable attribute with the attrvalue of the attr. + # The htmloptions are added to the editable element's list of attributes. + # The nonhtml_options are only used to customize the display of the element. + def render_editable_attribute(object, attr, attrvalue=nil, htmloptions={}, nonhtml_options={}) attrvalue = object.send(attr) if attrvalue.nil? if not object.attribute_editable?(attr) if attrvalue && attrvalue.length > 0 @@ -267,18 +278,23 @@ module ApplicationHelper "data-placement" => "bottom", "data-type" => input_type, "data-title" => "Edit #{attr.to_s.gsub '_', ' '}", - "data-name" => attr, + "data-name" => htmloptions['selection_name'] || attr, "data-object-uuid" => object.uuid, "data-toggle" => "manual", - "data-value" => attrvalue, + "data-value" => htmloptions['data-value'] || attrvalue, "id" => span_id, :class => "editable #{is_textile?( object, attr ) ? 'editable-textile' : ''}" }.merge(htmloptions).merge(ajax_options) + edit_tiptitle = 'edit' edit_tiptitle = 'Warning: do not use hyphens in the repository name as they will be stripped' if (object.class.to_s == 'Repository' and attr == 'name') - edit_button = raw('') - if htmloptions[:btnplacement] == :left + + edit_button = raw('' + (nonhtml_options[:btntext] || '') + '') + + if nonhtml_options[:btnplacement] == :left edit_button + ' ' + span_tag + elsif nonhtml_options[:btnplacement] == :top + edit_button + raw('
') + span_tag else span_tag + ' ' + edit_button end @@ -368,11 +384,11 @@ module ApplicationHelper success: 'page-refresh' }.to_json, }) - is_readable_input = attrvalue.present? and object_readable attrvalue, Collection + return content_tag('div', :class => 'input-group') do html = text_field_tag(dn, display_value, :class => - "form-control #{'required' if required} #{'unreadable-input' if !attrvalue.andand.empty? and !is_readable_input}") + "form-control #{'required' if required} #{'unreadable-input' if attrvalue.present? and !object_readable(attrvalue, Collection)}") html + content_tag('span', :class => 'input-group-btn') do link_to('Choose', modal_path, @@ -410,6 +426,168 @@ module ApplicationHelper lt end + def get_cwl_inputs(workflow) + if workflow[:inputs] + return workflow[:inputs] + else + workflow[:"$graph"].each do |tool| + if tool[:id] == "#main" + return tool[:inputs] + end + end + end + end + + def cwl_shortname(id) + if id[0] == "#" + id = id[1..-1] + end + return id.split("/")[-1] + end + + def cwl_input_info(input_schema) + required = !(input_schema[:type].include? "null") + if input_schema[:type].is_a? Array + primary_type = input_schema[:type].select { |n| n != "null" }[0] + elsif input_schema[:type].is_a? String + primary_type = input_schema[:type] + elsif input_schema[:type].is_a? Hash + primary_type = input_schema[:type] + end + param_id = cwl_shortname(input_schema[:id]) + return required, primary_type, param_id + end + + def cwl_input_value(object, input_schema, set_attr_path) + dn = "" + attrvalue = object + set_attr_path.each do |a| + dn += "[#{a}]" + attrvalue = attrvalue[a.to_sym] + end + return dn, attrvalue + end + + def cwl_inputs_required(object, inputs_schema, set_attr_path) + r = 0 + inputs_schema.each do |input| + required, primary_type, param_id = cwl_input_info(input) + dn, attrvalue = cwl_input_value(object, input, set_attr_path + [param_id]) + r += 1 if required and attrvalue.nil? + end + r + end + + def render_cwl_input(object, input_schema, set_attr_path, htmloptions={}) + required, primary_type, param_id = cwl_input_info(input_schema) + + dn, attrvalue = cwl_input_value(object, input_schema, set_attr_path + [param_id]) + attrvalue = if attrvalue.nil? then "" else attrvalue end + + id = "#{object.uuid}-#{param_id}" + + opt_empty_selection = if required then [] else [{value: "", text: ""}] end + + if ["Directory", "File"].include? primary_type + chooser_title = "Choose a #{primary_type == 'Directory' ? 'dataset' : 'file'}:" + selection_param = object.class.to_s.underscore + dn + if attrvalue.is_a? Hash + display_value = attrvalue[:"arv:collection"] || attrvalue[:location] + re = CollectionsHelper.match_uuid_with_optional_filepath(display_value) + if re + if re[4] + display_value = "#{Collection.find(re[1]).name} / #{re[4][1..-1]}" + else + display_value = Collection.find(re[1]).name + end + end + end + modal_path = choose_collections_path \ + ({ title: chooser_title, + filters: [['owner_uuid', '=', object.owner_uuid]].to_json, + action_name: 'OK', + action_href: container_request_path(id: object.uuid), + action_method: 'patch', + preconfigured_search_str: "", + action_data: { + merge: true, + use_preview_selection: primary_type == 'File' ? true : nil, + selection_param: selection_param, + success: 'page-refresh' + }.to_json, + }) + + return content_tag('div', :class => 'input-group') do + html = text_field_tag(dn, display_value, + :class => + "form-control #{'required' if required}") + html + content_tag('span', :class => 'input-group-btn') do + link_to('Choose', + modal_path, + { :class => "btn btn-primary", + :remote => true, + :method => 'get', + }) + end + end + elsif "boolean" == primary_type + return link_to attrvalue.to_s, '#', { + "data-emptytext" => "none", + "data-placement" => "bottom", + "data-type" => "select", + "data-source" => (opt_empty_selection + [{value: "true", text: "true"}, {value: "false", text: "false"}]).to_json, + "data-url" => url_for(action: "update", id: object.uuid, controller: object.class.to_s.pluralize.underscore, merge: true), + "data-title" => "Set value for #{cwl_shortname(input_schema[:id])}", + "data-name" => dn, + "data-pk" => "{id: \"#{object.uuid}\", key: \"#{object.class.to_s.underscore}\"}", + "data-value" => attrvalue.to_s, + # "clear" button interferes with form-control's up/down arrows + "data-clear" => false, + :class => "editable #{'required' if required} form-control", + :id => id + }.merge(htmloptions) + elsif primary_type.is_a? Hash and primary_type[:type] == "enum" + return link_to attrvalue, '#', { + "data-emptytext" => "none", + "data-placement" => "bottom", + "data-type" => "select", + "data-source" => (opt_empty_selection + primary_type[:symbols].map {|i| {:value => i, :text => i} }).to_json, + "data-url" => url_for(action: "update", id: object.uuid, controller: object.class.to_s.pluralize.underscore, merge: true), + "data-title" => "Set value for #{cwl_shortname(input_schema[:id])}", + "data-name" => dn, + "data-pk" => "{id: \"#{object.uuid}\", key: \"#{object.class.to_s.underscore}\"}", + "data-value" => attrvalue, + # "clear" button interferes with form-control's up/down arrows + "data-clear" => false, + :class => "editable #{'required' if required} form-control", + :id => id + }.merge(htmloptions) + elsif primary_type.is_a? String + if ["int", "long"].include? primary_type + datatype = "number" + else + datatype = "text" + end + + return link_to attrvalue, '#', { + "data-emptytext" => "none", + "data-placement" => "bottom", + "data-type" => datatype, + "data-url" => url_for(action: "update", id: object.uuid, controller: object.class.to_s.pluralize.underscore, merge: true), + "data-title" => "Set value for #{cwl_shortname(input_schema[:id])}", + "data-name" => dn, + "data-pk" => "{id: \"#{object.uuid}\", key: \"#{object.class.to_s.underscore}\"}", + "data-value" => attrvalue, + # "clear" button interferes with form-control's up/down arrows + "data-clear" => false, + :class => "editable #{'required' if required} form-control", + :id => id + }.merge(htmloptions) + else + return "Unable to render editing control for parameter type #{primary_type}" + end + end + def render_arvados_object_list_start(list, button_text, button_href, params={}, *rest, &block) show_max = params.delete(:show_max) || 3 @@ -433,6 +611,7 @@ module ApplicationHelper RESOURCE_CLASS_ICONS = { "Collection" => "fa-archive", + "ContainerRequest" => "fa-gears", "Group" => "fa-users", "Human" => "fa-male", # FIXME: Use a more inclusive icon. "Job" => "fa-gears", @@ -447,6 +626,7 @@ module ApplicationHelper "Trait" => "fa-clipboard", "User" => "fa-user", "VirtualMachine" => "fa-terminal", + "Workflow" => "fa-gears", } DEFAULT_ICON_CLASS = "fa-cube" @@ -490,6 +670,16 @@ module ApplicationHelper raw("#{date}") end + def render_time duration, use_words, round_to_min=true + render_runtime duration, use_words, round_to_min + end + + # Keep locators are expected to be of the form \"...\" + JSON_KEEP_LOCATOR_REGEXP = /(.*)(([0-9a-f]{32}\+\d+)(.*)\"(.*))/ + def keep_locator_in_json str + JSON_KEEP_LOCATOR_REGEXP.match str + end + private def is_textile?( object, attr ) is_textile = object.textile_attributes.andand.include?(attr)