Skip to content
Snippets Groups Projects
issuables_helper.rb 1.81 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 issuables_count(issuable)
    
        base_issuable_scope(issuable).maximum(:iid)
    
      end
    
      def next_issuable_for(issuable)
    
        base_issuable_scope(issuable).where('iid > ?', issuable.iid).last
    
      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 prev_issuable_for(issuable)
    
        base_issuable_scope(issuable).where('iid < ?', issuable.iid).first
    
      def user_dropdown_label(user_id, default_label)
        return "Unassigned" if user_id == "0"
    
    
        if @project
          member = @project.team.find_member(user_id)
    
          user = member.user if member
    
          user = User.find_by(id: user_id)
    
      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)
    
      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