journalduhacker/app/views/comments/_commentbox.html.erb
2014-04-14 23:14:08 -05:00

62 lines
1.7 KiB
Plaintext

<div class="comment comment_form_container">
<%= form_for comment,
:html => { :id => "edit_comment_#{comment.short_id}" } do |f| %>
<% if comment.errors.any? %>
<%= errors_for comment %>
<% end %>
<%= hidden_field_tag "story_id", comment.story.short_id %>
<% if comment.parent_comment %>
<%= hidden_field_tag "parent_comment_short_id",
comment.parent_comment.short_id %>
<% end %>
<div style="width: 100%;">
<%= text_area_tag "comment", comment.comment, :rows => 5,
:style => "width: 100%;", :autocomplete => "off", :disabled => !@user,
:placeholder => (@user ? "" : "You must be logged in to leave a comment.")
%>
<p></p>
<div class="markdown_help_toggler">
<% if @user %>
<div class="markdown_help_label">
Markdown formatting available
</div>
<div class="markdown_help_label markdown_help_label_mobile"
style="display: none;">
[M&darr;]
</div>
<% end %>
<%= button_tag "#{comment.new_record?? "Post" : "Update"}",
:class => "comment-post", :type => "button",
:disabled => !@user %>
&nbsp;
<%= button_tag "Preview", :class => "comment-preview",
:type => "button", :disabled => !@user %>
<% if local_assigns[:cancellable] %>
&nbsp;
<%= button_tag "Cancel", :class => "comment-cancel",
:type => "button" %>
<% end %>
<div style="clear: both;"></div>
<% if @user %>
<%= render :partial => "global/markdownhelp" %>
<% end %>
</div>
</div>
<p></p>
<% end %>
<% if defined?(show_comment) && show_comment.valid? %>
<div class="preview">
<%= render "comments/comment", :comment => show_comment %>
</div>
<% end %>
</div>