Merge branch 'master' into 3193-manage-account
[arvados.git] / apps / workbench / app / views / pipeline_instances / _show_components.html.erb
1 <% if !@object.state.in? ['New', 'Ready'] %>
2
3   <% pipeline_job_uuids = [] %>
4
5   <div class="pull-right">
6     Current state: <span class="badge badge-info" data-pipeline-state="<%= @object.state %>"><%= @object.state.sub('OnServer', '') %></span>&nbsp;
7   </div>
8
9   <%= render_pipeline_components("running", :json, pipeline_job_uuids: pipeline_job_uuids) %>
10
11   <% if @object.state.in? %w(RunningOnServer RunningOnClient Failed) %>
12
13       <h4>Log messages from jobs</h4>
14       <% log_history = pipeline_log_history((pipeline_job_uuids || []) + [@object.uuid]) %>
15       <div class="arv-log-event-listener arv-log-event-handler-append-logs arv-job-log-window" id="pipeline_event_log_div" data-object-uuids="<%= @object.uuid %> <%=(pipeline_job_uuids || []).join(" ")%>">
16         <% log_history.each do |entry| %>
17           <%=entry%><br/>
18         <% end %>
19       </div>
20
21   <% end %>
22
23 <% else %>
24   <%# state is either New or Ready %>
25   <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>
26
27   <%= render_pipeline_components("editable", :json, editable: true) %>
28 <% end %>