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
4e81ad2a
Commit
4e81ad2a
authored
Jul 26, 2017
by
Filipa Lacerda
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
[ci skip] Add constants
parent
cf5cc6a9
Changes
4
Show whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
150 additions
and
134 deletions
+150
-134
app/assets/javascripts/notes/components/issue_comment_form.vue
...ssets/javascripts/notes/components/issue_comment_form.vue
+136
-130
app/assets/javascripts/notes/constants.js
app/assets/javascripts/notes/constants.js
+8
-0
app/assets/javascripts/notes/stores/actions.js
app/assets/javascripts/notes/stores/actions.js
+3
-2
app/assets/javascripts/notes/stores/mutations.js
app/assets/javascripts/notes/stores/mutations.js
+3
-2
No files found.
app/assets/javascripts/notes/components/issue_comment_form.vue
View file @
4e81ad2a
<
script
>
/* global Flash */
import
userAvatarLink
from
'
../../vue_shared/components/user_avatar/user_avatar_link.vue
'
;
import
markdownField
from
'
../../vue_shared/components/markdown/field.vue
'
;
import
issueNoteSignedOutWidget
from
'
./issue_note_signed_out_widget.vue
'
;
import
eventHub
from
'
../event_hub
'
;
import
userAvatarLink
from
'
../../vue_shared/components/user_avatar/user_avatar_link.vue
'
;
import
markdownField
from
'
../../vue_shared/components/markdown/field.vue
'
;
import
issueNoteSignedOutWidget
from
'
./issue_note_signed_out_widget.vue
'
;
import
eventHub
from
'
../event_hub
'
;
import
*
as
constants
from
'
../constants
'
;
export
default
{
export
default
{
data
()
{
const
{
create_note_path
,
state
}
=
window
.
gl
.
issueData
;
const
{
currentUserData
}
=
window
.
gl
;
...
...
@@ -15,7 +16,7 @@ export default {
note
:
''
,
markdownDocsUrl
:
''
,
markdownPreviewUrl
:
gl
.
issueData
.
preview_note_path
,
noteType
:
'
comment
'
,
noteType
:
constants
.
COMMENT
,
issueState
:
state
,
endpoint
:
create_note_path
,
author
:
currentUserData
,
...
...
@@ -31,16 +32,16 @@ export default {
return
window
.
gon
.
current_user_id
;
},
commentButtonTitle
()
{
return
this
.
noteType
===
'
comment
'
?
'
Comment
'
:
'
Start discussion
'
;
return
this
.
noteType
===
constants
.
COMMENT
?
'
Comment
'
:
'
Start discussion
'
;
},
isIssueOpen
()
{
return
this
.
issueState
===
'
opened
'
||
this
.
issueState
===
'
reopened
'
;
return
this
.
issueState
===
constants
.
OPENED
||
this
.
issueState
===
constants
.
REOPENED
;
},
issueActionButtonTitle
()
{
if
(
this
.
note
.
length
)
{
const
actionText
=
this
.
isIssueOpen
?
'
close
'
:
'
reopen
'
;
return
this
.
noteType
===
'
comment
'
?
`Comment &
${
actionText
}
issue`
:
`Start discussion &
${
actionText
}
issue`
;
return
this
.
noteType
===
constants
.
COMMENT
?
`Comment &
${
actionText
}
issue`
:
`Start discussion &
${
actionText
}
issue`
;
}
return
this
.
isIssueOpen
?
'
Close issue
'
:
'
Reopen issue
'
;
...
...
@@ -74,8 +75,8 @@ export default {
},
};
if
(
this
.
noteType
===
'
discussion
'
)
{
noteData
.
data
.
note
.
type
=
'
DiscussionNote
'
;
if
(
this
.
noteType
===
constants
.
DISCUSSION
)
{
noteData
.
data
.
note
.
type
=
constants
.
DISCUSSION_NOTE
;
}
this
.
$store
.
dispatch
(
'
saveNote
'
,
noteData
)
...
...
@@ -97,11 +98,11 @@ export default {
if
(
withIssueAction
)
{
if
(
this
.
isIssueOpen
)
{
gl
.
issueData
.
state
=
'
closed
'
;
this
.
issueState
=
'
closed
'
;
gl
.
issueData
.
state
=
constants
.
CLOSED
;
this
.
issueState
=
constants
.
CLOSED
;
}
else
{
gl
.
issueData
.
state
=
'
reopened
'
;
this
.
issueState
=
'
reopened
'
;
gl
.
issueData
.
state
=
constants
.
REOPENED
;
this
.
issueState
=
constants
.
REOPENED
;
}
this
.
isIssueOpen
=
!
this
.
isIssueOpen
;
...
...
@@ -146,10 +147,14 @@ export default {
this
.
markdownDocsUrl
=
issueData
.
markdownDocs
;
eventHub
.
$on
(
'
issueStateChanged
'
,
(
isClosed
)
=>
{
this
.
issueState
=
isClosed
?
'
closed
'
:
'
reopened
'
;
this
.
issueState
=
isClosed
?
constants
.
CLOSED
:
constants
.
REOPENED
;
});
},
};
destroyed
()
{
eventHub
.
$off
(
'
issueStateChanged
'
);
}
};
</
script
>
<
template
>
...
...
@@ -167,7 +172,8 @@ export default {
:link-href=
"author.path"
:img-src=
"author.avatar_url"
:img-alt=
"author.name"
:img-size=
"40"
/>
:img-size=
"40"
/>
</div>
<div
class=
"js-main-target-form timeline-content timeline-content-form common-note-form"
>
<markdown-field
...
...
app/assets/javascripts/notes/constants.js
0 → 100644
View file @
4e81ad2a
export
const
DISCUSSION_NOTE
=
'
DiscussionNote
'
;
export
const
DISCUSSION
=
'
discussion
'
;
export
const
NOTE
=
'
note
'
;
export
const
SYSTEM_NOTE
=
'
systemNote
'
;
export
const
COMMENT
=
'
comment
'
;
export
const
OPENED
=
'
opened
'
;
export
const
REOPENED
=
'
reopened
'
;
export
const
CLOSED
=
'
closed
'
;
\ No newline at end of file
app/assets/javascripts/notes/stores/actions.js
View file @
4e81ad2a
/* global Flash */
import
*
as
types
from
'
./mutation_types
'
;
import
*
as
utils
from
'
./issue_notes_utils
'
;
import
*
as
utils
from
'
./utils
'
;
import
*
as
constants
from
'
../constants
'
;
import
service
from
'
../services/issue_notes_service
'
;
import
loadAwardsHandler
from
'
../../awards_handler
'
;
import
sidebarTimeTrackingEventHub
from
'
../../sidebar/event_hub
'
;
...
...
@@ -147,7 +148,7 @@ export const poll = ({ commit, state, getters }) => {
res
.
notes
.
forEach
((
note
)
=>
{
if
(
notesById
[
note
.
id
])
{
commit
(
types
.
UPDATE_NOTE
,
note
);
}
else
if
(
note
.
type
===
'
DiscussionNote
'
)
{
}
else
if
(
note
.
type
===
constants
.
DISCUSSION_NOTE
)
{
const
discussion
=
utils
.
findNoteObjectById
(
state
.
notes
,
note
.
discussion_id
);
if
(
discussion
)
{
...
...
app/assets/javascripts/notes/stores/mutations.js
View file @
4e81ad2a
import
*
as
utils
from
'
./utils
'
;
import
*
as
types
from
'
./mutation_types
'
;
import
*
as
constants
from
'
../constants
'
;
export
default
{
[
types
.
ADD_NEW_NOTE
](
state
,
note
)
{
...
...
@@ -7,7 +8,7 @@ export default {
const
noteData
=
{
expanded
:
true
,
id
:
discussion_id
,
individual_note
:
!
(
type
===
'
DiscussionNote
'
),
individual_note
:
!
(
type
===
constants
.
DISCUSSION_NOTE
),
notes
:
[
note
],
reply_id
:
discussion_id
,
};
...
...
@@ -78,7 +79,7 @@ export default {
notesArr
.
push
({
individual_note
:
true
,
isPlaceholderNote
:
true
,
placeholderType
:
data
.
isSystemNote
?
'
systemNote
'
:
'
note
'
,
placeholderType
:
data
.
isSystemNote
?
constants
.
SYSTEM_NOTE
:
constants
.
NOTE
,
notes
:
[
{
body
:
data
.
noteBody
,
...
...
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