5417: add "unreadable inputs provided" visual cue for an editable pipeline instance.
[arvados.git] / apps / workbench / app / views / pipeline_instances / _show_components.html.erb
1 <% if !@object.state.in? ['New', 'Ready'] %>
2
3   <%
4      job_uuids = @object.components.map { |k,j| j.is_a? Hash and j[:job].andand[:uuid] }.compact
5      throttle = @object.state.start_with?('Running') ? 5000 : 15000
6      %>
7   <div class="arv-log-refresh-control"
8        data-load-throttle="<%= throttle %>"
9        data-object-uuids="<%= @object.uuid %> <%= job_uuids.join(' ') %>"
10        ></div>
11
12   <%= render_pipeline_components("running", :json) %>
13
14 <% else %>
15   <%# state is either New or Ready %>
16   <% if controller.class.name.eql?('PipelineInstancesController') and unreadable_inputs_present? %>
17     <div class="unreadable-inputs-present">
18       <p style="color:#ff6666"> One or more inputs provided are not readable by you. Please correct these before you can run the pipeline.</p>
19     </div>
20   <% end %>
21
22   <p><i>Here are all of the pipeline's components (jobs that will need to run in order to complete the pipeline). If you know what you're doing (or you're experimenting) you can modify these parameters before starting the pipeline. Usually, you only need to edit the settings presented on the "Inputs" tab above.</i></p>
23
24   <%= render_pipeline_components("editable", :json, editable: true) %>
25 <% end %>