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
deed4725
Commit
deed4725
authored
Jul 07, 2017
by
Fatih Acet
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
IssueNotesRefactor: Add needed js- class for the notes current user authored.
parent
a2cba2b1
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
15 additions
and
1 deletion
+15
-1
app/assets/javascripts/notes/components/issue_note.vue
app/assets/javascripts/notes/components/issue_note.vue
+1
-0
app/assets/javascripts/notes/components/issue_note_actions.vue
...ssets/javascripts/notes/components/issue_note_actions.vue
+14
-1
No files found.
app/assets/javascripts/notes/components/issue_note.vue
View file @
deed4725
...
@@ -125,6 +125,7 @@ export default {
...
@@ -125,6 +125,7 @@ export default {
actionText=
"commented"
/>
actionText=
"commented"
/>
<issue-note-actions
<issue-note-actions
:authorId=
"author.id"
:authorId=
"author.id"
:noteId=
"note.id"
:accessLevel=
"note.human_access"
:accessLevel=
"note.human_access"
:canAward=
"note.emoji_awardable"
:canAward=
"note.emoji_awardable"
:canEdit=
"note.current_user.can_edit"
:canEdit=
"note.current_user.can_edit"
...
...
app/assets/javascripts/notes/components/issue_note_actions.vue
View file @
deed4725
<
script
>
<
script
>
import
Vue
from
'
vue
'
;
import
emojiSmiling
from
'
icons/_emoji_slightly_smiling_face.svg
'
;
import
emojiSmiling
from
'
icons/_emoji_slightly_smiling_face.svg
'
;
import
emojiSmile
from
'
icons/_emoji_smile.svg
'
;
import
emojiSmile
from
'
icons/_emoji_smile.svg
'
;
import
emojiSmiley
from
'
icons/_emoji_smiley.svg
'
;
import
emojiSmiley
from
'
icons/_emoji_smiley.svg
'
;
export
default
{
export
default
{
props
:
{
props
:
{
authorId
:
{
type
:
Number
,
required
:
true
,
},
noteId
:
{
type
:
Number
,
required
:
true
,
},
accessLevel
:
{
accessLevel
:
{
type
:
String
,
type
:
String
,
required
:
false
,
required
:
false
,
...
@@ -49,6 +58,9 @@ export default {
...
@@ -49,6 +58,9 @@ export default {
canAddAwardEmoji
()
{
canAddAwardEmoji
()
{
return
window
.
gon
.
current_user_id
;
return
window
.
gon
.
current_user_id
;
},
},
isAuthoredByMe
()
{
return
this
.
authorId
===
window
.
gon
.
current_user_id
;
},
},
},
};
};
</
script
>
</
script
>
...
@@ -62,7 +74,8 @@ export default {
...
@@ -62,7 +74,8 @@ export default {
</span>
</span>
<a
<a
v-if=
"canAddAwardEmoji"
v-if=
"canAddAwardEmoji"
class=
"note-action-button note-emoji-button js-add-award js-note-emoji js-user-authored has-tooltip"
:class=
"
{ 'js-user-authored': isAuthoredByMe }"
class="note-action-button note-emoji-button js-add-award js-note-emoji has-tooltip"
data-position="right"
data-position="right"
href="#"
href="#"
title="Add reaction">
title="Add reaction">
...
...
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