From 07c23537ebe84d593dccf270fe3121263cba73f3 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Oliver=20G=C3=BCnther?= Date: Mon, 21 Sep 2015 18:03:19 +0200 Subject: [PATCH] Restyle My page --- app/assets/stylesheets/content/_my_page.sass | 14 ++++++-- app/assets/stylesheets/content/_table.sass | 3 ++ .../stylesheets/content/_widget_box.sass | 25 +++++++++----- app/views/homescreen/index.html.erb | 2 +- app/views/my/_block.html.erb | 2 +- app/views/my/_block_container.html.erb | 14 ++++++++ app/views/my/blocks/_calendar.html.erb | 7 ++-- .../my/blocks/_issuesassignedtome.html.erb | 16 +++++---- .../my/blocks/_issuesreportedbyme.html.erb | 9 +++-- app/views/my/blocks/_issueswatched.html.erb | 9 +++-- app/views/my/blocks/_news.html.erb | 28 ++++++++++++---- app/views/my/blocks/_timelog.html.erb | 5 ++- .../_workpackagesresponsiblefor.html.erb | 17 +++++----- app/views/my/page.html.erb | 33 +++++-------------- app/views/my/page_layout.html.erb | 29 +++++----------- config/routes.rb | 1 + 16 files changed, 124 insertions(+), 90 deletions(-) create mode 100644 app/views/my/_block_container.html.erb diff --git a/app/assets/stylesheets/content/_my_page.sass b/app/assets/stylesheets/content/_my_page.sass index b4e369dc2e..ae9fee7626 100644 --- a/app/assets/stylesheets/content/_my_page.sass +++ b/app/assets/stylesheets/content/_my_page.sass @@ -26,6 +26,8 @@ // See doc/COPYRIGHT.rdoc for more details. //++ + + #content .mypage-box @include content-box @@ -38,6 +40,15 @@ table, td, th border: none +.my-page--container + + #list-left, + #list-right + @extend .medium-6 + +.handle + cursor: move + div.box-actions float: right margin-right: 16px @@ -82,9 +93,6 @@ div.box-actions margin-top: 8px padding-bottom: 8px - div.mypage-box div.box-actions - margin-top: -60px - div.mypage-box p.summary font-style: normal diff --git a/app/assets/stylesheets/content/_table.sass b/app/assets/stylesheets/content/_table.sass index 87840517cb..428c164c44 100644 --- a/app/assets/stylesheets/content/_table.sass +++ b/app/assets/stylesheets/content/_table.sass @@ -57,6 +57,9 @@ $input-elements: input, 'input.form--text-field', select, 'select.form--select', x: hidden y: auto +.generic-table--action-buttons + margin-top: 3rem + #generic-table tr.issue &.ng-enter, &.ng-move diff --git a/app/assets/stylesheets/content/_widget_box.sass b/app/assets/stylesheets/content/_widget_box.sass index f58813dd1c..a7c31c54d1 100644 --- a/app/assets/stylesheets/content/_widget_box.sass +++ b/app/assets/stylesheets/content/_widget_box.sass @@ -37,8 +37,20 @@ $widget-box--enumeration-width: 20px margin-left: 10px .widget-boxes - display: flex - flex-flow: row wrap + + &.-flex + display: flex + flex-flow: row wrap + + .widget-box + flex: 1 + flex-basis: 32% + display: flex + flex-direction: column + + .widget-box--enumeration, + .widget-box--arrow-links + flex-grow: 2 .icon-context:before padding-right: 5px @@ -46,12 +58,8 @@ $widget-box--enumeration-width: 20px .widget-box @include widget-box--style padding: 10px 10px 10px 20px - flex: 1 - flex-basis: 32% - display: flex - flex-direction: column min-height: 250px - word-wrap: break-words + word-wrap: break-word overflow: hidden .widget-box--header @@ -76,12 +84,10 @@ $widget-box--enumeration-width: 20px .widget-box--enumeration margin-left: 1.5rem margin-top: 0.5rem - flex-grow: 2 .widget-box--arrow-links list-style: none margin: 0.5rem 0 1rem 0 - flex-grow: 2 li:before @include icon-common @@ -106,3 +112,4 @@ $widget-box--enumeration-width: 20px margin-bottom: 10px //necessary for correct alignment even with long texts width: calc(100% - #{$widget-box--enumeration-width}) + diff --git a/app/views/homescreen/index.html.erb b/app/views/homescreen/index.html.erb index d437395bde..edba44c403 100644 --- a/app/views/homescreen/index.html.erb +++ b/app/views/homescreen/index.html.erb @@ -35,7 +35,7 @@ See doc/COPYRIGHT.rdoc for more details. <% if @homescreen[:blocks].any? %> -
+
<% @homescreen[:blocks].each do |block| %> <% if block[:if].nil? || instance_eval(&block[:if]) %>
diff --git a/app/views/my/_block.html.erb b/app/views/my/_block.html.erb index 5e6f56336d..ed3a780dd8 100644 --- a/app/views/my/_block.html.erb +++ b/app/views/my/_block.html.erb @@ -27,7 +27,7 @@ See doc/COPYRIGHT.rdoc for more details. ++#%> -
+
<% content_for "#{block_name}_remove_block" do %>
diff --git a/app/views/my/_block_container.html.erb b/app/views/my/_block_container.html.erb new file mode 100644 index 0000000000..3f2a0d7665 --- /dev/null +++ b/app/views/my/_block_container.html.erb @@ -0,0 +1,14 @@ +<% unless blocks.nil? || blocks.empty? %> +
+ <% blocks.each do |block_name| %> + <% next unless MyController.available_blocks.keys.include? block_name %> + <% if edit %> + <%= render partial: "my/block", locals: { block_name: block_name, user: @user } %> + <% else %> +
+ <%= render partial: "my/blocks/#{block_name}", locals: { user: @user } %> +
+ <% end %> + <% end %> +
+<% end %> diff --git a/app/views/my/blocks/_calendar.html.erb b/app/views/my/blocks/_calendar.html.erb index 152d1ec5f7..f18c4e479e 100644 --- a/app/views/my/blocks/_calendar.html.erb +++ b/app/views/my/blocks/_calendar.html.erb @@ -27,12 +27,15 @@ See doc/COPYRIGHT.rdoc for more details. ++#%> -

