2015-12-31 15:36:42 +08:00
|
|
|
|
<div class="resources mt10" id="user_activity_<%= user_activity_id%>" onmouseover="$('#message_setting_<%= user_activity_id%>').show();" onmouseout="$('#message_setting_<%= user_activity_id%>').hide();">
|
2015-09-01 16:37:43 +08:00
|
|
|
|
<div class="homepagePostBrief">
|
|
|
|
|
<div class="homepagePostPortrait">
|
2015-09-18 14:31:19 +08:00
|
|
|
|
<%= link_to image_tag(url_to_avatar(activity.author), :width => "50", :height => "50"), user_path(activity.author_id,:host=>Setting.host_user), :alt => "用户头像" %>
|
2016-01-07 10:10:24 +08:00
|
|
|
|
<%= render :partial => 'users/show_detail_info', :locals => {:user => activity.author} %>
|
2015-09-01 16:37:43 +08:00
|
|
|
|
</div>
|
|
|
|
|
<div class="homepagePostDes">
|
2015-10-16 10:54:22 +08:00
|
|
|
|
<div class="homepagePostTo break_word mt-4">
|
2015-09-01 16:37:43 +08:00
|
|
|
|
<% if activity.try(:author).try(:realname) == ' ' %>
|
2015-09-18 14:31:19 +08:00
|
|
|
|
<%= link_to activity.try(:author), user_path(activity.author_id,:host=>Setting.host_user), :class => "newsBlue mr15" %>
|
2015-09-01 16:37:43 +08:00
|
|
|
|
<% else %>
|
2015-09-18 14:31:19 +08:00
|
|
|
|
<%= link_to activity.try(:author).try(:realname), user_path(activity.author_id,:host=>Setting.host_user), :class => "newsBlue mr15" %>
|
2015-09-01 16:37:43 +08:00
|
|
|
|
<% end %>
|
|
|
|
|
TO
|
2015-09-18 14:31:19 +08:00
|
|
|
|
<%= link_to activity.course.name.to_s+" | 课程讨论区", course_boards_path(activity.course,:host=> Setting.host_course), :class => "newsBlue ml15 mr5"%>
|
2015-09-01 16:37:43 +08:00
|
|
|
|
</div>
|
2015-10-15 16:44:49 +08:00
|
|
|
|
<div class="homepagePostTitle hidden m_w530 fl">
|
2015-09-01 16:37:43 +08:00
|
|
|
|
<% if activity.parent_id.nil? %> <!--+"(帖子标题)"-->
|
2015-10-09 14:39:40 +08:00
|
|
|
|
<%= link_to activity.subject.to_s.html_safe, board_message_path(activity.board_id, activity), :class=> "postGrey" %>
|
2015-09-01 16:37:43 +08:00
|
|
|
|
<% else %>
|
2015-10-09 14:39:40 +08:00
|
|
|
|
<%= link_to activity.parent.subject.to_s.html_safe, board_message_path(activity.board_id, activity), :class=> "postGrey"%>
|
2015-09-01 16:37:43 +08:00
|
|
|
|
<% end %>
|
|
|
|
|
</div>
|
2015-10-15 16:44:49 +08:00
|
|
|
|
<% if activity.sticky == 1%>
|
2016-01-13 16:32:05 +08:00
|
|
|
|
<span class="sticky_btn_cir ml10">置顶</span>
|
2015-10-15 16:44:49 +08:00
|
|
|
|
<% end%>
|
2015-10-16 16:31:31 +08:00
|
|
|
|
<% if activity.locked%>
|
|
|
|
|
<span class="locked_btn_cir ml10 fl" title="已锁定"> </span>
|
|
|
|
|
<% end%>
|
2015-10-15 16:44:49 +08:00
|
|
|
|
<div class="cl"></div>
|
2016-01-12 15:53:15 +08:00
|
|
|
|
<div class="homepagePostDate fl">
|
2015-09-02 18:18:08 +08:00
|
|
|
|
发帖时间:<%= format_time(activity.created_on) %>
|
2015-09-01 16:37:43 +08:00
|
|
|
|
</div>
|
2016-01-12 15:53:15 +08:00
|
|
|
|
<div class="homepagePostDate fl ml15">
|
|
|
|
|
更新时间:<%= format_time(CourseActivity.where("course_act_type='#{activity.class}' and course_act_id =#{activity.id}").first.updated_at) %>
|
|
|
|
|
</div>
|
|
|
|
|
<div class="cl"></div>
|
2016-01-19 16:53:34 +08:00
|
|
|
|
<% if activity.parent_id.nil? %>
|
|
|
|
|
<% content = activity.content%>
|
|
|
|
|
<% else %>
|
|
|
|
|
<% content = activity.parent.content%>
|
|
|
|
|
<% end %>
|
|
|
|
|
<%=render :partial =>"users/intro_content", :locals=>{:user_activity_id =>user_activity_id, :content=>content} %>
|
2015-10-22 17:42:02 +08:00
|
|
|
|
<div class="cl"></div>
|
|
|
|
|
<div id="intro_content_show_<%= user_activity_id%>" class="fr" style="display:none;"><a href="javascript:void(0);" class="linkBlue">[展开]</a></div>
|
|
|
|
|
<div id="intro_content_hide_<%= user_activity_id%>" class="fr" style="display:none;"><a href="javascript:void(0);" class="linkBlue">[收起]</a></div>
|
|
|
|
|
<div class="cl"></div>
|
2016-01-08 16:05:36 +08:00
|
|
|
|
<div class="mt10" style="font-weight:normal;">
|
|
|
|
|
<%= render :partial=>"attachments/activity_attach", :locals=>{:activity => activity} %>
|
|
|
|
|
</div>
|
2015-12-31 17:53:05 +08:00
|
|
|
|
|
|
|
|
|
<div class="homepagePostSetting" id="message_setting_<%= user_activity_id%>" style="display: none">
|
|
|
|
|
<ul>
|
|
|
|
|
<li class="homepagePostSettingIcon">
|
|
|
|
|
<ul class="homepagePostSettiongText">
|
|
|
|
|
<% if activity.author.id == User.current.id%>
|
2015-12-31 15:36:42 +08:00
|
|
|
|
<li>
|
|
|
|
|
<%= link_to(
|
|
|
|
|
l(:button_edit),
|
2015-12-31 17:53:05 +08:00
|
|
|
|
edit_board_message_path(activity.id,:board_id=>activity.board_id,:is_course=>is_course,:is_board=>is_board),
|
2015-12-31 15:36:42 +08:00
|
|
|
|
:class => 'postOptionLink'
|
|
|
|
|
) if activity.course_editable_by?(User.current) %>
|
|
|
|
|
</li>
|
|
|
|
|
<li>
|
|
|
|
|
<%= link_to(
|
|
|
|
|
l(:button_delete),
|
2015-12-31 17:53:05 +08:00
|
|
|
|
delete_board_message_path(activity.id,:board_id=>activity.board_id,:is_course=>is_course,:is_board=>is_board),
|
2015-12-31 15:36:42 +08:00
|
|
|
|
:method => :post,
|
|
|
|
|
:data => {:confirm => l(:text_are_you_sure)},
|
|
|
|
|
:class => 'postOptionLink'
|
|
|
|
|
) if activity.course_destroyable_by?(User.current) %>
|
|
|
|
|
</li>
|
2015-12-31 17:53:05 +08:00
|
|
|
|
<% end %>
|
|
|
|
|
<li>
|
|
|
|
|
<%= link_to "发送",messages_join_org_subfield_path(:message_id => activity.id) , :remote=> true,:class => 'postOptionLink' %>
|
2015-12-31 15:36:42 +08:00
|
|
|
|
</li>
|
2015-08-21 17:26:52 +08:00
|
|
|
|
</ul>
|
2015-12-31 17:53:05 +08:00
|
|
|
|
</li>
|
|
|
|
|
</ul>
|
|
|
|
|
</div>
|
|
|
|
|
|
2015-09-01 16:37:43 +08:00
|
|
|
|
</div>
|
|
|
|
|
<div class="cl"></div>
|
|
|
|
|
</div>
|
2015-09-21 16:54:23 +08:00
|
|
|
|
<% count=0 %>
|
|
|
|
|
<% if activity.parent %>
|
|
|
|
|
<% count=activity.parent.children.count%>
|
|
|
|
|
<% else %>
|
|
|
|
|
<% count=activity.children.count%>
|
|
|
|
|
<% end %>
|
2015-09-01 16:37:43 +08:00
|
|
|
|
<div class="homepagePostReply">
|
2016-01-13 16:32:05 +08:00
|
|
|
|
<div class="homepagePostReplyBanner">
|
|
|
|
|
<div class="homepagePostReplyBannerCount">回复
|
2016-01-14 15:22:37 +08:00
|
|
|
|
<sapn class="mr15"><%= count>0 ? "(#{count})" : "" %></sapn><span style="color: #cecece;">▪</span>
|
2016-01-13 16:32:05 +08:00
|
|
|
|
<span id="praise_count_<%=user_activity_id %>">
|
|
|
|
|
<% if activity.author == User.current %>
|
2016-01-19 10:08:28 +08:00
|
|
|
|
<span class="ml15 likeButton" title="不能自己赞自己哦!"> <span class="likeText">赞</span><span class="likeNum"><%= get_praise_num(activity) > 0 ? "(#{get_praise_num(activity)})" : "" %></span></span>
|
2016-01-13 16:32:05 +08:00
|
|
|
|
<% else %>
|
|
|
|
|
<%=render :partial=> "praise_tread/praise", :locals => {:activity=>activity, :user_activity_id=>user_activity_id,:type=>"activity"}%>
|
|
|
|
|
<% end %>
|
|
|
|
|
</span>
|
|
|
|
|
</div>
|
2015-09-01 16:37:43 +08:00
|
|
|
|
<div class="homepagePostReplyBannerTime"><%#=format_date(activity.updated_on)%></div>
|
2015-10-14 14:19:59 +08:00
|
|
|
|
<%if count > 3 %>
|
2015-09-01 16:37:43 +08:00
|
|
|
|
<div class="homepagePostReplyBannerMore">
|
|
|
|
|
<a id="reply_btn_<%=user_activity_id%>" onclick="expand_reply('#reply_div_<%= user_activity_id %> li','#reply_btn_<%=user_activity_id%>')" data-count="<%= count %>" data-init="0" class=" replyGrey" href="javascript:void(0)" value="show_help" >
|
2015-09-02 17:41:19 +08:00
|
|
|
|
展开更多
|
2015-09-01 16:37:43 +08:00
|
|
|
|
</a>
|
2015-08-21 17:26:52 +08:00
|
|
|
|
</div>
|
2015-09-01 16:37:43 +08:00
|
|
|
|
<% end %>
|
|
|
|
|
</div>
|
|
|
|
|
|
2015-09-02 11:51:49 +08:00
|
|
|
|
<% activity= activity.parent ? activity.parent : activity%>
|
2015-09-01 16:37:43 +08:00
|
|
|
|
<% replies_all_i = 0 %>
|
2015-09-02 11:51:49 +08:00
|
|
|
|
<% if count > 0 %>
|
2015-09-03 16:02:58 +08:00
|
|
|
|
<div class="" id="reply_div_<%= user_activity_id %>">
|
2015-09-01 16:37:43 +08:00
|
|
|
|
<ul>
|
|
|
|
|
<% activity.children.reorder("created_on desc").each do |reply|%>
|
2015-10-16 10:18:51 +08:00
|
|
|
|
<script type="text/javascript">
|
2016-01-13 16:32:05 +08:00
|
|
|
|
$(function(){
|
|
|
|
|
showNormalImage('reply_content_<%= reply.id %>');
|
|
|
|
|
});
|
2015-10-16 10:18:51 +08:00
|
|
|
|
</script>
|
2015-09-01 16:37:43 +08:00
|
|
|
|
<% replies_all_i=replies_all_i+1 %>
|
2015-10-14 14:19:59 +08:00
|
|
|
|
<li class="homepagePostReplyContainer" nhname="reply_rec" style="display:<%= replies_all_i>3 ? 'none' : '' %>">
|
2015-09-01 16:37:43 +08:00
|
|
|
|
<div class="homepagePostReplyPortrait">
|
2015-10-16 10:54:22 +08:00
|
|
|
|
<%= link_to image_tag(url_to_avatar(reply.author), :width => "33", :height => "33"), user_path(reply.author_id,:host=>Setting.host_user), :alt => "用户头像" %>
|
2015-09-01 16:37:43 +08:00
|
|
|
|
</div>
|
|
|
|
|
<div class="homepagePostReplyDes">
|
2015-10-16 10:54:22 +08:00
|
|
|
|
<div class="homepagePostReplyPublisher mt-4">
|
2015-09-01 16:37:43 +08:00
|
|
|
|
<% if reply.try(:author).try(:realname) == ' ' %>
|
2015-09-18 14:31:19 +08:00
|
|
|
|
<%= link_to reply.try(:author), user_path(reply.author_id,:host=>Setting.host_user), :class => "newsBlue mr10 f14" %>
|
2015-09-01 16:37:43 +08:00
|
|
|
|
<% else %>
|
2015-09-18 14:31:19 +08:00
|
|
|
|
<%= link_to reply.try(:author).try(:realname), user_path(reply.author_id,:host=>Setting.host_user), :class => "newsBlue mr10 f14" %>
|
2015-09-01 16:37:43 +08:00
|
|
|
|
<% end %>
|
2015-09-02 18:18:08 +08:00
|
|
|
|
<%= format_time(reply.created_on) %>
|
2016-01-14 10:07:46 +08:00
|
|
|
|
<span id="reply_praise_count_<%=reply.id %>">
|
|
|
|
|
<% if reply.author == User.current %>
|
2016-01-19 10:08:28 +08:00
|
|
|
|
<span class="fr likeButton" title="不能自己赞自己哦!"> <span class="likeText">赞</span><span class="likeNum"><%= get_praise_num(reply) > 0 ? "(#{get_praise_num(reply)})" : "" %></span></span>
|
2016-01-14 10:07:46 +08:00
|
|
|
|
<% else %>
|
|
|
|
|
<%=render :partial=> "praise_tread/praise", :locals => {:activity=>reply, :user_activity_id=>reply.id,:type=>"reply"}%>
|
|
|
|
|
<% end %>
|
|
|
|
|
</span>
|
|
|
|
|
|
2015-09-01 16:37:43 +08:00
|
|
|
|
</div>
|
2015-10-26 15:26:05 +08:00
|
|
|
|
<div class="homepagePostReplyContent break_word list_style upload_img table_maxWidth" id="reply_content_<%= reply.id %>">
|
2015-09-02 11:51:49 +08:00
|
|
|
|
<%= reply.content.html_safe %>
|
|
|
|
|
</div>
|
2015-09-01 16:37:43 +08:00
|
|
|
|
</div>
|
|
|
|
|
<div class="cl"></div>
|
|
|
|
|
</li>
|
|
|
|
|
<% end %>
|
|
|
|
|
</ul>
|
|
|
|
|
</div>
|
|
|
|
|
<% end %>
|
2015-09-16 10:16:25 +08:00
|
|
|
|
|
2015-10-16 10:18:51 +08:00
|
|
|
|
<% if !activity.locked? && authorize_for_course('messages', 'reply') %>
|
2016-01-13 16:32:05 +08:00
|
|
|
|
<div class="homepagePostReplyContainer borderBottomNone minHeight48">
|
|
|
|
|
<div class="homepagePostReplyPortrait mr15 imageFuzzy" id="reply_image_<%= user_activity_id%>"><%= link_to image_tag(url_to_avatar(User.current), :width => "33", :height => "33"), user_path(activity.author_id), :alt => "用户头像" %></div>
|
|
|
|
|
<div class="homepagePostReplyInputContainer mb10">
|
|
|
|
|
<div nhname='new_message_<%= user_activity_id%>' style="display:none;">
|
|
|
|
|
<%= form_for('new_form',:url => {:controller=>'messages',:action => 'reply', :id => activity.id, :board_id => activity.board_id, :is_board => is_board,is_course=>is_course},:method => "post", :remote => true) do |f|%>
|
|
|
|
|
<input type="hidden" name="quote[quote]" value="">
|
|
|
|
|
<input type="hidden" name="user_activity_id" value="<%=user_activity_id%>">
|
|
|
|
|
<textarea placeholder="有问题或有建议,请直接给我留言吧!" style="display: none" nhname='new_message_textarea_<%= user_activity_id%>' name="reply[content]"></textarea>
|
|
|
|
|
<div nhname='toolbar_container_<%= user_activity_id%>' style="float:left; margin-left: 5px; padding-top:3px;"></div>
|
|
|
|
|
<a id="new_message_submit_btn_<%= user_activity_id%>" href="javascript:void(0)" class="blue_n_btn fr" style="display:none;margin-top:6px;">发送</a>
|
|
|
|
|
<div class="cl"></div>
|
|
|
|
|
<p nhname='contentmsg_<%= user_activity_id%>'></p>
|
|
|
|
|
<% end%>
|
2015-09-16 10:16:25 +08:00
|
|
|
|
<div class="cl"></div>
|
2016-01-13 16:32:05 +08:00
|
|
|
|
</div>
|
|
|
|
|
<div class="cl"></div>
|
|
|
|
|
</div>
|
2015-09-16 10:16:25 +08:00
|
|
|
|
<div class="cl"></div>
|
|
|
|
|
</div>
|
2016-01-13 16:32:05 +08:00
|
|
|
|
<% end %>
|
2015-09-01 16:37:43 +08:00
|
|
|
|
</div>
|
|
|
|
|
</div>
|
2016-01-08 14:53:12 +08:00
|
|
|
|
<script type="text/javascript">
|
|
|
|
|
$(description_show_hide(<%=user_activity_id %>));
|
|
|
|
|
</script>
|