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
0
Merge Requests
0
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
Boxiang Sun
gitlab-ce
Commits
5e3fa025
Commit
5e3fa025
authored
Apr 05, 2017
by
Luke "Jared" Bennett
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Added resolvable discussion frontend
parent
2b92f910
Changes
7
Hide whitespace changes
Inline
Side-by-side
Showing
7 changed files
with
200 additions
and
5 deletions
+200
-5
app/assets/javascripts/comment_type_toggle.js
app/assets/javascripts/comment_type_toggle.js
+32
-0
app/assets/javascripts/gl_form.js
app/assets/javascripts/gl_form.js
+16
-0
app/assets/javascripts/notes.js
app/assets/javascripts/notes.js
+1
-1
app/assets/stylesheets/pages/note_form.scss
app/assets/stylesheets/pages/note_form.scss
+55
-0
app/views/projects/notes/_form.html.haml
app/views/projects/notes/_form.html.haml
+17
-4
app/views/shared/_comment_type_toggle.html.haml
app/views/shared/_comment_type_toggle.html.haml
+0
-0
spec/javascripts/comment_type_toggle_spec.js
spec/javascripts/comment_type_toggle_spec.js
+79
-0
No files found.
app/assets/javascripts/comment_type_toggle.js
0 → 100644
View file @
5e3fa025
import
DropLab
from
'
@gitlab-org/droplab
'
;
import
InputSetter
from
'
@gitlab-org/droplab/dist/plugins/InputSetter
'
;
class
CommentTypeToggle
{
constructor
(
trigger
,
list
,
input
,
button
,
secondaryButton
)
{
this
.
trigger
=
trigger
;
this
.
list
=
list
;
this
.
input
=
input
;
this
.
button
=
button
;
this
.
secondaryButton
=
secondaryButton
;
}
initDroplab
()
{
this
.
droplab
=
new
DropLab
();
this
.
droplab
.
init
(
this
.
trigger
,
this
.
list
,
[
InputSetter
],
{
InputSetter
:
[{
input
:
this
.
input
,
valueAttribute
:
'
data-value
'
,
},
{
input
:
this
.
button
,
valueAttribute
:
'
data-button-text
'
,
},
{
input
:
this
.
secondaryButton
,
valueAttribute
:
'
data-secondary-button-text
'
,
}],
});
}
}
export
default
CommentTypeToggle
;
app/assets/javascripts/gl_form.js
View file @
5e3fa025
...
...
@@ -3,6 +3,8 @@
/* global DropzoneInput */
/* global autosize */
import
CommentTypeToggle
from
'
./comment_type_toggle
'
;
window
.
gl
=
window
.
gl
||
{};
function
GLForm
(
form
)
{
...
...
@@ -41,6 +43,20 @@ GLForm.prototype.setupForm = function() {
this
.
form
.
find
(
'
.js-note-discard
'
).
hide
();
this
.
form
.
show
();
if
(
this
.
isAutosizeable
)
this
.
setupAutosize
();
this
.
initCommentTypeToggle
();
};
GLForm
.
prototype
.
initCommentTypeToggle
=
function
()
{
this
.
commentTypeToggle
=
new
CommentTypeToggle
(
this
.
form
[
0
].
querySelector
(
'
.js-comment-type-dropdown .dropdown-toggle
'
),
this
.
form
[
0
].
querySelector
(
'
.js-comment-type-dropdown .dropdown-menu
'
),
document
.
getElementById
(
'
note_type
'
),
this
.
form
[
0
].
querySelector
(
'
.js-comment-type-dropdown .js-comment-submit-button
'
),
document
.
querySelector
(
'
.js-note-target-close
'
),
);
this
.
commentTypeToggle
.
initDroplab
();
};
GLForm
.
prototype
.
setupAutosize
=
function
()
{
...
...
app/assets/javascripts/notes.js
View file @
5e3fa025
...
...
@@ -452,7 +452,7 @@ require('./task_list');
form
.
addClass
(
"
js-main-target-form
"
);
form
.
find
(
"
#note_line_code
"
).
remove
();
form
.
find
(
"
#note_position
"
).
remove
();
form
.
find
(
"
#note_type
"
).
remove
(
);
form
.
find
(
"
#note_type
"
).
val
(
''
);
form
.
find
(
"
#in_reply_to_discussion_id
"
).
remove
();
form
.
find
(
'
.js-comment-resolve-button
'
).
closest
(
'
comment-and-resolve-btn
'
).
remove
();
return
this
.
parentTimeline
=
form
.
parents
(
'
.timeline
'
);
...
...
app/assets/stylesheets/pages/note_form.scss
View file @
5e3fa025
...
...
@@ -310,3 +310,58 @@
margin-bottom
:
10px
;
}
}
.comment-type-dropdown
{
.dropdown-toggle
.fa
{
color
:
$white-light
;
padding-right
:
2px
;
margin-top
:
2px
;
pointer-events
:
none
;
}
.dropdown-menu
{
top
:
initial
;
bottom
:
40px
;
width
:
297px
;
}
.description
{
display
:
inline-block
;
white-space
:
normal
;
margin-left
:
8px
;
padding-right
:
33px
;
}
li
{
white-space
:
nowrap
;
border-radius
:
0
;
cursor
:
pointer
;
padding-top
:
6px
;
&
:hover
,
&
:focus
{
background-color
:
$dropdown-hover-color
;
color
:
$white-light
;
}
&
.droplab-item-selected
i
{
visibility
:
visible
;
}
i
{
visibility
:
hidden
;
}
}
i
{
display
:
inline-block
;
vertical-align
:
top
;
padding-top
:
2px
;
}
.divider
{
margin
:
0
8px
;
padding
:
0
;
border-top
:
$gray-darkest
;
}
}
app/views/projects/notes/_form.html.haml
View file @
5e3fa025
...
...
@@ -28,10 +28,23 @@
.error-alert
.note-form-actions.clearfix
=
f
.
submit
'Comment'
,
class:
"btn btn-nr btn-create append-right-10 comment-btn js-comment-button"
-
if
@note
.
can_be_discussion_note?
=
submit_tag
'Start discussion'
,
name:
'new_discussion'
,
class:
"btn btn-nr append-right-10 btn-inverted js-note-new-discussion"
.btn-group.append-right-10.comment-type-dropdown.js-comment-type-dropdown
=
f
.
submit
'Comment'
,
class:
"btn btn-nr btn-create comment-btn js-comment-button js-comment-submit-button"
-
if
@note
.
can_be_discussion_note?
=
button_tag
type:
'button'
,
class:
'btn btn-nr dropdown-toggle comment-btn js-comment-button js-note-new-discussion'
,
data:
{
'dropdown-trigger'
=>
'#resolvable-comment-menu'
}
do
=
icon
(
'caret-down'
)
%ul
#resolvable-comment-menu
.dropdown-menu
{
data:
{
dropdown:
true
}
}
%li
#comment
{
data:
{
value:
''
,
'button-text'
=>
'Comment'
,
'secondary-button-text'
=>
'Comment & close merge request'
},
class:
'droplab-item-selected'
}
=
icon
(
'check'
)
.description
%strong
Comment
%p
Add a general comment to this merge request.
%li
.divider
%li
#discussion
{
data:
{
value:
'DiscussionNote'
,
'button-text'
=>
'Start discussion'
,
'secondary-button-text'
=>
'Start discussion & close merge request'
}
}
=
icon
(
'check'
)
.description
%strong
Start discussion
%p
Discuss a specific suggestion or question that needs to be resolved.
=
yield
(
:note_actions
)
...
...
app/views/shared/_comment_type_toggle.html.haml
0 → 100644
View file @
5e3fa025
spec/javascripts/comment_type_toggle_spec.js
0 → 100644
View file @
5e3fa025
import
CommentTypeToggle
from
'
~/comment_type_toggle
'
;
import
DropLab
from
'
@gitlab-org/droplab
'
;
import
InputSetter
from
'
@gitlab-org/droplab/dist/plugins/InputSetter
'
;
describe
(
'
CommentTypeToggle
'
,
function
()
{
describe
(
'
class constructor
'
,
function
()
{
beforeEach
(
function
()
{
this
.
trigger
=
{};
this
.
list
=
{};
this
.
input
=
{};
this
.
button
=
{};
this
.
commentTypeToggle
=
new
CommentTypeToggle
(
this
.
trigger
,
this
.
list
,
this
.
input
,
this
.
button
,
);
});
it
(
'
should set .trigger
'
,
function
()
{
expect
(
this
.
commentTypeToggle
.
trigger
).
toBe
(
this
.
trigger
);
});
it
(
'
should set .list
'
,
function
()
{
expect
(
this
.
commentTypeToggle
.
list
).
toBe
(
this
.
list
);
});
it
(
'
should set .input
'
,
function
()
{
expect
(
this
.
commentTypeToggle
.
input
).
toBe
(
this
.
input
);
});
it
(
'
should set .button
'
,
function
()
{
expect
(
this
.
commentTypeToggle
.
button
).
toBe
(
this
.
button
);
});
});
describe
(
'
initDroplab
'
,
function
()
{
beforeEach
(
function
()
{
this
.
commentTypeToggle
=
{
trigger
:
{},
list
:
{},
input
:
{},
button
:
{},
};
this
.
droplab
=
jasmine
.
createSpyObj
(
'
droplab
'
,
[
'
addHook
'
]);
spyOn
(
window
,
'
DropLab
'
).
and
.
returnValue
(
this
.
droplab
);
this
.
initDroplab
=
CommentTypeToggle
.
prototype
.
initDroplab
.
call
(
this
.
commentTypeToggle
);
});
it
(
'
should instantiate a DropLab instance
'
,
function
()
{
expect
(
window
.
DropLab
).
toHaveBeenCalled
();
});
it
(
'
should set .droplab
'
,
function
()
{
expect
(
this
.
commentTypeToggle
.
droplab
).
toBe
(
this
.
droplab
);
});
it
(
'
should call DropLab.prototype.addHook
'
,
function
()
{
expect
(
this
.
droplab
.
addHook
).
toHaveBeenCalledWith
(
this
.
commentTypeToggle
.
trigger
,
this
.
commentTypeToggle
.
list
,
[
InputSetter
],
{
InputSetter
:
[{
input
:
this
.
commentTypeToggle
.
input
,
valueAttribute
:
'
data-value
'
,
},
{
input
:
this
.
commentTypeToggle
.
button
,
valueAttribute
:
'
data-button-text
'
,
}],
},
);
});
});
});
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