Skip to content
Snippets Groups Projects
issuables_helper.rb 3.11 KiB
Newer Older
  • Learn to ignore specific revisions
  • module IssuablesHelper
      def sidebar_gutter_toggle_icon
        sidebar_gutter_collapsed? ? icon('angle-double-left') : icon('angle-double-right')
      end
    
      def sidebar_gutter_collapsed_class
        "right-sidebar-#{sidebar_gutter_collapsed? ? 'collapsed' : 'expanded'}"
      end
    
    
      def multi_label_name(current_labels, default_label)
    
        # current_labels may be a string from before
    
        if current_labels.is_a?(Array)
    
    Arinde Eniola's avatar
    Arinde Eniola committed
          if current_labels.count > 1
            "#{current_labels[0]} +#{current_labels.count - 1} more"
    
    Arinde Eniola's avatar
    Arinde Eniola committed
            current_labels[0]
    
    Arinde Eniola's avatar
    Arinde Eniola committed
        elsif current_labels.is_a?(String)
    
    Arinde Eniola's avatar
    Arinde Eniola committed
          if current_labels.nil? || current_labels.empty?
    
            default_label
          else
            current_labels
          end
    
    Arinde Eniola's avatar
    Arinde Eniola committed
        else
          default_label
    
      def issuable_json_path(issuable)
        project = issuable.project
    
        if issuable.kind_of?(MergeRequest)
          namespace_project_merge_request_path(project.namespace, project, issuable.iid, :json)
        else
          namespace_project_issue_path(project.namespace, project, issuable.iid, :json)
        end
      end
    
    
      def user_dropdown_label(user_id, default_label)
    
        return default_label if user_id.nil?
    
        return "Unassigned" if user_id == "0"
    
    
        user = User.find_by(id: user_id)
    
      def project_dropdown_label(project_id, default_label)
        return default_label if project_id.nil?
        return "Any project" if project_id == "0"
    
        project = Project.find_by(id: project_id)
    
        if project
          project.name_with_namespace || project.name
        else
          default_label
        end
      end
    
    
      def milestone_dropdown_label(milestone_title, default_label = "Milestone")
    
    Phil Hughes's avatar
    Phil Hughes committed
        if milestone_title == Milestone::Upcoming.name
          milestone_title = Milestone::Upcoming.title
    
    Phil Hughes's avatar
    Phil Hughes committed
    
        h(milestone_title.presence || default_label)
    
      def issuable_meta(issuable, project, text)
        output = content_tag :strong, "#{text} #{issuable.to_reference}", class: "identifier"
    
        output << " opened #{time_ago_with_tooltip(issuable.created_at)} by ".html_safe
    
        output << content_tag(:strong) do
    
          author_output = link_to_member(project, issuable.author, size: 24, mobile_classes: "hidden-xs", tooltip: true)
    
          author_output << link_to_member(project, issuable.author, size: 24, by_username: true, avatar: false, mobile_classes: "hidden-sm hidden-md hidden-lg")
        end
      end
    
    
    Phil Hughes's avatar
    Phil Hughes committed
      def issuable_todo(issuable)
    
        if current_user
    
    Phil Hughes's avatar
    Phil Hughes committed
          current_user.todos.find_by(target: issuable, state: :pending)
    
    Phil Hughes's avatar
    Phil Hughes committed
      def issuable_labels_tooltip(labels, limit: 5)
    
        first, last = labels.partition.with_index{ |_, i| i < limit  }
    
    Phil Hughes's avatar
    Phil Hughes committed
        label_names = first.collect(&:name)
        label_names << "and #{last.size} more" unless last.empty?
    
    Phil Hughes's avatar
    Phil Hughes committed
        label_names.join(', ')
    
      private
    
      def sidebar_gutter_collapsed?
        cookies[:collapsed_gutter] == 'true'
      end
    
      def base_issuable_scope(issuable)
    
        issuable.project.send(issuable.class.table_name).send(issuable_state_scope(issuable))
    
      end
    
      def issuable_state_scope(issuable)
    
        if issuable.respond_to?(:merged?) && issuable.merged?
          :merged
        else
          issuable.open? ? :opened : :closed
        end