<%= l(:label_calendar) %>

- <% if defined? block_name %> <%= content_for "#{block_name}_remove_block" %> <% end %> +

+ + <%=l(:label_calendar)%> +

+ <% calendar = Redmine::Helpers::Calendar.new(Date.today, current_language, :week) calendar.events = calendar_items(calendar.startdt, calendar.enddt) %> diff --git a/app/views/my/blocks/_issuesassignedtome.html.erb b/app/views/my/blocks/_issuesassignedtome.html.erb index a8a98c5279..1d922d3735 100644 --- a/app/views/my/blocks/_issuesassignedtome.html.erb +++ b/app/views/my/blocks/_issuesassignedtome.html.erb @@ -26,24 +26,26 @@ Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. See doc/COPYRIGHT.rdoc for more details. ++#%> -

<%=l(:label_assigned_to_me_work_packages)%> (<%= wps_assigned_to_me_count %>)

<% if defined? block_name %> <%= content_for "#{block_name}_remove_block" %> <% end %> +

+ + <%=l(:label_assigned_to_me_work_packages)%> (<%= wps_assigned_to_me_count %>) +

+ <%= render partial: 'work_packages/list_simple', - locals: { - work_packages: wps_assigned_to_me, - list_for: :assigned - } %> + locals: { work_packages: wps_assigned_to_me, list_for: :assigned } %> <% if wps_assigned_to_me_count > 0 %> -

+

<%= link_to l(:label_work_package_view_all_assigned_to_me), work_packages_assigned_to_me_path, class: 'button -highlight' %> -

