X-Git-Url: https://git.arvados.org/arvados.git/blobdiff_plain/b7e7c0861ed70524e8aff0aa82a35a887619dff8..39c17737ac69d7693684fe2f95bef0ec235a28bf:/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 e5bc0bfe92..106716a0f7 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 @@ -270,10 +278,10 @@ 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) @@ -418,6 +426,30 @@ module ApplicationHelper lt end + def get_cwl_main(workflow) + if workflow[:"$graph"].nil? + return workflow + else + workflow[:"$graph"].each do |tool| + if tool[:id] == "#main" + return tool + end + end + end + end + + def get_cwl_inputs(workflow) + get_cwl_main(workflow)[:inputs] + 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 @@ -427,7 +459,7 @@ module ApplicationHelper elsif input_schema[:type].is_a? Hash primary_type = input_schema[:type] end - param_id = input_schema[:id] + param_id = cwl_shortname(input_schema[:id]) return required, primary_type, param_id end @@ -510,7 +542,7 @@ module ApplicationHelper "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 #{input_schema[:id]}", + "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, @@ -526,7 +558,7 @@ module ApplicationHelper "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 #{input_schema[:id]}", + "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, @@ -536,7 +568,7 @@ module ApplicationHelper :id => id }.merge(htmloptions) elsif primary_type.is_a? String - if ["float", "double", "int", "long"].include? primary_type + if ["int", "long"].include? primary_type datatype = "number" else datatype = "text" @@ -547,7 +579,7 @@ module ApplicationHelper "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 #{input_schema[:id]}", + "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, @@ -584,6 +616,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", @@ -598,6 +631,7 @@ module ApplicationHelper "Trait" => "fa-clipboard", "User" => "fa-user", "VirtualMachine" => "fa-terminal", + "Workflow" => "fa-gears", } DEFAULT_ICON_CLASS = "fa-cube" @@ -645,6 +679,12 @@ module ApplicationHelper 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)