haru/redmine_wiki_extensions

View on GitHub
lib/wiki_extensions_helper.rb

Summary

Maintainability
D
1 day
Test Coverage
#Author: Dmitry Manayev

require 'redmine'
module WikiExtensionsHelper
  #This needed to define WikiExtensionsHelper for WikiExtensionsController.
end
module ActionView  
  module Helpers
    module WikiExtensionsHelper  
     
     
      ## Method for displaying tree of comments\n
      #comments_tree - is orderly array of comments;
      #parent_id - is id of parent comment;
      #k - is number of tree nodes;\n
      #page - is wiki_page object;
      #data - is wiki_extensions_data on this page
      def display_comments_tree(comments_tree, parent_id,page,data,k = 0)
          ret = ' '
          
        if k != 0
          ret << '<ul class="list" onClick="Check();">'
        else
          ret << '<ul class="IsRoot">'
        end
        k += 1
        if k < 26 #maximum number of tree nodes is 25
          comments_tree.each do |comment|
            if comment.parent_id == parent_id
        
              check = comment.children(comments_tree).empty?
              div_comment_id = "wikiextensions_comment_#{comment.id}"
              li_comment_id = "wikiextensions_comment_li_#{comment.id}"
              form_reply_id = "wikiextensions_reply_form_#{comment.id}"
              form_div_id = "wikiextensions_comment_form_#{comment.id}"
              text_div_id = "wikiextensions_comment_text_#{comment.id}"
              
              unless check
                ret << '<li id='+li_comment_id+' class="list_item ExpandOpen">'
                ret << '<div class="Expand" onClick="do_some(this, event);"></div>' if formats.include?(:html)
              else
                ret << '<li id='+li_comment_id+' class="list_item ExpandLeaf">'
              end

              if formats.include?(:html)
                ret << '<div class="contextual">'

                if k != 25 && User.current.allowed_to?({controller: 'wiki_extensions', action: 'reply_comment'}, @project)
                  reply_link = link_to_function(l(:button_reply), "$('##{form_reply_id}').show();", :class => 'icon icon-comment')
                  ret << reply_link
                end

                edit_link = link_to_function(l(:button_edit), "$('##{text_div_id}').hide();$('##{form_div_id}').show();$('##{form_reply_id}').hide();",:class => 'icon icon-edit wiki_font_size')
                ret << edit_link if User.current.allowed_to?({:controller => 'wiki_extensions', :action => 'update_comment'}, @project) or User.current.id == comment.user.id or User.current.admin
                if User.current.allowed_to?({:controller => 'wiki_extensions', :action => 'destroy_comment'}, @project) or User.current.admin
                  del_link =  link_to_if_authorized(l(:button_delete), {:controller => 'wiki_extensions',
                      :action => 'destroy_comment', :id => @project, :comment_id => comment.id},
                    :class => "icon icon-del", :confirm => l(:text_are_you_sure))
                  ret << (del_link || '')
                end

                ret << "\n"
                ret << "</div>\n"
              end

              ret << '<h4 class="wiki_left">'
              ret << "#{avatar(comment.user, :size => "20")}"
              ret << "\n"
        
              if l(:this_is_gloc_lib) == 'this_is_gloc_lib'
                ret << l(:label_added_time_by, comment.user, distance_of_time_in_words(Time.now,comment.updated_at))
              else
                ret << l(:label_added_time_by, :author => comment.user, :age => distance_of_time_in_words(Time.now, comment.updated_at))
              end
              ret << "</h4>\n"
              ret << '<div id="' + div_comment_id + '" class="wiki_left">' + "\n"
              ret << '<div id ="' + text_div_id + '">'
              ret << textilizable(comment, :comment)
              ret << '</div>'

              if formats.include?(:html)
                ret << "\n"
                ret << '<div id="' + form_div_id + '" style="display:none;" class="wiki_left">' + "\n"

                url = url_for(:controller => 'wiki_extensions', :action => 'update_comment', :id => @project)

                ret << '<form method="post" action="' + url + '">'
                if protect_against_forgery?
                  ret << hidden_field_tag(:authenticity_token, form_authenticity_token)
                  ret << "\n"
                end
                ret << "\n"
                ret << hidden_field_tag(:comment_id, comment.id)
                ret << "\n"

                textarea_id = "wiki_extensions_comment_edit_area_#{comment.id}"

                ret << text_area_tag(:comment, comment.comment, :rows => 5, :cols => 70, :id => textarea_id,:accesskey => accesskey(:edit), :class => "wiki-edit")

                ret << '<br/>'
                ret << submit_tag(l(:button_apply))
                ret << link_to_function(l(:button_cancel), "$('##{text_div_id}').show();$('##{form_div_id}').hide();")
                ret << "\n"
                ret << wikitoolbar_for(textarea_id)
                ret << '</form>'

                ret << '</div>'

                ret << '<div id="' + form_reply_id + '" style="display:none;" class="wiki_left">' + "\n"
                url = url_for(:controller => 'wiki_extensions', :action => 'reply_comment', :id => @project)

                ret << '<form method="post" action="' + url + '">'
                if protect_against_forgery?
                  ret << hidden_field_tag(:authenticity_token, form_authenticity_token)
                  ret << "\n"
                end
                ret << "\n"
                ret << hidden_field_tag(:comment_id, comment.id)
                ret << hidden_field_tag(:wiki_page_id, page.id)
                ret << "\n"
                textarea_id = "wiki_extensions_comment_reply_area_#{comment.id}"
                ret << text_area_tag(:reply,'', :rows => 5, :cols => 70, :id => textarea_id, :accesskey => accesskey(:edit),
                  :class => 'wiki-edit')
                ret << '<br/>'
                ret << submit_tag(l(:button_reply))
                ret << link_to_function(l(:button_cancel), "$('##{form_reply_id}').hide();")
                ret << "\n"
                ret << wikitoolbar_for(textarea_id)
                ret << '</form>'
                ret << '</div>'
              end
        
              ret << "</div>"
        
              ret << display_comments_tree(comments_tree, comment.id,page,data,k) unless check
              ret << "</li>"
            end
          end
        end
        ret << "</ul>"
        return ret
      end
    end
  end
end