+ +
<% end %> <% content_for :header_tags do %> <%= auto_discovery_link_tag(:atom, diff --git a/app/views/my/blocks/_issuesreportedbyme.html.erb b/app/views/my/blocks/_issuesreportedbyme.html.erb index a6835ac57e..95a50129d8 100644 --- a/app/views/my/blocks/_issuesreportedbyme.html.erb +++ b/app/views/my/blocks/_issuesreportedbyme.html.erb @@ -32,7 +32,10 @@ See doc/COPYRIGHT.rdoc for more details. .order("#{WorkPackage.table_name}.updated_at DESC") %> -

<%=l(:label_reported_work_packages)%> (<%= @user.reported_work_package_count %>)

+

+ + <%=l(:label_reported_work_packages)%> (<%= @user.reported_work_package_count %>) +

<% if defined? block_name %> <%= content_for "#{block_name}_remove_block" %> @@ -45,11 +48,11 @@ See doc/COPYRIGHT.rdoc for more details. } %> <% if reported.length > 0 %> -

+

<%= link_to l(:label_work_package_view_all_reported_by_me), work_packages_reported_by_me_path, class: 'button -highlight' %> -

+
<% end %> <% content_for :header_tags do %> <%= auto_discovery_link_tag(:atom, diff --git a/app/views/my/blocks/_issueswatched.html.erb b/app/views/my/blocks/_issueswatched.html.erb index 945c9a051d..605b5bd99e 100644 --- a/app/views/my/blocks/_issueswatched.html.erb +++ b/app/views/my/blocks/_issueswatched.html.erb @@ -31,7 +31,10 @@ See doc/COPYRIGHT.rdoc for more details. <% watched_count = WorkPackage.visible.open.watched_by(user.id).count %> -

<%=l(:label_watched_work_packages)%> (<%= watched_count %>)

+

+ + <%=l(:label_watched_work_packages)%> (<%= watched_count %>) +

<% if defined? block_name %> <%= content_for "#{block_name}_remove_block" %> @@ -44,9 +47,9 @@ See doc/COPYRIGHT.rdoc for more details. } %> <% if watched.length > 0 %> -

+

<%= link_to l(:label_work_package_view_all_watched), work_packages_watched_path, class: 'button -highlight' %> -

+
<% end %> diff --git a/app/views/my/blocks/_news.html.erb b/app/views/my/blocks/_news.html.erb index 3054e1c552..c0536101cb 100644 --- a/app/views/my/blocks/_news.html.erb +++ b/app/views/my/blocks/_news.html.erb @@ -31,16 +31,30 @@ See doc/COPYRIGHT.rdoc for more details. .where("#{News.table_name}.project_id in (#{@user.projects.collect{|m| m.id}.join(',')})") .includes(:project, :author) unless @user.projects.empty? %> -

<%=l(:label_news_latest)%>

- <% if defined? block_name %> <%= content_for "#{block_name}_remove_block" %> <% end %> -<% if news %> - <%= render(partial: 'news/news', - collection: news) - %> -<% else %> +

+ + <%= l(:label_news_latest) %> +

+ +<% news = News.latest(count: 3) %> +<% if news.empty? %> <%= no_results_box(custom_title: t('news.my_page.no_results_title_text')) %> +<% unless news.empty? %> + <% end %> diff --git a/app/views/my/blocks/_timelog.html.erb b/app/views/my/blocks/_timelog.html.erb index d880ff36c8..94b4ff7be2 100644 --- a/app/views/my/blocks/_timelog.html.erb +++ b/app/views/my/blocks/_timelog.html.erb @@ -27,7 +27,10 @@ See doc/COPYRIGHT.rdoc for more details. ++#%> -

<%=l(:label_spent_time)%> (<%= l(:label_last_n_days, 7) %>)

+

+ + <%=l(:label_spent_time)%> (<%= l(:label_last_n_days, 7) %>) +

<% if defined? block_name %> <%= content_for "#{block_name}_remove_block" %> diff --git a/app/views/my/blocks/_workpackagesresponsiblefor.html.erb b/app/views/my/blocks/_workpackagesresponsiblefor.html.erb index 23f6b3d2e7..27d94aaffb 100644 --- a/app/views/my/blocks/_workpackagesresponsiblefor.html.erb +++ b/app/views/my/blocks/_workpackagesresponsiblefor.html.erb @@ -36,24 +36,25 @@ See doc/COPYRIGHT.rdoc for more details. <% responsible_count = WorkPackage.visible.open.where(responsible_id: User.current.id).count %> -

