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
0409352d
Commit
0409352d
authored
Sep 09, 2020
by
Evan Read
Committed by
Vitaly Slobodin
Sep 09, 2020
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Migrate remove description history button to new button
Also fix ESLint warning
parent
8bda24d2
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
29 additions
and
19 deletions
+29
-19
app/assets/javascripts/vue_shared/components/notes/system_note.vue
...s/javascripts/vue_shared/components/notes/system_note.vue
+22
-17
changelogs/unreleased/eread-migrate-remove-desc-history-button.yml
...s/unreleased/eread-migrate-remove-desc-history-button.yml
+5
-0
ee/spec/frontend/vue_shared/components/notes/system_note_spec.js
.../frontend/vue_shared/components/notes/system_note_spec.js
+2
-2
No files found.
app/assets/javascripts/vue_shared/components/notes/system_note.vue
View file @
0409352d
<
script
>
/* eslint-disable vue/no-v-html */
/**
* Common component to render a system note, icon and user information.
*
...
...
@@ -20,10 +19,11 @@
import
$
from
'
jquery
'
;
import
{
mapGetters
,
mapActions
,
mapState
}
from
'
vuex
'
;
import
{
Gl
Deprecated
Button
,
GlButton
,
GlDeprecatedSkeletonLoading
as
GlSkeletonLoading
,
GlTooltipDirective
,
GlIcon
,
GlSafeHtmlDirective
as
SafeHtml
,
}
from
'
@gitlab/ui
'
;
import
descriptionVersionHistoryMixin
from
'
ee_else_ce/notes/mixins/description_version_history
'
;
import
noteHeader
from
'
~/notes/components/note_header.vue
'
;
...
...
@@ -40,11 +40,12 @@ export default {
GlIcon
,
noteHeader
,
TimelineEntryItem
,
Gl
Deprecated
Button
,
GlButton
,
GlSkeletonLoading
,
},
directives
:
{
GlTooltip
:
GlTooltipDirective
,
SafeHtml
,
},
mixins
:
[
descriptionVersionHistoryMixin
,
glFeatureFlagsMixin
()],
props
:
{
...
...
@@ -105,25 +106,28 @@ export default {
:class=
"
{ target: isTargetNote, 'pr-0': shouldShowDescriptionVersion }"
class="note system-note note-wrapper"
>
<div
class=
"timeline-icon"
v-html=
"iconHtml
"
></div>
<div
v-safe-html=
"iconHtml"
class=
"timeline-icon
"
></div>
<div
class=
"timeline-content"
>
<div
class=
"note-header"
>
<note-header
:author=
"note.author"
:created-at=
"note.created_at"
:note-id=
"note.id"
>
<span
v-html=
"actionTextHtml"
></span>
<span
v-
safe-
html=
"actionTextHtml"
></span>
<template
v-if=
"canSeeDescriptionVersion"
slot=
"extra-controls"
>
·
<button
type=
"button"
class=
"btn-blank btn-link"
@
click=
"toggleDescriptionVersion"
>
{{
__
(
'
Compare with previous version
'
)
}}
<gl-icon
:name=
"descriptionVersionToggleIcon"
:size=
"12"
class=
"append-left-5"
/>
</button>
<gl-button
variant=
"link"
:icon=
"descriptionVersionToggleIcon"
data-testid=
"compare-btn"
@
click=
"toggleDescriptionVersion"
>
{{
__
(
'
Compare with previous version
'
)
}}
</gl-button
>
</
template
>
</note-header>
</div>
<div
class=
"note-body"
>
<div
v-safe-html=
"note.note_html"
:class=
"{ 'system-note-commit-list': hasMoreCommits, 'hide-shade': expanded }"
class=
"note-text md"
v-html=
"note.note_html"
></div>
<div
v-if=
"hasMoreCommits"
class=
"flex-list"
>
<div
class=
"system-note-commit-list-toggler flex-row"
@
click=
"expanded = !expanded"
>
...
...
@@ -135,17 +139,18 @@ export default {
<pre
v-if=
"isLoadingDescriptionVersion"
class=
"loading-state"
>
<gl-skeleton-loading
/>
</pre>
<pre
v-else
class=
"wrapper mt-2"
v-html=
"descriptionVersion
"
></pre>
<gl-
deprecated-
button
<pre
v-else
v-safe-html=
"descriptionVersion"
class=
"wrapper mt-2
"
></pre>
<gl-button
v-if=
"displayDeleteButton"
ref=
"deleteDescriptionVersionButton"
v-gl-tooltip
:title=
"__('Remove description history')"
class=
"btn-transparent delete-description-history"
variant=
"default"
category=
"tertiary"
icon=
"remove"
class=
"delete-description-history"
data-testid=
"delete-description-version-button"
@
click=
"deleteDescriptionVersion"
>
<gl-icon
name=
"remove"
/>
</gl-deprecated-button>
/>
</div>
</div>
</div>
...
...
changelogs/unreleased/eread-migrate-remove-desc-history-button.yml
0 → 100644
View file @
0409352d
---
title
:
Migrate remove description history button to new button
merge_request
:
40806
author
:
type
:
other
ee/spec/frontend/vue_shared/components/notes/system_note_spec.js
View file @
0409352d
...
...
@@ -20,12 +20,12 @@ describe('system note component', () => {
mock
.
onDelete
(
'
/path/to/diff/1
'
).
replyOnce
(
statusCode
);
}
const
findBlankBtn
=
()
=>
wrapper
.
find
(
'
.note-headline-light .btn-blank
'
);
const
findBlankBtn
=
()
=>
wrapper
.
find
(
'
[data-testid="compare-btn"]
'
);
const
findDescriptionVersion
=
()
=>
wrapper
.
find
(
'
.description-version
'
);
const
findDeleteDescriptionVersionButton
=
()
=>
wrapper
.
find
(
{
ref
:
'
deleteDescriptionVersionButton
'
}
);
wrapper
.
find
(
'
[data-testid="delete-description-version-button"]
'
);
beforeEach
(()
=>
{
props
=
{
...
...
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