Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
G
gitlab-ce
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
1
Merge Requests
1
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
nexedi
gitlab-ce
Commits
490d117a
Commit
490d117a
authored
Oct 16, 2017
by
Filipa Lacerda
Committed by
Phil Hughes
Oct 16, 2017
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Remove banner from pipelines page
parent
d5bfb931
Changes
10
Hide whitespace changes
Inline
Side-by-side
Showing
10 changed files
with
58 additions
and
31 deletions
+58
-31
app/assets/javascripts/dispatcher.js
app/assets/javascripts/dispatcher.js
+4
-8
app/assets/stylesheets/framework.scss
app/assets/stylesheets/framework.scss
+1
-0
app/assets/stylesheets/framework/banner.scss
app/assets/stylesheets/framework/banner.scss
+25
-0
app/views/projects/empty.html.haml
app/views/projects/empty.html.haml
+7
-2
app/views/projects/merge_requests/index.html.haml
app/views/projects/merge_requests/index.html.haml
+0
-2
app/views/projects/pipelines/index.html.haml
app/views/projects/pipelines/index.html.haml
+0
-2
app/views/projects/tree/show.html.haml
app/views/projects/tree/show.html.haml
+0
-2
app/views/shared/_auto_devops_callout.html.haml
app/views/shared/_auto_devops_callout.html.haml
+15
-14
app/views/shared/icons/_icon_autodevops.svg
app/views/shared/icons/_icon_autodevops.svg
+1
-1
changelogs/unreleased/fl-autodevops-fix.yml
changelogs/unreleased/fl-autodevops-fix.yml
+5
-0
No files found.
app/assets/javascripts/dispatcher.js
View file @
490d117a
...
...
@@ -168,9 +168,6 @@ import memberExpirationDate from './member_expiration_date';
const
filteredSearchManager
=
new
gl
.
FilteredSearchManager
(
page
===
'
projects:issues:index
'
?
'
issues
'
:
'
merge_requests
'
);
filteredSearchManager
.
setup
();
}
if
(
page
===
'
projects:merge_requests:index
'
)
{
new
UserCallout
({
setCalloutPerProject
:
true
});
}
const
pagePrefix
=
page
===
'
projects:merge_requests:index
'
?
'
merge_request_
'
:
'
issue_
'
;
IssuableIndex
.
init
(
pagePrefix
);
...
...
@@ -352,7 +349,10 @@ import memberExpirationDate from './member_expiration_date';
case
'
projects:show
'
:
shortcut_handler
=
new
ShortcutsNavigation
();
new
NotificationsForm
();
new
UserCallout
({
setCalloutPerProject
:
true
});
new
UserCallout
({
setCalloutPerProject
:
true
,
className
:
'
js-autodevops-banner
'
,
});
if
(
$
(
'
#tree-slider
'
).
length
)
new
TreeView
();
if
(
$
(
'
.blob-viewer
'
).
length
)
new
BlobViewer
();
...
...
@@ -372,9 +372,6 @@ import memberExpirationDate from './member_expiration_date';
case
'
projects:pipelines:new
'
:
new
NewBranchForm
(
$
(
'
.js-new-pipeline-form
'
));
break
;
case
'
projects:pipelines:index
'
:
new
UserCallout
({
setCalloutPerProject
:
true
});
break
;
case
'
projects:pipelines:builds
'
:
case
'
projects:pipelines:failures
'
:
case
'
projects:pipelines:show
'
:
...
...
@@ -432,7 +429,6 @@ import memberExpirationDate from './member_expiration_date';
new
TreeView
();
new
BlobViewer
();
new
NewCommitForm
(
$
(
'
.js-create-dir-form
'
));
new
UserCallout
({
setCalloutPerProject
:
true
});
$
(
'
#tree-slider
'
).
waitForImages
(
function
()
{
ajaxGet
(
document
.
querySelector
(
'
.js-tree-content
'
).
dataset
.
logsPath
);
});
...
...
app/assets/stylesheets/framework.scss
View file @
490d117a
...
...
@@ -7,6 +7,7 @@
@import
"framework/animations"
;
@import
"framework/avatar"
;
@import
"framework/asciidoctor"
;
@import
"framework/banner"
;
@import
"framework/blocks"
;
@import
"framework/buttons"
;
@import
"framework/badges"
;
...
...
app/assets/stylesheets/framework/banner.scss
0 → 100644
View file @
490d117a
.banner-callout
{
display
:
flex
;
position
:
relative
;
flex-wrap
:
wrap
;
.banner-close
{
position
:
absolute
;
top
:
10px
;
right
:
10px
;
opacity
:
1
;
.dismiss-icon
{
color
:
$gl-text-color
;
font-size
:
$gl-font-size
;
}
}
.banner-graphic
{
margin
:
20px
auto
;
}
&
.banner-non-empty-state
{
border-bottom
:
1px
solid
$border-color
;
}
}
app/views/projects/empty.html.haml
View file @
490d117a
...
...
@@ -24,10 +24,15 @@
%p
You will need to be owner or have the master permission level for the initial push, as the master branch is automatically protected.
-
if
show_auto_devops_callout?
(
@project
)
%p
-
link
=
link_to
(
s_
(
'AutoDevOps|Auto DevOps (Beta)'
),
project_settings_ci_cd_path
(
@project
,
anchor:
'js-general-pipeline-settings'
))
=
s_
(
'AutoDevOps|You can activate %{link_to_settings} for this project.'
).
html_safe
%
{
link_to_settings:
link
}
%p
=
s_
(
'AutoDevOps|It will automatically build, test, and deploy your application based on a predefined CI/CD configuration.'
)
-
if
can?
(
current_user
,
:push_code
,
@project
)
%div
{
class:
container_class
}
-
if
show_auto_devops_callout?
(
@project
)
=
render
'shared/auto_devops_callout'
.prepend-top-20
.empty_wrapper
%h3
.page-title-empty
...
...
app/views/projects/merge_requests/index.html.haml
View file @
490d117a
...
...
@@ -13,8 +13,6 @@
-
if
@project
.
merge_requests
.
exists?
%div
{
class:
container_class
}
-
if
show_auto_devops_callout?
(
@project
)
=
render
'shared/auto_devops_callout'
.top-area
=
render
'shared/issuable/nav'
,
type: :merge_requests
.nav-controls
...
...
app/views/projects/pipelines/index.html.haml
View file @
490d117a
...
...
@@ -2,8 +2,6 @@
-
page_title
"Pipelines"
%div
{
'class'
=>
container_class
}
-
if
show_auto_devops_callout?
(
@project
)
=
render
'shared/auto_devops_callout'
#pipelines-list-vue
{
data:
{
endpoint:
project_pipelines_path
(
@project
,
format: :json
),
"help-page-path"
=>
help_page_path
(
'ci/quick_start/README'
),
"help-auto-devops-path"
=>
help_page_path
(
'topics/autodevops/index.md'
),
...
...
app/views/projects/tree/show.html.haml
View file @
490d117a
...
...
@@ -12,7 +12,5 @@
=
webpack_bundle_tag
'repo'
%div
{
class:
[
container_class
,
(
"limit-container-width"
unless
fluid_layout
)]
}
-
if
show_auto_devops_callout?
(
@project
)
&&
!
show_new_repo?
=
render
'shared/auto_devops_callout'
=
render
'projects/last_push'
=
render
'projects/files'
,
commit:
@last_commit
,
project:
@project
,
ref:
@ref
,
content_url:
project_tree_path
(
@project
,
@id
)
app/views/shared/_auto_devops_callout.html.haml
View file @
490d117a
.user-callout
{
data:
{
uid:
'auto_devops_settings_dismissed'
,
project_path:
project_path
(
@project
)
}
}
.bordered-box.landing.content-block
%button
.btn.btn-default.close.js-close-callout
{
type:
'button'
,
'aria-label'
=>
'Dismiss Auto DevOps box'
}
=
icon
(
'times'
,
class:
'dismiss-icon'
,
'aria-hidden'
=>
'true'
)
.svg-container
=
custom_icon
(
'icon_autodevops'
)
.user-callout-copy
%h4
=
s_
(
'AutoDevOps|Auto DevOps (Beta)'
)
%p
=
s_
(
'AutoDevOps|Auto DevOps can be activated for this project. It will automatically build, test, and deploy your application based on a predefined CI/CD configuration.'
)
%p
-
link
=
link_to
(
s_
(
'AutoDevOps|Auto DevOps documentation'
),
help_page_path
(
'topics/autodevops/index.md'
),
target:
'_blank'
,
rel:
'noopener noreferrer'
)
=
s_
(
'AutoDevOps|Learn more in the %{link_to_documentation}'
).
html_safe
%
{
link_to_documentation:
link
}
.js-autodevops-banner.banner-callout.banner-non-empty-state.append-bottom-20
{
data:
{
uid:
'auto_devops_settings_dismissed'
,
project_path:
project_path
(
@project
)
}
}
.banner-graphic
=
custom_icon
(
'icon_autodevops'
)
=
link_to
s_
(
'AutoDevOps|Enable in settings'
),
project_settings_ci_cd_path
(
@project
,
anchor:
'js-general-pipeline-settings'
),
class:
'btn btn-primary js-close-callout'
.prepend-top-10.prepend-left-10.append-bottom-10
%h5
=
s_
(
'AutoDevOps|Auto DevOps (Beta)'
)
%p
=
s_
(
'AutoDevOps|It will automatically build, test, and deploy your application based on a predefined CI/CD configuration.'
)
%p
-
link
=
link_to
(
s_
(
'AutoDevOps|Auto DevOps documentation'
),
help_page_path
(
'topics/autodevops/index.md'
),
target:
'_blank'
,
rel:
'noopener noreferrer'
)
=
s_
(
'AutoDevOps|Learn more in the %{link_to_documentation}'
).
html_safe
%
{
link_to_documentation:
link
}
.prepend-top-10
=
link_to
s_
(
'AutoDevOps|Enable in settings'
),
project_settings_ci_cd_path
(
@project
,
anchor:
'js-general-pipeline-settings'
),
class:
'btn js-close-callout'
%button
.btn-transparent.banner-close.close.js-close-callout
{
type:
'button'
,
'aria-label'
=>
'Dismiss Auto DevOps box'
}
=
icon
(
'times'
,
class:
'dismiss-icon'
,
'aria-hidden'
=>
'true'
)
app/views/shared/icons/_icon_autodevops.svg
View file @
490d117a
<svg
xmlns=
"http://www.w3.org/2000/svg"
width=
"189"
height=
"1
79
"
viewBox=
"0 0 189 179"
>
<svg
xmlns=
"http://www.w3.org/2000/svg"
width=
"189"
height=
"1
10
"
viewBox=
"0 0 189 179"
>
<g
fill=
"none"
fill-rule=
"evenodd"
>
<path
fill=
"#FFFFFF"
fill-rule=
"nonzero"
d=
"M110.160166,47.6956996 L160.160166,47.6956996 C165.683013,47.6956996 170.160166,52.1728521 170.160166,57.6956996 L170.160166,117.6957 C170.160166,123.218547 165.683013,127.6957 160.160166,127.6957 L110.160166,127.6957 C104.637318,127.6957 100.160166,123.218547 100.160166,117.6957 L100.160166,57.6956996 C100.160166,52.1728521 104.637318,47.6956996 110.160166,47.6956996 Z"
transform=
"rotate(10 135.16 87.696)"
/>
<path
fill=
"#EEEEEE"
fill-rule=
"nonzero"
d=
"M110.160166,51.6956996 C106.846457,51.6956996 104.160166,54.3819911 104.160166,57.6956996 L104.160166,117.6957 C104.160166,121.009408 106.846457,123.6957 110.160166,123.6957 L160.160166,123.6957 C163.473874,123.6957 166.160166,121.009408 166.160166,117.6957 L166.160166,57.6956996 C166.160166,54.3819911 163.473874,51.6956996 160.160166,51.6956996 L110.160166,51.6956996 Z M110.160166,47.6956996 L160.160166,47.6956996 C165.683013,47.6956996 170.160166,52.1728521 170.160166,57.6956996 L170.160166,117.6957 C170.160166,123.218547 165.683013,127.6957 160.160166,127.6957 L110.160166,127.6957 C104.637318,127.6957 100.160166,123.218547 100.160166,117.6957 L100.160166,57.6956996 C100.160166,52.1728521 104.637318,47.6956996 110.160166,47.6956996 Z"
transform=
"rotate(10 135.16 87.696)"
/>
...
...
changelogs/unreleased/fl-autodevops-fix.yml
0 → 100644
View file @
490d117a
---
title
:
Improve autodevops banner UX and render it only in project page
merge_request
:
author
:
type
:
fixed
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment