Nessuna descrizione http://j1x-huginn.herokuapp.com

_form.html.erb 5.7KB

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