_form.html.erb 5.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116
  1. <% if @agent.errors.any? %>
  2. <div class="row well">
  3. <h2><%= pluralize(@agent.errors.count, "error") %> prohibited this Agent from being saved:</h2>
  4. <% @agent.errors.full_messages.each do |msg| %>
  5. <p class='text-warning'><%= msg %></p>
  6. <% end %>
  7. </div>
  8. <% end %>
  9. <%= form_for(@agent,
  10. :as => :agent,
  11. :url => @agent.new_record? ? agents_path : agent_path(@agent),
  12. :method => @agent.new_record? ? "POST" : "PUT") do |f| %>
  13. <div class="row">
  14. <div class="col-md-6">
  15. <div class="row">
  16. <!-- Form controls width restricted -->
  17. <div class="col-md-8">
  18. <% if @agent.new_record? %>
  19. <div class="form-group type-select">
  20. <%= f.label :type %>
  21. <%= f.select :type, options_for_select(Agent.types.map(&:to_s).sort.map {|type| [type.gsub(/^.*::/, ''), type] }, @agent.type), {}, :class => 'select2 form-control' %>
  22. </div>
  23. <% end %>
  24. <div class="form-group type-select">
  25. <%= f.label :name %>
  26. <%= f.text_field :name, :class => 'form-control' %>
  27. </div>
  28. <div class='oauthable-form'>
  29. <%= render partial: 'oauth_dropdown' %>
  30. </div>
  31. <div class="form-group">
  32. <%= f.label :schedule, :class => 'control-label' %>
  33. <div class="schedule-region" data-can-be-scheduled="<%= @agent.can_be_scheduled? %>">
  34. <%= f.select :schedule, options_for_select(Agent::SCHEDULES.map {|s| [s.humanize.titleize, s] }, @agent.schedule), {}, :class => 'form-control' %>
  35. <span class='cannot-be-scheduled text-info'>This type of Agent cannot be scheduled.</span>
  36. </div>
  37. </div>
  38. <div class='event-related-region' data-can-create-events="<%= @agent.can_create_events? %>">
  39. <div class="form-group">
  40. <%= f.label :keep_events_for, "Keep events" %>
  41. <span class="glyphicon glyphicon-question-sign hover-help" data-content="In order to conserve disk space, you can choose to have events created by this Agent expire after a certain period of time. Make sure you keep them long enough to allow any subsequent Agents to make use of them."></span>
  42. <%= f.select :keep_events_for, options_for_select(Agent::EVENT_RETENTION_SCHEDULES, @agent.keep_events_for), {}, :class => 'form-control' %>
  43. </div>
  44. </div>
  45. <div class="form-group">
  46. <%= f.label :sources %>
  47. <div class="link-region" data-can-receive-events="<%= @agent.can_receive_events? %>">
  48. <% eventSources = (current_user.agents - [@agent]).find_all { |a| a.can_create_events? } %>
  49. <%= f.select(:source_ids,
  50. options_for_select(eventSources.map {|s| [s.name, s.id] },
  51. @agent.source_ids),
  52. {}, { :multiple => true, :size => 5, :class => 'select2 form-control' }) %>
  53. <span class='cannot-receive-events text-info'>This type of Agent cannot receive events.</span>
  54. <%= f.label :propagate_immediately, :class => 'propagate-immediately' do %>Propagate immediately
  55. <%= f.check_box :propagate_immediately %>
  56. <% end %>
  57. </div>
  58. </div>
  59. <% if current_user.scenario_count > 0 %>
  60. <div class="form-group">
  61. <%= f.label :scenarios %>
  62. <span class="glyphicon glyphicon-question-sign hover-help" data-content="Use Scenarios to group sets of Agents, both for organization, and to make them easy to export and share."></span>
  63. <%= f.select(:scenario_ids,
  64. options_for_select(current_user.scenarios.pluck(:name, :id), @agent.scenario_ids),
  65. {}, { :multiple => true, :size => 5, :class => 'select2 form-control' }) %>
  66. </div>
  67. <% end %>
  68. </div>
  69. <!-- Form controls full width -->
  70. <div class="col-md-12">
  71. <div class="form-group">
  72. <%= f.label :options %>
  73. <span class="glyphicon glyphicon-question-sign hover-help" data-content="In this JSON hash, interpolation is available in almost all values using the Liquid templating language.<p>Available template variables include the following:<dl><dt><code>message</code>, <code>url</code>, etc.</dt><dd>Refers to the corresponding key's value of each incoming event's payload.</dd><dt><code>agent</code></dt><dd>Refers to the agent that created each incoming event. It has attributes like <code>type</code>, <code>name</code> and <code>options</code>, so <code>{{agent.type}}</code> will expand to <code>WebsiteAgent</code> if an incoming event is created by that agent.</dd></dl></p><p>To access user credentials, use the <code>credential</code> tag like this: <code>{% credential <em>bare_key_name</em> %}</code></p>"></span>
  74. <textarea rows="15" id="agent_options" name="agent[options]" class="form-control live-json-editor <%= (@agent.new_record? && @agent.options == {}) ? "showing-default" : "" %>">
  75. <%= Utils.jsonify((@agent.new_record? && @agent.options == {}) ? @agent.default_options : @agent.options) %>
  76. </textarea>
  77. </div>
  78. </div>
  79. </div>
  80. </div>
  81. <div class="col-md-6">
  82. <div class="row">
  83. <div class="col-md-12">
  84. <div class='well description'>
  85. <%= @agent.html_description unless @agent.new_record? %>
  86. </div>
  87. </div>
  88. </div>
  89. <div class="row">
  90. <div class="col-md-12">
  91. <div class='well event-descriptions' style='display: none'></div>
  92. </div>
  93. </div>
  94. </div>
  95. </div>
  96. <div class='row'>
  97. <div class="col-md-12">
  98. <%= f.submit "Save", :class => "btn btn-primary" %>
  99. </div>
  100. </div>
  101. <% end %>