2015-12-15 15:00:24 +08:00
|
|
|
|
<div class="resources mt10" id="user_activity_<%= user_activity_id%>">
|
|
|
|
|
<div class="homepagePostBrief">
|
|
|
|
|
<div class="homepagePostPortrait">
|
|
|
|
|
<%= link_to image_tag(url_to_avatar(activity.author), :width => "50", :height => "50"), user_path(activity.author_id), :alt => "用户头像" %>
|
2016-01-07 10:10:24 +08:00
|
|
|
|
<%= render :partial => 'users/show_detail_info', :locals => {:user => activity.author} %>
|
2015-12-15 15:00:24 +08:00
|
|
|
|
</div>
|
|
|
|
|
<div class="homepagePostDes">
|
|
|
|
|
<div class="homepagePostTo break_word mt-4">
|
|
|
|
|
<% if activity.try(:author).try(:realname) == ' ' %>
|
|
|
|
|
<%= link_to activity.try(:author), user_path(activity.author_id), :class => "newsBlue mr15" %>
|
|
|
|
|
<% else %>
|
|
|
|
|
<%= link_to activity.try(:author).try(:realname), user_path(activity.author_id), :class => "newsBlue mr15" %>
|
|
|
|
|
<% end %> TO
|
|
|
|
|
<%= link_to activity.project.name.to_s+" | 项目问题", project_issues_path(activity.project), :class => "newsBlue ml15"%>
|
|
|
|
|
</div>
|
|
|
|
|
<div class="homepagePostTitle break_word">
|
2015-12-18 14:38:04 +08:00
|
|
|
|
<% case activity.tracker_id %>
|
|
|
|
|
<% when 1%>
|
|
|
|
|
<span class="issues fl" title="缺陷"></span>
|
|
|
|
|
<% when 2%>
|
|
|
|
|
<span class="function fl" title="功能"></span>
|
|
|
|
|
<% when 3%>
|
|
|
|
|
<span class="support fl" title="支持"></span>
|
|
|
|
|
<% when 4%>
|
|
|
|
|
<span class="duty fl" title="任务"></span>
|
|
|
|
|
<% when 5%>
|
|
|
|
|
<span class="weekly fl" title="周报"></span>
|
|
|
|
|
<% end %>
|
|
|
|
|
<%= link_to activity.subject.to_s, issue_path(activity), :class => "postGrey ml5" %>
|
2015-12-15 15:00:24 +08:00
|
|
|
|
<span class='<%= get_issue_priority(activity.priority_id)[0] %>'>
|
|
|
|
|
<%= get_issue_priority(activity.priority_id)[1] %>
|
|
|
|
|
</span>
|
|
|
|
|
</div>
|
|
|
|
|
<div class="homepagePostSubmitContainer">
|
|
|
|
|
<div class="homepagePostAssignTo"><span class="fontGrey3">指派给</span>
|
|
|
|
|
<% unless activity.assigned_to_id.nil? %>
|
|
|
|
|
<% if activity.try(:assigned_to).try(:realname) == ' ' %>
|
|
|
|
|
<%= link_to activity.try(:assigned_to), user_path(activity.assigned_to_id), :class => "newsBlue mr15" %>
|
|
|
|
|
<% else %>
|
|
|
|
|
<%= link_to activity.try(:assigned_to).try(:realname), user_path(activity.assigned_to_id), :class => "newsBlue mr15" %>
|
|
|
|
|
<% end %>
|
|
|
|
|
<% end %>
|
|
|
|
|
</div>
|
2016-01-12 15:53:15 +08:00
|
|
|
|
<div class="homepagePostDeadline fl">
|
|
|
|
|
发布时间:
|
2015-12-15 15:00:24 +08:00
|
|
|
|
<%=format_time(activity.created_on) %>
|
|
|
|
|
</div>
|
2016-01-12 15:53:15 +08:00
|
|
|
|
<div class="homepagePostDate fl ml15">
|
|
|
|
|
更新时间:<%= format_time(ForgeActivity.where("forge_act_type='#{activity.class}' and forge_act_id =#{activity.id}").first.updated_at) %>
|
|
|
|
|
</div>
|
|
|
|
|
<div class="cl"></div>
|
2015-12-15 15:00:24 +08:00
|
|
|
|
</div>
|
2016-01-08 14:53:12 +08:00
|
|
|
|
<div class="homepagePostIntro break_word upload_img list_style maxh360 table_maxWidth" id="activity_description_<%= user_activity_id%>">
|
2015-12-15 15:00:24 +08:00
|
|
|
|
<div id="intro_content_<%= user_activity_id%>">
|
|
|
|
|
<% if activity.description? %>
|
|
|
|
|
<%= textAreailizable activity, :description, :attachments => activity.attachments %>
|
|
|
|
|
<% end %>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
<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>
|
|
|
|
|
<div class="mt10" style="font-weight:normal;">
|
2016-01-08 16:05:36 +08:00
|
|
|
|
<%= render :partial=>"attachments/activity_attach", :locals=>{:activity => activity} %>
|
2015-12-15 15:00:24 +08:00
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
<div class="cl"></div>
|
|
|
|
|
</div>
|
|
|
|
|
<% count = activity.journals.count %>
|
|
|
|
|
<div class="homepagePostReply">
|
2016-01-14 21:07:05 +08:00
|
|
|
|
<div class="homepagePostReplyBanner">
|
|
|
|
|
<div class="homepagePostReplyBannerCount">回复
|
|
|
|
|
<sapn class="mr15"><%= count>0 ? "(#{count})" : "" %></sapn><span style="color: #cecece;">▪</span>
|
|
|
|
|
<span id="praise_count_<%=user_activity_id %>">
|
|
|
|
|
<% if activity.author == User.current %>
|
|
|
|
|
<span class="ml15 likeButton"> <span class="likeText">赞</span><span class="likeNum"><%= get_praise_num(activity) > 0 ? "(#{get_praise_num(activity)})" : "" %></span></span>
|
|
|
|
|
<% else %>
|
|
|
|
|
<%=render :partial=> "praise_tread/praise", :locals => {:activity=>activity, :user_activity_id=>user_activity_id,:type=>"activity"}%>
|
|
|
|
|
<% end %>
|
|
|
|
|
</span>
|
|
|
|
|
</div>
|
2015-12-15 15:00:24 +08:00
|
|
|
|
<div class="homepagePostReplyBannerTime"><%#= format_date(activity.updated_on) %></div>
|
|
|
|
|
<% if count > 3 %>
|
|
|
|
|
<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">
|
|
|
|
|
展开更多
|
|
|
|
|
</a>
|
|
|
|
|
</div>
|
|
|
|
|
<% end %>
|
|
|
|
|
</div>
|
|
|
|
|
|
|
|
|
|
<% replies_all_i = 0 %>
|
|
|
|
|
<% if count > 0 %>
|
|
|
|
|
<div class="" id="reply_div_<%= user_activity_id %>">
|
|
|
|
|
<ul>
|
|
|
|
|
<% activity.journals.reorder("created_on desc").each do |reply| %>
|
|
|
|
|
<script type="text/javascript">
|
|
|
|
|
$(function(){
|
|
|
|
|
showNormalImage('reply_content_<%= reply.id %>');
|
|
|
|
|
});
|
|
|
|
|
</script>
|
|
|
|
|
<% replies_all_i=replies_all_i + 1 %>
|
|
|
|
|
<li class="homepagePostReplyContainer" nhname="reply_rec" style="display:<%= replies_all_i>3 ? 'none' : '' %>">
|
|
|
|
|
<div class="homepagePostReplyPortrait">
|
|
|
|
|
<%= link_to image_tag(url_to_avatar(reply.user), :width => "33", :height => "33"), user_path(reply.user_id), :alt => "用户头像" %>
|
|
|
|
|
</div>
|
|
|
|
|
<div class="homepagePostReplyDes">
|
|
|
|
|
<div class="homepagePostReplyPublisher mt-4">
|
|
|
|
|
<% if reply.try(:user).try(:realname) == ' ' %>
|
|
|
|
|
<%= link_to reply.try(:user), user_path(reply.user_id), :class => "newsBlue mr10 f14" %>
|
|
|
|
|
<% else %>
|
|
|
|
|
<%= link_to reply.try(:user).try(:realname), user_path(reply.user_id), :class => "newsBlue mr10 f14" %>
|
|
|
|
|
<% end %>
|
|
|
|
|
<%= format_time(reply.created_on) %>
|
2016-01-14 21:07:05 +08:00
|
|
|
|
<span id="reply_praise_count_<%=reply.id %>">
|
|
|
|
|
<% if reply.user == User.current %>
|
|
|
|
|
<span class="fr likeButton"> <span class="likeText">赞</span><span class="likeNum"><%= get_praise_num(reply) > 0 ? "(#{get_praise_num(reply)})" : "" %></span></span>
|
|
|
|
|
<% else %>
|
|
|
|
|
<%=render :partial=> "praise_tread/praise", :locals => {:activity=>reply, :user_activity_id=>reply.id,:type=>"reply"}%>
|
|
|
|
|
<% end %>
|
|
|
|
|
</span>
|
2015-12-15 15:00:24 +08:00
|
|
|
|
</div>
|
|
|
|
|
<div class="homepagePostReplyContent break_word list_style upload_img table_maxWidth" id="reply_content_<%= reply.id %>">
|
|
|
|
|
<% if reply.details.any? %>
|
|
|
|
|
<% details_to_strings(reply.details).each do |string| %>
|
|
|
|
|
<p><%= string %></p>
|
|
|
|
|
<% end %>
|
|
|
|
|
<% end %>
|
|
|
|
|
<P><%= reply.notes.html_safe %></P>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
<div class="cl"></div>
|
|
|
|
|
</li>
|
|
|
|
|
<% end %>
|
|
|
|
|
</ul>
|
|
|
|
|
</div>
|
|
|
|
|
<% end %>
|
|
|
|
|
|
|
|
|
|
<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 => add_journal_issue_path(activity.id),:method => "post", :remote => true) do |f|%>
|
|
|
|
|
<input type="hidden" name="user_activity_id" value="<%=user_activity_id%>">
|
|
|
|
|
<textarea placeholder="有问题或有建议,请直接给我留言吧!" style="display: none" nhname='new_message_textarea_<%= user_activity_id%>' name="notes"></textarea>
|
|
|
|
|
<div nhname='toolbar_container_<%= user_activity_id%>' style="float:left;padding-top:3px; margin-left: 5px;"></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%>
|
|
|
|
|
</div>
|
|
|
|
|
<div class="cl"></div>
|
|
|
|
|
</div>
|
|
|
|
|
<div class="cl"></div>
|
|
|
|
|
</div>
|
|
|
|
|
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
2016-01-08 14:53:12 +08:00
|
|
|
|
<script type="text/javascript">
|
|
|
|
|
$(description_show_hide(<%=user_activity_id %>));
|
|
|
|
|
</script>
|