Aucune description http://j1x-huginn.herokuapp.com

_form.html.erb 7.1KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139
  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. <div class="can-be-scheduled">
  35. <%= f.select :schedule, options_for_select(Agent::SCHEDULES.map {|s| [s.humanize.titleize, s] }, @agent.schedule), {}, :class => 'form-control' %>
  36. </div>
  37. <span class='cannot-be-scheduled text-info'>This type of Agent cannot be scheduled.</span>
  38. </div>
  39. </div>
  40. <div class="controller-region" data-has-controllers="<%= !@agent.controllers.empty? %>">
  41. <div class="form-group">
  42. <%= f.label :controllers %>
  43. <span class="glyphicon glyphicon-question-sign hover-help" data-content="Other than the system-defined schedule above, this agent may be run or controlled by these user-defined Agents."></span>
  44. <div class="controller-list">
  45. <%= agent_controllers(@agent) || 'None' %>
  46. </div>
  47. </div>
  48. </div>
  49. <div class="control-link-region" data-can-control-other-agents="<%= @agent.can_control_other_agents? %>">
  50. <div class="can-control-other-agents">
  51. <div class="form-group">
  52. <%= f.label :control_targets %>
  53. <% eventControlTargets = current_user.agents.select(&:can_be_scheduled?) %>
  54. <%= f.select(:control_target_ids,
  55. options_for_select(eventControlTargets.map {|s| [s.name, s.id] },
  56. @agent.control_target_ids),
  57. {}, { multiple: true, size: 5, class: 'select2 form-control' }) %>
  58. </div>
  59. </div>
  60. </div>
  61. <div class='event-related-region' data-can-create-events="<%= @agent.can_create_events? %>">
  62. <div class="form-group">
  63. <%= f.label :keep_events_for, "Keep events" %>
  64. <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>
  65. <%= f.select :keep_events_for, options_for_select(Agent::EVENT_RETENTION_SCHEDULES, @agent.keep_events_for), {}, :class => 'form-control' %>
  66. </div>
  67. </div>
  68. <div class="form-group">
  69. <%= f.label :sources %>
  70. <div class="link-region" data-can-receive-events="<%= @agent.can_receive_events? %>">
  71. <% eventSources = (current_user.agents - [@agent]).find_all { |a| a.can_create_events? } %>
  72. <%= f.select(:source_ids,
  73. options_for_select(eventSources.map {|s| [s.name, s.id] },
  74. @agent.source_ids),
  75. {}, { :multiple => true, :size => 5, :class => 'select2 form-control' }) %>
  76. <span class='cannot-receive-events text-info'>This type of Agent cannot receive events.</span>
  77. <%= f.label :propagate_immediately, :class => 'propagate-immediately' do %>Propagate immediately
  78. <%= f.check_box :propagate_immediately %>
  79. <% end %>
  80. </div>
  81. </div>
  82. <% if current_user.scenario_count > 0 %>
  83. <div class="form-group">
  84. <%= f.label :scenarios %>
  85. <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>
  86. <%= f.select(:scenario_ids,
  87. options_for_select(current_user.scenarios.pluck(:name, :id), @agent.scenario_ids),
  88. {}, { :multiple => true, :size => 5, :class => 'select2 form-control' }) %>
  89. </div>
  90. <% end %>
  91. </div>
  92. <!-- Form controls full width -->
  93. <div class="col-md-12">
  94. <div class="form-group">
  95. <%= f.label :options %>
  96. <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>
  97. <textarea rows="15" id="agent_options" name="agent[options]" class="form-control live-json-editor <%= (@agent.new_record? && @agent.options == {}) ? "showing-default" : "" %>">
  98. <%= Utils.jsonify((@agent.new_record? && @agent.options == {}) ? @agent.default_options : @agent.options) %>
  99. </textarea>
  100. </div>
  101. <div class="form-group">
  102. <%= f.submit "Save", :class => "btn btn-primary" %>
  103. </div>
  104. </div>
  105. </div>
  106. </div>
  107. <div class="col-md-6">
  108. <div class="row">
  109. <div class="col-md-12">
  110. <div class='well description'>
  111. <%= @agent.html_description unless @agent.new_record? %>
  112. </div>
  113. </div>
  114. </div>
  115. <div class="row">
  116. <div class="col-md-12">
  117. <div class='well event-descriptions' style='display: none'></div>
  118. </div>
  119. </div>
  120. </div>
  121. </div>
  122. <% end %>