プロジェクト

全般

プロフィール

Vote #69564

未完了

Folding project list (expand/collapse)

Admin Redmine さんがほぼ4年前に追加. ほぼ4年前に更新.

ステータス:
New
優先度:
通常
担当者:
-
カテゴリ:
Projects_11
対象バージョン:
-
開始日:
2011/03/24
期日:
進捗率:

0%

予定工数:
category_id:
11
version_id:
0
issue_org_id:
7982
author_id:
29742
assigned_to_id:
0
comments:
21
status_id:
1
tracker_id:
2
plus1:
5
affected_version:
closed_on:
affected_version_id:
ステータス-->[New]

説明

Dear Redmine Team,

I would realy like to possibility to fold (collapse) a projectlist by maybe a +/- button or icon in front of each project.
It would also be fine to have the space between nested levels configurable.

This way one could increase the readability for long project lists very much.

The non-plus-ultra would be, if the setting (state) of collapsed / expanded could be stored on a per user basis (maybe cookies ?)

Thanks very much in advance.


journals

This is like #6522 and #2117

Also, there were some plugin that implemented this function, but I can't remember it.
--------------------------------------------------------------------------------
Ivan Cenov wrote:
> Also, there were some plugin that implemented this function, but I can't remember it.

P.S. Here it is : http://www.redmine.org/boards/3/topics/4645
--------------------------------------------------------------------------------
+1 This is something we're needing as well -- it relates to being able to filter/order the list via structure
--------------------------------------------------------------------------------
The link to above mentioned plugin 'Projects Tree View' is this:
http://www.redmine.org/plugins/projectstreeview or
https://github.com/wojtha/projects_tree_view (older branch)
--------------------------------------------------------------------------------
+1 This would be a great if it is native in redmine
--------------------------------------------------------------------------------
Chechout https://github.com/cforce/projects_tree_view/
--------------------------------------------------------------------------------
Terence Mill wrote:
> Chechout https://github.com/cforce/projects_tree_view/

it is does not work, when there are sublevels it starts behaving erratically folding levels you have not requested to be folded.
under Redmie 2.0.3

--------------------------------------------------------------------------------
Duplicates #4913.
--------------------------------------------------------------------------------
With any reason, this one has gets an update too instead of just it's duplicat. Please ignore.
--------------------------------------------------------------------------------

--------------------------------------------------------------------------------
+1
--------------------------------------------------------------------------------
+1 as we have a lot of nested projets.
--------------------------------------------------------------------------------

--------------------------------------------------------------------------------

--------------------------------------------------------------------------------
+1 This would be a very good feature to have for organizations that have many projects with sub of sub of sub.
--------------------------------------------------------------------------------
A possible Solution:

I finaly gave up the idea with folding correctly. I guess its possible as well - but I am using another way now:

I installed the plugin "Favourite projects" [[http://www.redmine.org/plugins/redmine_favourite_projects]]
This way I select just the projects I am currently working on, or need to see constantly.

Then I changed the plugins views a little bit:
_./plugins/redmine_favorite_projects/app/views/projects/_

*index.html.erb:*
Just added a few lines as java script in the beginning of the file - as a click handler for hiding not favorite projects
<pre>
<script>
$(function()
{
$('ul.side-nav a').click(function()
{
$('tr.project').hide();
$('tr.' + $(this).attr('class')).show();
});

$('ul.side-nav2 a').click(function()
{
$('th.description').hide();
$('td.description').hide();
});

});
</script>

.
.
.
<!-- inside the "Filter" dropdown are a few more links now ... -->
<div class="filters">

<fieldset id="filters" class="collapsible <%= 'collapsed' if no_filters %>">
<legend onclick="toggleFieldset(this);"><%= l(:label_filter_plural) %></legend>
<div style="<%= 'display: none;' if no_filters %>">
<p>
<span class="filter-condition">
<label for="closed"><%= check_box_tag 'closed', 1, params[:closed] %> <%= l(:label_show_closed_projects) %></label>
<ul class="side-nav">
<li><a class="project" href="#">Show all</a></li>
<li><a class="FAV_ON" href="#">Show only favorite</a></li>
</ul>
<ul class="side-nav2">
<li><a class="hide_description" href="#">Show only project</a></li>
</ul>
</span>

</p>

</div>
</fieldset>

<p class="buttons hide-when-print">
<%= link_to l(:button_apply), "#", :onclick=>"$('#query_form').submit()", :class => 'icon icon-checked' %>
<%= link_to l(:button_clear), { :set_filter => 1, :project_id => @project }, :class => 'icon icon-reload' %>
</p>
</div>

</pre>

*_list.html.erb:*
Changed a few lines, to have classes for the html tags to hide them
<pre>
<table class="list">
<thead>
<tr>
<th style="width:25px"></th>
<th><%=l(:label_project)%></th>

<!--added class=... -->
<th class="description"><%=l(:field_description)%></th>
<!-- <th><%=l(:field_go_to)%></th> -->
<!-- <th><%=l(:field_created_on)%></th> -->
</tr>
</thead>
</pre>

Added a value "favorite=..." and a function "favorite_status()"
<pre>
<% project_tree(@projects) do |project, level| %>
<tr class="<%= cycle("odd", "even") %> <%= project.css_classes %> <%= level > 0 ? "idnt idnt-#{level}" : nil %> <%= favorite_mark(project, User.current) %>" favorite="<%= favorite_status(project, User.current)%>">
<td><%= favorite_tag(project, User.current) %></td>
</pre>

I also changed the helper file - I added the neccessary functions to mark what is favorite
_./plugins/redmine_favorite_projects/app/views/projects/favorite_projects_helper.rb_ :

<pre>
def favorite_mark(object, user, options={})
return '' unless user && user.logged? && user.member_of?(object)
favorite = FavoriteProject.favorite?(object.id, user.id)
favorite ? 'FAV_ON' : 'FAV_OFF'
end

def favorite_status(object, user, options={})
return '' unless user && user.logged? && user.member_of?(object)
favorite = FavoriteProject.favorite?(object.id, user.id)
favorite ? 'ON' : 'OFF'
end

</pre>

I guess - this could be done much nicer - but it fits my needs.

In combination with Firefox and the "All-In-One sidebar" addon, I use the Multipanel feature from this addon to see my projectlist all the time.
Just navigate to your project list - open the sidebar with multipanel view and click on the double arrow icon left from the sidebars close symbol.

Now your projectlist is on the left side. If you click on your project the overview page will be opened on the right (main) panel.
I also changed my standard destination for projects to "issues" instead of the overview page.

Please see at the screenshots attached to get an idea.
If any questions remain, pease feel free to contact me.

Best
Christian
--------------------------------------------------------------------------------
for Redmine 2.6.0 support,chinese support

http://www.redmine.org/boards/3/topics/45921

other support:

http://stackoverflow.com/questions/28363791/redmine-2-6-1-see-project-in-tree-view

http://sourceforge.net/p/projectstreeview/code/HEAD/tree/trunk/
--------------------------------------------------------------------------------
Is there any solution for the 3.0.+ yet ?
--------------------------------------------------------------------------------
Dears All,

Here the solution I apply to meet my need.
No need to modify any ruby file nor to deploy plugin.
It is rendered directly by browser.

edit application.css of your theme (/redmine/public/themes/mytheme/stylesheets/application.css) then add :
<pre><code class="css">
span.expcolroot, span.expcolchild{
font-size: 8px;
line-height:8px;
font-weight : bold;
cursor: pointer;
padding:1px;
width: 8px;
height: 8px;
border:1px solid #999;
display: inline-block;
margin-right: 3px;
text-align: center;
background-color:#ddd;
color: #999;
border-radius:2px;
}

span.expcolroot:hover, span.expcolchild:hover{
background-color:#999;
color:#fff;
}
</code></pre>

edit main application.js (eg:/redmine/public/javascripts/application.js), then add :

<pre><code class="javascript">
function addProjectsListCollapse(){
$( "div#projects-index div.root" ).prepend( "<span class='expcolroot'>-</span>" );
$( "div#projects-index div.child" ).prepend( "<span class='expcolchild'>-</span>" );
$( "span.expcolroot, span.expcolchild").click(function(){
$header = $(this);
$content1 = $header.parent().next("ul");
$content2 = $header.parent().children(".description");
if ($content1.length) {
$content1.slideToggle(150, function () {
if ($content1.is(":hidden")){
$header.html("+");
} else {
$header.html("-");
}
});
}
if ($content2.length) {
$content2.slideToggle(150, function () {
if ($content2.is(":hidden")){
$header.html("+");
} else {
$header.html("-");
}
});
}
});
}

$(document).ready(addProjectsListCollapse);
</code></pre>

These short modifications will add a plus/minus sign on left of project title ([+]/[-])
It can show/hide project's discription and sub-projects list if present
--------------------------------------------------------------------------------
Here is "Sub project collapse plugin":https://github.com/anton-sergeev/redmine_subproject_collapse based on Sebastien Thibaud comment.
--------------------------------------------------------------------------------
Hello All,

We could very much do with the collapse Projects feature also as we have many projects that also include sub projects.

Anton Sergeev, you solution looks neat but we have tried this and while the plugin shows up the Projects page has not changed to reflect the collapse arrows. Do we need the Favourite Projects Plugin as mentioned in Sebastien's solution?

Thank you for the help.
--------------------------------------------------------------------------------


related_issues

relates,New,6522,Projects page optional as collapsable tree
relates,Closed,2117,Alternative view for "Projects" page
duplicates,Closed,4913,Projects list expanding and contracting
duplicates,Closed,16939,Hide/Show subprojects in "Projects" section

Admin Redmine さんがほぼ4年前に更新

  • カテゴリProjects_11 にセット

他の形式にエクスポート: Atom PDF

いいね!0
いいね!0