Reordered dropdown options
Rearranged datetime created line Added `avatar_class` option to `link_to_member` so it can be hidden Made snippet title font heavier Added file title bar Hidden unneeded info from xs screens Added visibility icon Reveal file-actions on xs screens Added comments icon to snippets list items Refactored no-comments declaration into framework stylesheet Final touch ups Fixed snippets_spec
This commit is contained in:
parent
e9e8c67fb7
commit
56461e0c16
16 changed files with 75 additions and 92 deletions
|
@ -162,6 +162,10 @@ ul.content-list {
|
|||
margin-right: 0;
|
||||
}
|
||||
}
|
||||
|
||||
.no-comments {
|
||||
opacity: 0.5;
|
||||
}
|
||||
}
|
||||
|
||||
// When dragging a list item
|
||||
|
|
|
@ -21,10 +21,6 @@
|
|||
.issue-labels {
|
||||
display: inline-block;
|
||||
}
|
||||
|
||||
.issue-no-comments {
|
||||
opacity: 0.5;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
@ -231,10 +231,6 @@
|
|||
.merge-request-labels {
|
||||
display: inline-block;
|
||||
}
|
||||
|
||||
.merge-request-no-comments {
|
||||
opacity: 0.5;
|
||||
}
|
||||
}
|
||||
|
||||
.merge-request-angle {
|
||||
|
|
|
@ -2,20 +2,6 @@
|
|||
padding: 2px;
|
||||
}
|
||||
|
||||
.snippet-holder {
|
||||
margin-bottom: -$gl-padding;
|
||||
|
||||
.file-holder {
|
||||
border-top: 0;
|
||||
}
|
||||
|
||||
.file-actions {
|
||||
.btn-clipboard {
|
||||
@extend .btn;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
.markdown-snippet-copy {
|
||||
position: fixed;
|
||||
top: -10px;
|
||||
|
@ -24,29 +10,18 @@
|
|||
max-width: 0;
|
||||
}
|
||||
|
||||
.file-holder.snippet-file-content {
|
||||
padding-bottom: $gl-padding;
|
||||
border-bottom: 1px solid $border-color;
|
||||
|
||||
.file-title {
|
||||
padding-top: $gl-padding;
|
||||
padding-bottom: $gl-padding;
|
||||
}
|
||||
|
||||
.file-actions {
|
||||
top: 12px;
|
||||
}
|
||||
|
||||
.file-content {
|
||||
border-left: 1px solid $border-color;
|
||||
border-right: 1px solid $border-color;
|
||||
border-bottom: 1px solid $border-color;
|
||||
.snippet-file-content {
|
||||
border-radius: 3px;
|
||||
.btn-clipboard {
|
||||
@extend .btn;
|
||||
}
|
||||
}
|
||||
|
||||
.snippet-title {
|
||||
font-size: 24px;
|
||||
font-weight: normal;
|
||||
font-weight: 600;
|
||||
padding: $gl-padding;
|
||||
padding-left: 0;
|
||||
}
|
||||
|
||||
.snippet-actions {
|
||||
|
|
|
@ -27,7 +27,7 @@ module ProjectsHelper
|
|||
author_html = ""
|
||||
|
||||
# Build avatar image tag
|
||||
author_html << image_tag(avatar_icon(author, opts[:size]), width: opts[:size], class: "avatar avatar-inline #{"s#{opts[:size]}" if opts[:size]}", alt: '') if opts[:avatar]
|
||||
author_html << image_tag(avatar_icon(author, opts[:size]), width: opts[:size], class: "avatar avatar-inline #{"s#{opts[:size]}" if opts[:size]} #{opts[:avatar_class] if opts[:avatar_class]}", alt: '') if opts[:avatar]
|
||||
|
||||
# Build name span tag
|
||||
if opts[:by_username]
|
||||
|
|
|
@ -1,10 +1,10 @@
|
|||
module SnippetsHelper
|
||||
def reliable_snippet_path(snippet)
|
||||
def reliable_snippet_path(snippet, opts = nil)
|
||||
if snippet.project_id?
|
||||
namespace_project_snippet_path(snippet.project.namespace,
|
||||
snippet.project, snippet)
|
||||
snippet.project, snippet, opts)
|
||||
else
|
||||
snippet_path(snippet)
|
||||
snippet_path(snippet, opts)
|
||||
end
|
||||
end
|
||||
|
||||
|
|
|
@ -29,7 +29,7 @@
|
|||
|
||||
- note_count = issue.notes.user.count
|
||||
%li
|
||||
= link_to issue_path(issue, anchor: 'notes'), class: ('issue-no-comments' if note_count.zero?) do
|
||||
= link_to issue_path(issue, anchor: 'notes'), class: ('no-comments' if note_count.zero?) do
|
||||
= icon('comments')
|
||||
= note_count
|
||||
|
||||
|
|
|
@ -37,7 +37,7 @@
|
|||
|
||||
- note_count = merge_request.mr_and_commit_notes.user.count
|
||||
%li
|
||||
= link_to merge_request_path(merge_request, anchor: 'notes'), class: ('merge-request-no-comments' if note_count.zero?) do
|
||||
= link_to merge_request_path(merge_request, anchor: 'notes'), class: ('no-comments' if note_count.zero?) do
|
||||
= icon('comments')
|
||||
= note_count
|
||||
|
||||
|
|
|
@ -2,12 +2,12 @@
|
|||
- if can?(current_user, :create_project_snippet, @project)
|
||||
= link_to new_namespace_project_snippet_path(@project.namespace, @project), class: 'btn btn-grouped btn-create new-snippet-link', title: "New Snippet" do
|
||||
New Snippet
|
||||
- if can?(current_user, :update_project_snippet, @snippet)
|
||||
= link_to edit_namespace_project_snippet_path(@project.namespace, @project, @snippet), class: "btn btn-grouped snippable-edit" do
|
||||
Edit
|
||||
- if can?(current_user, :update_project_snippet, @snippet)
|
||||
= link_to namespace_project_snippet_path(@project.namespace, @project, @snippet), method: :delete, data: { confirm: "Are you sure?" }, class: "btn btn-grouped btn-warning", title: 'Delete Snippet' do
|
||||
Delete
|
||||
- if can?(current_user, :update_project_snippet, @snippet)
|
||||
= link_to edit_namespace_project_snippet_path(@project.namespace, @project, @snippet), class: "btn btn-grouped snippable-edit" do
|
||||
Edit
|
||||
- if can?(current_user, :create_project_snippet, @project) || can?(current_user, :update_project_snippet, @snippet)
|
||||
.visible-xs-block.dropdown
|
||||
%button.btn.btn-default.btn-block.append-bottom-0.prepend-top-5{ data: { toggle: "dropdown" } }
|
||||
|
@ -19,11 +19,11 @@
|
|||
%li
|
||||
= link_to new_namespace_project_snippet_path(@project.namespace, @project), title: "New Snippet" do
|
||||
New Snippet
|
||||
- if can?(current_user, :update_project_snippet, @snippet)
|
||||
%li
|
||||
= link_to edit_namespace_project_snippet_path(@project.namespace, @project, @snippet) do
|
||||
Edit
|
||||
- if can?(current_user, :update_project_snippet, @snippet)
|
||||
%li
|
||||
= link_to namespace_project_snippet_path(@project.namespace, @project, @snippet), method: :delete, data: { confirm: "Are you sure?" }, title: 'Delete Snippet' do
|
||||
Delete
|
||||
- if can?(current_user, :update_project_snippet, @snippet)
|
||||
%li
|
||||
= link_to edit_namespace_project_snippet_path(@project.namespace, @project, @snippet) do
|
||||
Edit
|
||||
|
|
|
@ -1,15 +1,14 @@
|
|||
- page_title @snippet.title, "Snippets"
|
||||
|
||||
.snippet-holder
|
||||
= render 'shared/snippets/header'
|
||||
= render 'shared/snippets/header'
|
||||
|
||||
%article.file-holder.file-holder-no-border.snippet-file-content
|
||||
.file-title.file-title-clear
|
||||
%article.file-holder.snippet-file-content
|
||||
.file-title
|
||||
= blob_icon 0, @snippet.file_name
|
||||
= @snippet.file_name
|
||||
.file-actions.hidden-xs
|
||||
.file-actions
|
||||
= clipboard_button(clipboard_target: ".blob-content[data-blob-id='#{@snippet.id}']")
|
||||
= link_to 'Raw', raw_namespace_project_snippet_path(@project.namespace, @project, @snippet), class: "btn btn-sm", target: "_blank"
|
||||
= render 'shared/snippets/blob'
|
||||
|
||||
%div#notes= render "projects/notes/notes_with_form"
|
||||
%div#notes= render "projects/notes/notes_with_form"
|
||||
|
|
|
@ -6,12 +6,13 @@
|
|||
%strong.item-title
|
||||
Snippet #{@snippet.to_reference}
|
||||
%span.creator
|
||||
created by #{link_to_member(@project, @snippet.author, size: 24, author_class: "author item-title")}
|
||||
authored
|
||||
= time_ago_with_tooltip(@snippet.created_at, placement: 'bottom', html_class: 'snippet_updated_ago')
|
||||
- if @snippet.updated_at != @snippet.created_at
|
||||
%span
|
||||
= icon('edit', title: 'edited')
|
||||
= time_ago_with_tooltip(@snippet.updated_at, placement: 'bottom', html_class: 'snippet_edited_ago')
|
||||
by #{link_to_member(@project, @snippet.author, size: 24, author_class: "author item-title", avatar_class: "hidden-xs")}
|
||||
|
||||
.snippet-actions
|
||||
- if @snippet.project_id?
|
||||
|
@ -19,6 +20,5 @@
|
|||
- else
|
||||
= render "snippets/actions"
|
||||
|
||||
.content-block.second-block
|
||||
%h2.snippet-title.prepend-top-0.append-bottom-0
|
||||
%h2.snippet-title.prepend-top-0.append-bottom-0
|
||||
= markdown escape_once(@snippet.title), pipeline: :single_line, author: @snippet.author
|
||||
|
|
|
@ -3,19 +3,30 @@
|
|||
|
||||
.title
|
||||
= link_to reliable_snippet_path(snippet) do
|
||||
= truncate(snippet.title, length: 60)
|
||||
= snippet.title
|
||||
- if snippet.private?
|
||||
%span.label.label-gray
|
||||
%span.label.label-gray.hidden-xs
|
||||
= icon('lock')
|
||||
private
|
||||
%span.monospace.pull-right
|
||||
%span.monospace.pull-right.hidden-xs
|
||||
= snippet.file_name
|
||||
|
||||
%small.pull-right.cgray
|
||||
%ul.controls.visible-xs
|
||||
%li
|
||||
- note_count = snippet.notes.user.count
|
||||
= link_to reliable_snippet_path(snippet, anchor: 'notes'), class: ('no-comments' if note_count.zero?) do
|
||||
= icon('comments')
|
||||
= note_count
|
||||
%li
|
||||
%span.sr-only
|
||||
= visibility_level_label(snippet.visibility_level)
|
||||
= visibility_level_icon(snippet.visibility_level, fw: false)
|
||||
|
||||
%small.pull-right.cgray.hidden-xs
|
||||
- if snippet.project_id?
|
||||
= link_to snippet.project.name_with_namespace, namespace_project_path(snippet.project.namespace, snippet.project)
|
||||
|
||||
.snippet-info
|
||||
.snippet-info.hidden-xs
|
||||
= link_to user_snippets_path(snippet.author) do
|
||||
= snippet.author_name
|
||||
authored #{time_ago_with_tooltip(snippet.created_at)}
|
||||
|
|
|
@ -2,12 +2,12 @@
|
|||
- if current_user
|
||||
= link_to new_snippet_path, class: "btn btn-grouped btn-create new-snippet-link", title: "New Snippet" do
|
||||
New Snippet
|
||||
- if can?(current_user, :update_personal_snippet, @snippet)
|
||||
= link_to edit_snippet_path(@snippet), class: "btn btn-grouped snippable-edit" do
|
||||
Edit
|
||||
- if can?(current_user, :admin_personal_snippet, @snippet)
|
||||
= link_to snippet_path(@snippet), method: :delete, data: { confirm: "Are you sure?" }, class: "btn btn-grouped btn-danger", title: 'Delete Snippet' do
|
||||
Delete
|
||||
- if can?(current_user, :update_personal_snippet, @snippet)
|
||||
= link_to edit_snippet_path(@snippet), class: "btn btn-grouped snippable-edit" do
|
||||
Edit
|
||||
- if current_user
|
||||
.visible-xs-block.dropdown
|
||||
%button.btn.btn-default.btn-block.append-bottom-0.prepend-top-5{ data: { toggle: "dropdown" } }
|
||||
|
@ -18,11 +18,11 @@
|
|||
%li
|
||||
= link_to new_snippet_path, title: "New Snippet" do
|
||||
New Snippet
|
||||
- if can?(current_user, :update_personal_snippet, @snippet)
|
||||
%li
|
||||
= link_to edit_snippet_path(@snippet) do
|
||||
Edit
|
||||
- if can?(current_user, :admin_personal_snippet, @snippet)
|
||||
%li
|
||||
= link_to snippet_path(@snippet), method: :delete, data: { confirm: "Are you sure?" }, title: 'Delete Snippet' do
|
||||
Delete
|
||||
- if can?(current_user, :update_personal_snippet, @snippet)
|
||||
%li
|
||||
= link_to edit_snippet_path(@snippet) do
|
||||
Edit
|
||||
|
|
|
@ -1,13 +1,12 @@
|
|||
- page_title @snippet.title, "Snippets"
|
||||
|
||||
.snippet-holder
|
||||
= render 'shared/snippets/header'
|
||||
= render 'shared/snippets/header'
|
||||
|
||||
%article.file-holder.file-holder-no-border.snippet-file-content
|
||||
.file-title.file-title-clear
|
||||
%article.file-holder.snippet-file-content
|
||||
.file-title
|
||||
= blob_icon 0, @snippet.file_name
|
||||
= @snippet.file_name
|
||||
.file-actions.hidden-xs
|
||||
.file-actions
|
||||
= clipboard_button(clipboard_target: ".blob-content[data-blob-id='#{@snippet.id}']")
|
||||
= link_to 'Raw', raw_snippet_path(@snippet), class: "btn btn-sm", target: "_blank"
|
||||
= render 'shared/snippets/blob'
|
||||
|
|
|
@ -144,7 +144,7 @@ describe 'Issues', feature: true do
|
|||
visit namespace_project_issues_path(project.namespace, project, assignee_id: @user.id)
|
||||
|
||||
expect(page).to have_content 'foobar'
|
||||
expect(page.all('.issue-no-comments').first.text).to eq "0"
|
||||
expect(page.all('.no-comments').first.text).to eq "0"
|
||||
end
|
||||
end
|
||||
|
||||
|
|
|
@ -19,7 +19,10 @@ describe 'Snippets tab on a user profile', feature: true, js: true do
|
|||
end
|
||||
|
||||
context 'clicking on the link to the second page' do
|
||||
before { click_link('2') }
|
||||
before do
|
||||
click_link('2')
|
||||
wait_for_ajax
|
||||
end
|
||||
|
||||
it 'shows the remaining snippets' do
|
||||
expect(page.all('.snippets-list-holder .snippet-row').count).to eq(5)
|
||||
|
|
Loading…
Reference in a new issue