mirror of
https://github.com/redmine/redmine.git
synced 2026-01-20 22:43:10 +01:00
Patch by Katsuya HIDAKA (user:hidakatsuya). git-svn-id: https://svn.redmine.org/redmine/trunk@24085 e93f8b46-1217-0410-a6f0-8f06a7374b81
256 lines
11 KiB
Plaintext
256 lines
11 KiB
Plaintext
<%
|
|
zoom = 1
|
|
gantt.zoom.times { zoom *= 2 }
|
|
|
|
subject_width = 330
|
|
header_height = 18
|
|
|
|
headers_height = header_height
|
|
show_weeks = false
|
|
show_days = false
|
|
show_day_num = false
|
|
|
|
if gantt.zoom > 1
|
|
show_weeks = true
|
|
headers_height = 2 * header_height
|
|
if gantt.zoom > 2
|
|
show_days = true
|
|
headers_height = 3 * header_height
|
|
if gantt.zoom > 3
|
|
show_day_num = true
|
|
headers_height = 4 * header_height
|
|
end
|
|
end
|
|
end
|
|
|
|
g_width = ((gantt.date_to - gantt.date_from + 1) * zoom).to_i
|
|
gantt.render(
|
|
top: headers_height + 8,
|
|
zoom: zoom,
|
|
g_width: g_width,
|
|
subject_width: subject_width
|
|
)
|
|
g_height = [(20 * (gantt.number_of_rows + 6)) + 150, 206].max
|
|
t_height = g_height + headers_height
|
|
%>
|
|
|
|
<% if gantt.truncated %>
|
|
<p class="warning"><%= l(:notice_gantt_chart_truncated, max: gantt.max_rows) %></p>
|
|
<% end %>
|
|
|
|
<%= gantt_chart_tag(@query) do %>
|
|
<tr>
|
|
<%= gantt_column_tag('subjects', min_width: 100,
|
|
style: "width:#{query.draw_selected_columns ? subject_width + 1 : subject_width + 2}px;") do %>
|
|
<%
|
|
subjects_container_classes = "gantt_subjects_container"
|
|
subjects_container_classes << " draw_selected_columns" if query.draw_selected_columns
|
|
subjects_container_style = +"position:relative;"
|
|
subjects_container_style << "height: #{t_height + 24}px;"
|
|
subjects_container_style << "width: #{subject_width + 1}px;"
|
|
%>
|
|
<%= content_tag(:div,
|
|
style: subjects_container_style,
|
|
class: subjects_container_classes,
|
|
data: {'gantt--chart-target': 'subjectsContainer'}) do %>
|
|
<%
|
|
header_bg_style = +"width: #{subject_width + 1}px;"
|
|
header_bg_style << "height: #{headers_height}px;"
|
|
header_bg_style << 'background: #f1f3f5;' # oc-gray-1
|
|
%>
|
|
<%= content_tag(:div, "", style: header_bg_style, class: "gantt_hdr") %>
|
|
<%
|
|
header_overlay_style = +"z-index: 1;"
|
|
header_overlay_style << "width: #{subject_width + 1}px;"
|
|
header_overlay_style << "height: #{t_height}px;"
|
|
header_overlay_style << 'overflow: hidden;'
|
|
%>
|
|
<%= content_tag(:div, "", style: header_overlay_style, class: "gantt_hdr") %>
|
|
<%= gantt_subjects_tag do %>
|
|
<%= form_tag({}, data: {cm_url: issues_context_menu_path}) do %>
|
|
<%= hidden_field_tag 'back_url', url_for(params: request.query_parameters), id: nil %>
|
|
<%= gantt.subjects.html_safe %>
|
|
<% end %>
|
|
<% end %>
|
|
<% end %>
|
|
<% end %>
|
|
<%
|
|
query.columns.each do |column|
|
|
next if Redmine::Helpers::Gantt::UNAVAILABLE_COLUMNS.include?(column.name)
|
|
column_name = column.name.to_s.tr('.', '_')
|
|
%>
|
|
<%= gantt_column_tag(column_name, min_width: 20, id: column_name,
|
|
class: ['gantt_selected_column', { 'last_gantt_selected_column': query.columns.last == column }]) do %>
|
|
<%
|
|
column_container_style = +"position: relative;"
|
|
column_container_style << "height: #{t_height + 24}px;"
|
|
%>
|
|
<%= content_tag(:div, style: column_container_style, class: "gantt_#{column_name}_container gantt_selected_column_container") do %>
|
|
<%
|
|
column_header_overlay_style = +"height: #{t_height}px;"
|
|
column_header_overlay_style << 'overflow: hidden;'
|
|
%>
|
|
<%= content_tag(:div, '', style: column_header_overlay_style, class: "gantt_hdr") %>
|
|
<%
|
|
column_header_style = +"height: #{headers_height}px;"
|
|
column_header_style << 'background: #f1f3f5;' # oc-gray-1
|
|
%>
|
|
<%= content_tag(:div,
|
|
content_tag(:p, column.caption, class: 'gantt_hdr_selected_column_name'),
|
|
style: column_header_style,
|
|
class: "gantt_hdr") %>
|
|
<%= content_tag(:div, class: "gantt_#{column_name} gantt_selected_column_content") do %>
|
|
<%= gantt.selected_column_content({column: column, top: headers_height + 8, zoom: zoom, g_width: g_width}).html_safe %>
|
|
<% end %>
|
|
<% end %>
|
|
<% end %>
|
|
<% end %>
|
|
<td>
|
|
<div style="position:relative;height:<%= t_height + 24 %>px;overflow:auto;" id="gantt_area" data-gantt--chart-target="ganttArea">
|
|
<%
|
|
months_header_style = +"width: #{g_width - 1}px;"
|
|
months_header_style << "height: #{headers_height}px;"
|
|
months_header_style << 'background: #f1f3f5;' # oc-gray-1
|
|
%>
|
|
<%= content_tag(:div, ' '.html_safe, style: months_header_style, class: "gantt_hdr") %>
|
|
|
|
<% month_f = gantt.date_from %>
|
|
<% left = 0 %>
|
|
<% months_height = (show_weeks ? header_height : header_height + g_height) %>
|
|
<% gantt.months.times do %>
|
|
<% width = (((month_f >> 1) - month_f) * zoom - 1).to_i %>
|
|
<% month_style = +"left: #{left}px;" %>
|
|
<% month_style << "width: #{width}px;" %>
|
|
<% month_style << "height: #{months_height}px;" %>
|
|
<%= content_tag(:div, style: month_style, class: "gantt_hdr") do %>
|
|
<%= link_to "#{month_f.year}-#{month_f.month}",
|
|
gantt.params.merge(year: month_f.year, month: month_f.month),
|
|
title: "#{month_name(month_f.month)} #{month_f.year}" %>
|
|
<% end %>
|
|
<% left += width + 1 %>
|
|
<% month_f = month_f >> 1 %>
|
|
<% end %>
|
|
|
|
<% if show_weeks %>
|
|
<% left = 0 %>
|
|
<% weeks_height = (show_days ? header_height - 1 : header_height - 1 + g_height) %>
|
|
<% if gantt.date_from.cwday == 1 %>
|
|
<% week_f = gantt.date_from %>
|
|
<% else %>
|
|
<% week_f = gantt.date_from + (7 - gantt.date_from.cwday + 1) %>
|
|
<% width = (7 - gantt.date_from.cwday + 1) * zoom - 1 %>
|
|
<% gap_style = +"left: #{left}px;" %>
|
|
<% gap_style << "top: 19px;" %>
|
|
<% gap_style << "width: #{width}px;" %>
|
|
<% gap_style << "height: #{weeks_height}px;" %>
|
|
<%= content_tag(:div, ' '.html_safe, style: gap_style, class: "gantt_hdr") %>
|
|
<% left += width + 1 %>
|
|
<% end %>
|
|
<% while week_f <= gantt.date_to %>
|
|
<% width = ((week_f + 6 <= gantt.date_to) ? 7 * zoom - 1 : (gantt.date_to - week_f + 1) * zoom - 1).to_i %>
|
|
<% week_style = +"left: #{left}px;" %>
|
|
<% week_style << "top: 19px;" %>
|
|
<% week_style << "width: #{width}px;" %>
|
|
<% week_style << "height: #{weeks_height}px;" %>
|
|
<%= content_tag(:div, style: week_style, class: "gantt_hdr") do %>
|
|
<%= content_tag(:small) do %>
|
|
<%= week_f.cweek if width >= 16 %>
|
|
<% end %>
|
|
<% end %>
|
|
<% left += width + 1 %>
|
|
<% week_f += 7 %>
|
|
<% end %>
|
|
<% end %>
|
|
|
|
<% if show_day_num %>
|
|
<% left = 0 %>
|
|
<% days_height = g_height + header_height * 2 - 1 %>
|
|
<% wday = gantt.date_from.cwday %>
|
|
<% day_num = gantt.date_from %>
|
|
<% (gantt.date_to - gantt.date_from + 1).to_i.times do %>
|
|
<% width = zoom - 1 %>
|
|
<% day_style = +"left:#{left}px;" %>
|
|
<% day_style << "top:37px;" %>
|
|
<% day_style << "width:#{width}px;" %>
|
|
<% day_style << "height:#{days_height}px;" %>
|
|
<% day_style << "font-size:0.7em;" %>
|
|
<% day_classes = +"gantt_hdr" %>
|
|
<% day_classes << " nwday" if gantt.non_working_week_days.include?(wday) %>
|
|
<%= content_tag(:div, style: day_style, class: day_classes) do %>
|
|
<%= day_num.day %>
|
|
<% end %>
|
|
<% left += width + 1 %>
|
|
<% day_num += 1 %>
|
|
<% wday += 1 %>
|
|
<% wday = 1 if wday > 7 %>
|
|
<% end %>
|
|
<% end %>
|
|
|
|
<% if show_days %>
|
|
<% left = 0 %>
|
|
<% days_height = g_height + header_height - 1 %>
|
|
<% days_top = (show_day_num ? 55 : 37) %>
|
|
<% (gantt.date_from..gantt.date_to).each do |g_date| %>
|
|
<% width = zoom - 1 %>
|
|
<% day_style = +"left: #{left}px;" %>
|
|
<% day_style << "top: #{days_top}px;" %>
|
|
<% day_style << "width: #{width}px;" %>
|
|
<% day_style << "height: #{days_height}px;" %>
|
|
<% day_style << "font-size:0.7em;" %>
|
|
<% day_classes = +"gantt_hdr" %>
|
|
<% day_classes << " nwday" if gantt.non_working_week_days.include?(g_date.cwday) %>
|
|
<%= content_tag(:div, style: day_style, class: day_classes) do %>
|
|
<%= day_letter(g_date.cwday) %>
|
|
<% end %>
|
|
<% left += width + 1 %>
|
|
<% end %>
|
|
<% end %>
|
|
|
|
<%= form_tag({}, data: {cm_url: issues_context_menu_path}) do %>
|
|
<%= hidden_field_tag 'back_url', url_for(params: request.query_parameters), id: nil %>
|
|
<%= gantt.lines.html_safe %>
|
|
<% end %>
|
|
|
|
<% if User.current.today >= gantt.date_from && User.current.today <= gantt.date_to %>
|
|
<% today_left = (((User.current.today - gantt.date_from + 1) * zoom).floor - 1).to_i %>
|
|
<% today_style = +"position: absolute;" %>
|
|
<% today_style << "height: #{g_height}px;" %>
|
|
<% today_style << "top: #{headers_height + 1}px;" %>
|
|
<% today_style << "left: #{today_left}px;" %>
|
|
<% today_style << "width:10px;" %>
|
|
<% today_style << "border-left: 1px dashed red;" %>
|
|
<%= content_tag(:div, ' '.html_safe, style: today_style, id: 'today_line') %>
|
|
<% end %>
|
|
|
|
<%
|
|
draw_area_style = +"position: absolute;"
|
|
draw_area_style << "height: #{g_height}px;"
|
|
draw_area_style << "top: #{headers_height + 1}px;"
|
|
draw_area_style << 'left: 0px;'
|
|
draw_area_style << "width: #{g_width - 1}px;"
|
|
%>
|
|
<%= content_tag(:div, '', style: draw_area_style, id: "gantt_draw_area", data: {'gantt--chart-target': 'drawArea'}) %>
|
|
</div>
|
|
</td>
|
|
</tr>
|
|
<% end %>
|
|
|
|
<span class="pagination">
|
|
<ul class="pages">
|
|
<li class="previous page">
|
|
<%= link_to("\xc2\xab " + l(:label_previous),
|
|
{params: request.query_parameters.merge(gantt.params_previous)},
|
|
accesskey: accesskey(:previous)) %>
|
|
</li><li class="next page">
|
|
<%= link_to(l(:label_next) + " \xc2\xbb",
|
|
{params: request.query_parameters.merge(gantt.params_next)},
|
|
accesskey: accesskey(:next)) %>
|
|
</li>
|
|
</ul>
|
|
</span>
|
|
|
|
<% other_formats_links do |f| %>
|
|
<%= f.link_to_with_query_parameters 'PDF', gantt.params %>
|
|
<%= f.link_to_with_query_parameters('PNG', gantt.params) if gantt.respond_to?('to_image') %>
|
|
<% end %>
|