<%=l(:label_responsible_for_work_packages)%> (<%= responsible_count %>)

- <% if defined? block_name %> <%= content_for "#{block_name}_remove_block" %> <% end %> +

+ + <%=l(:label_responsible_for_work_packages)%> (<%= responsible_count %>) +

+ <%= render partial: 'work_packages/list_simple', - locals: { - work_packages: responsible, - list_for: :responsible - } %> + locals: { work_packages: responsible, list_for: :responsible} %> <% if responsible.length > 0 %> -

+

<%= link_to l(:label_work_package_view_all_responsible_for), work_packages_responsible_for_path, class: 'button -highlight' %> -

+ +
<% end %> <% content_for :header_tags do %> <%= auto_discovery_link_tag(:atom, diff --git a/app/views/my/page.html.erb b/app/views/my/page.html.erb index 3af4437177..3dc22f98b4 100644 --- a/app/views/my/page.html.erb +++ b/app/views/my/page.html.erb @@ -35,34 +35,17 @@ See doc/COPYRIGHT.rdoc for more details. <% end %> <% end %> -
-
-
- <% @blocks['top'].each do |b| - next unless MyController.available_blocks.keys.include? b %> -
- <%= render partial: "my/blocks/#{b}", locals: { user: @user } %> -
- <% end if @blocks['top'] %> -
+
+
+ <%= render partial: 'block_container', locals: { edit: false, blocks: @blocks['top'] } %>
-
- <% @blocks['left'].each do |b| - next unless MyController.available_blocks.keys.include? b %> -
- <%= render partial: "my/blocks/#{b}", locals: { user: @user } %> -
- <% end if @blocks['left'] %> -
-
- <% @blocks['right'].each do |b| - next unless MyController.available_blocks.keys.include? b %> -
- <%= render partial: "my/blocks/#{b}", locals: { user: @user } %> -
- <% end if @blocks['right'] %> + <% %w(left right).each do |position| %> +
+ <%= render partial: 'block_container', locals: { edit: false, blocks: @blocks[position] } %>
+ <% end %>
+ <% html_title(l(:label_my_page)) -%> diff --git a/app/views/my/page_layout.html.erb b/app/views/my/page_layout.html.erb index 8fe86f198f..046f7c8377 100644 --- a/app/views/my/page_layout.html.erb +++ b/app/views/my/page_layout.html.erb @@ -92,30 +92,19 @@ See doc/COPYRIGHT.rdoc for more details. <% end %>

<%=l(:label_visible_elements) %>

-
-
-
- <% @blocks['top'].each do |b| - next unless MyController.available_blocks.keys.include? b %> - <%= render partial: 'block', locals: {user: @user, block_name: b} %> - <% end if @blocks['top'] %> -
+
+
+ <%= render partial: 'block_container', locals: { edit: true, blocks: @blocks['top'] } %>
-
- <% @blocks['left'].each do |b| - next unless MyController.available_blocks.keys.include? b %> - <%= render partial: 'block', locals: {user: @user, block_name: b} %> - <% end if @blocks['left'] %> -
-
- <% @blocks['right'].each do |b| - next unless MyController.available_blocks.keys.include? b %> - <%= render partial: 'block', locals: {user: @user, block_name: b} %> - <% end if @blocks['right'] %> -
+ <% %w(left right).each do |position| %> +
+ <%= render partial: 'block_container', locals: { edit: true, blocks: @blocks[position] } %> +
+ <% end %>
+ <%= sortable_element 'list-top', tag: 'div', only: 'mypage-box', diff --git a/config/routes.rb b/config/routes.rb index 834770ee77..e63213dcf4 100644 --- a/config/routes.rb +++ b/config/routes.rb @@ -539,6 +539,7 @@ OpenProject::Application.routes.draw do scope controller: 'my' do post '/my/add_block', action: 'add_block' post '/my/remove_block', action: 'remove_block' + post '/my/order_blocks', action: 'order_blocks' get '/my/page_layout', action: 'page_layout' get '/my/password', action: 'password' post '/my/change_password', action: 'change_password'