_form.html.erb 6.1KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122
  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. <% if @agent.try(:oauthable?) %>
  30. <div class="form-group type-select">
  31. <%= f.label :service %>
  32. <%= f.select :service_id, options_for_select(@agent.valid_services_for(current_user).collect { |s| ["(#{s.provider}) #{s.name}", s.id]}, @agent.service_id), {}, class: 'form-control' %>
  33. </div>
  34. <% end %>
  35. </div>
  36. <div class="form-group">
  37. <%= f.label :schedule, :class => 'control-label' %>
  38. <div class="schedule-region" data-can-be-scheduled="<%= @agent.can_be_scheduled? %>">
  39. <%= f.select :schedule, options_for_select(Agent::SCHEDULES.map {|s| [s.humanize.titleize, s] }, @agent.schedule), {}, :class => 'form-control' %>
  40. <span class='cannot-be-scheduled text-info'>This type of Agent cannot be scheduled.</span>
  41. </div>
  42. </div>
  43. <div class='event-related-region' data-can-create-events="<%= @agent.can_create_events? %>">
  44. <div class="form-group">
  45. <%= f.label :keep_events_for, "Keep events" %>
  46. <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>
  47. <%= f.select :keep_events_for, options_for_select(Agent::EVENT_RETENTION_SCHEDULES, @agent.keep_events_for), {}, :class => 'form-control' %>
  48. </div>
  49. </div>
  50. <div class="form-group">
  51. <%= f.label :sources %>
  52. <div class="link-region" data-can-receive-events="<%= @agent.can_receive_events? %>">
  53. <% eventSources = (current_user.agents - [@agent]).find_all { |a| a.can_create_events? } %>
  54. <%= f.select(:source_ids,
  55. options_for_select(eventSources.map {|s| [s.name, s.id] },
  56. @agent.source_ids),
  57. {}, { :multiple => true, :size => 5, :class => 'select2 form-control' }) %>
  58. <span class='cannot-receive-events text-info'>This type of Agent cannot receive events.</span>
  59. <%= f.label :propagate_immediately, :class => 'propagate-immediately' do %>Propagate immediately
  60. <%= f.check_box :propagate_immediately %>
  61. <% end %>
  62. </div>
  63. </div>
  64. <% if current_user.scenario_count > 0 %>
  65. <div class="form-group">
  66. <%= f.label :scenarios %>
  67. <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>
  68. <%= f.select(:scenario_ids,
  69. options_for_select(current_user.scenarios.pluck(:name, :id), @agent.scenario_ids),
  70. {}, { :multiple => true, :size => 5, :class => 'select2 form-control' }) %>
  71. </div>
  72. <% end %>
  73. </div>
  74. <!-- Form controls full width -->
  75. <div class="col-md-12">
  76. <div class="form-group">
  77. <%= f.label :options %>
  78. <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>
  79. <textarea rows="15" id="agent_options" name="agent[options]" class="form-control live-json-editor <%= (@agent.new_record? && @agent.options == {}) ? "showing-default" : "" %>">
  80. <%= Utils.jsonify((@agent.new_record? && @agent.options == {}) ? @agent.default_options : @agent.options) %>
  81. </textarea>
  82. </div>
  83. </div>
  84. </div>
  85. </div>
  86. <div class="col-md-6">
  87. <div class="row">
  88. <div class="col-md-12">
  89. <div class='well description'>
  90. <%= @agent.html_description unless @agent.new_record? %>
  91. </div>
  92. </div>
  93. </div>
  94. <div class="row">
  95. <div class="col-md-12">
  96. <div class='well event-descriptions' style='display: none'></div>
  97. </div>
  98. </div>
  99. </div>
  100. </div>
  101. <div class='row'>
  102. <div class="col-md-12">
  103. <%= f.submit "Save", :class => "btn btn-primary" %>
  104. </div>
  105. </div>
  106. <% end %>