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
Jérome Perrin
gitlab-ce
Commits
993438ad
Commit
993438ad
authored
Jun 05, 2018
by
Jose Ivan Vargas
Committed by
Phil Hughes
Jun 05, 2018
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Support smarter system notes
parent
228f52b8
Changes
7
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
7 changed files
with
759 additions
and
2 deletions
+759
-2
app/assets/javascripts/notes/constants.js
app/assets/javascripts/notes/constants.js
+1
-0
app/assets/javascripts/notes/stores/collapse_utils.js
app/assets/javascripts/notes/stores/collapse_utils.js
+108
-0
app/assets/javascripts/notes/stores/getters.js
app/assets/javascripts/notes/stores/getters.js
+3
-1
changelogs/unreleased/jivl-smarter-system-notes.yml
changelogs/unreleased/jivl-smarter-system-notes.yml
+5
-0
spec/javascripts/notes/mock_data.js
spec/javascripts/notes/mock_data.js
+578
-0
spec/javascripts/notes/stores/collapse_utils_spec.js
spec/javascripts/notes/stores/collapse_utils_spec.js
+46
-0
spec/javascripts/notes/stores/getters_spec.js
spec/javascripts/notes/stores/getters_spec.js
+18
-1
No files found.
app/assets/javascripts/notes/constants.js
View file @
993438ad
...
...
@@ -14,6 +14,7 @@ export const EPIC_NOTEABLE_TYPE = 'epic';
export
const
MERGE_REQUEST_NOTEABLE_TYPE
=
'
merge_request
'
;
export
const
UNRESOLVE_NOTE_METHOD_NAME
=
'
delete
'
;
export
const
RESOLVE_NOTE_METHOD_NAME
=
'
post
'
;
export
const
DESCRIPTION_TYPE
=
'
changed the description
'
;
export
const
NOTEABLE_TYPE_MAPPING
=
{
Issue
:
ISSUE_NOTEABLE_TYPE
,
...
...
app/assets/javascripts/notes/stores/collapse_utils.js
0 → 100644
View file @
993438ad
import
{
n__
,
s__
,
sprintf
}
from
'
~/locale
'
;
import
{
DESCRIPTION_TYPE
}
from
'
../constants
'
;
/**
* Changes the description from a note, returns 'changed the description n number of times'
*/
export
const
changeDescriptionNote
=
(
note
,
descriptionChangedTimes
,
timeDifferenceMinutes
)
=>
{
const
descriptionNote
=
Object
.
assign
({},
note
);
descriptionNote
.
note_html
=
sprintf
(
s__
(
`MergeRequest|
%{paragraphStart}changed the description %{descriptionChangedTimes} times %{timeDifferenceMinutes}%{paragraphEnd}`
),
{
paragraphStart
:
'
<p dir="auto">
'
,
paragraphEnd
:
'
</p>
'
,
descriptionChangedTimes
,
timeDifferenceMinutes
:
n__
(
'
within %d minute
'
,
'
within %d minutes
'
,
timeDifferenceMinutes
),
},
false
,
);
descriptionNote
.
times_updated
=
descriptionChangedTimes
;
return
descriptionNote
;
};
/**
* Checks the time difference between two notes from their 'created_at' dates
* returns an integer
*/
export
const
getTimeDifferenceMinutes
=
(
noteBeggining
,
noteEnd
)
=>
{
const
descriptionNoteBegin
=
new
Date
(
noteBeggining
.
created_at
);
const
descriptionNoteEnd
=
new
Date
(
noteEnd
.
created_at
);
const
timeDifferenceMinutes
=
(
descriptionNoteEnd
-
descriptionNoteBegin
)
/
1000
/
60
;
return
Math
.
ceil
(
timeDifferenceMinutes
);
};
/**
* Checks if a note is a system note and if the content is description
*
* @param {Object} note
* @returns {Boolean}
*/
export
const
isDescriptionSystemNote
=
note
=>
note
.
system
&&
note
.
note
===
DESCRIPTION_TYPE
;
/**
* Collapses the system notes of a description type, e.g. Changed the description, n minutes ago
* the notes will collapse as long as they happen no more than 10 minutes away from each away
* in between the notes can be anything, another type of system note
* (such as 'changed the weight') or a comment.
*
* @param {Array} notes
* @returns {Array}
*/
export
const
collapseSystemNotes
=
notes
=>
{
let
lastDescriptionSystemNote
=
null
;
let
lastDescriptionSystemNoteIndex
=
-
1
;
let
descriptionChangedTimes
=
1
;
return
notes
.
slice
(
0
).
reduce
((
acc
,
currentNote
)
=>
{
const
note
=
currentNote
.
notes
[
0
];
if
(
isDescriptionSystemNote
(
note
))
{
// is it the first one?
if
(
!
lastDescriptionSystemNote
)
{
lastDescriptionSystemNote
=
note
;
lastDescriptionSystemNoteIndex
=
acc
.
length
;
}
else
if
(
lastDescriptionSystemNote
)
{
const
timeDifferenceMinutes
=
getTimeDifferenceMinutes
(
lastDescriptionSystemNote
,
note
,
);
// are they less than 10 minutes appart?
if
(
timeDifferenceMinutes
>
10
)
{
// reset counter
descriptionChangedTimes
=
1
;
// update the previous system note
lastDescriptionSystemNote
=
note
;
lastDescriptionSystemNoteIndex
=
acc
.
length
;
}
else
{
// increase counter
descriptionChangedTimes
+=
1
;
// delete the previous one
acc
.
splice
(
lastDescriptionSystemNoteIndex
,
1
);
// replace the text of the current system note with the collapsed note.
currentNote
.
notes
.
splice
(
0
,
1
,
changeDescriptionNote
(
note
,
descriptionChangedTimes
,
timeDifferenceMinutes
),
);
// update the previous system note index
lastDescriptionSystemNoteIndex
=
acc
.
length
;
}
}
}
acc
.
push
(
currentNote
);
return
acc
;
},
[]);
};
// for babel-rewire
export
default
{};
app/assets/javascripts/notes/stores/getters.js
View file @
993438ad
import
_
from
'
underscore
'
;
import
{
collapseSystemNotes
}
from
'
./collapse_utils
'
;
export
const
notes
=
state
=>
collapseSystemNotes
(
state
.
notes
);
export
const
notes
=
state
=>
state
.
notes
;
export
const
targetNoteHash
=
state
=>
state
.
targetNoteHash
;
export
const
getNotesData
=
state
=>
state
.
notesData
;
...
...
changelogs/unreleased/jivl-smarter-system-notes.yml
0 → 100644
View file @
993438ad
---
title
:
Add support for smarter system notes
merge_request
:
17164
author
:
type
:
changed
spec/javascripts/notes/mock_data.js
View file @
993438ad
This diff is collapsed.
Click to expand it.
spec/javascripts/notes/stores/collapse_utils_spec.js
0 → 100644
View file @
993438ad
import
{
isDescriptionSystemNote
,
changeDescriptionNote
,
getTimeDifferenceMinutes
,
collapseSystemNotes
,
}
from
'
~/notes/stores/collapse_utils
'
;
import
{
notesWithDescriptionChanges
,
collapsedSystemNotes
,
}
from
'
../mock_data
'
;
describe
(
'
Collapse utils
'
,
()
=>
{
const
mockSystemNote
=
{
note
:
'
changed the description
'
,
note_html
:
'
<p dir="auto">changed the description</p>
'
,
system
:
true
,
created_at
:
'
2018-05-14T21:28:00.000Z
'
,
};
it
(
'
checks if a system note is of a description type
'
,
()
=>
{
expect
(
isDescriptionSystemNote
(
mockSystemNote
)).
toEqual
(
true
);
});
it
(
'
returns false when a system note is not a description type
'
,
()
=>
{
expect
(
isDescriptionSystemNote
(
Object
.
assign
({},
mockSystemNote
,
{
note
:
'
foo
'
}))).
toEqual
(
false
);
});
it
(
'
changes the description to contain the number of changed times
'
,
()
=>
{
const
changedNote
=
changeDescriptionNote
(
mockSystemNote
,
3
,
5
);
expect
(
changedNote
.
times_updated
).
toEqual
(
3
);
expect
(
changedNote
.
note_html
.
trim
()).
toContain
(
'
<p dir="auto">changed the description 3 times within 5 minutes </p>
'
);
});
it
(
'
gets the time difference between two notes
'
,
()
=>
{
const
anotherSystemNote
=
{
created_at
:
'
2018-05-14T21:33:00.000Z
'
,
};
expect
(
getTimeDifferenceMinutes
(
mockSystemNote
,
anotherSystemNote
)).
toEqual
(
5
);
});
it
(
'
collapses all description system notes made within 10 minutes or less from each other
'
,
()
=>
{
expect
(
collapseSystemNotes
(
notesWithDescriptionChanges
)).
toEqual
(
collapsedSystemNotes
);
});
});
spec/javascripts/notes/stores/getters_spec.js
View file @
993438ad
import
*
as
getters
from
'
~/notes/stores/getters
'
;
import
{
notesDataMock
,
userDataMock
,
noteableDataMock
,
individualNote
}
from
'
../mock_data
'
;
import
{
notesDataMock
,
userDataMock
,
noteableDataMock
,
individualNote
,
collapseNotesMock
}
from
'
../mock_data
'
;
describe
(
'
Getters Notes Store
'
,
()
=>
{
let
state
;
beforeEach
(()
=>
{
state
=
{
notes
:
[
individualNote
],
...
...
@@ -20,6 +21,22 @@ describe('Getters Notes Store', () => {
});
});
describe
(
'
Collapsed notes
'
,
()
=>
{
const
stateCollapsedNotes
=
{
notes
:
collapseNotesMock
,
targetNoteHash
:
'
hash
'
,
lastFetchedAt
:
'
timestamp
'
,
notesData
:
notesDataMock
,
userData
:
userDataMock
,
noteableData
:
noteableDataMock
,
};
it
(
'
should return a single system note when a description was updated multiple times
'
,
()
=>
{
expect
(
getters
.
notes
(
stateCollapsedNotes
).
length
).
toEqual
(
1
);
});
});
describe
(
'
targetNoteHash
'
,
()
=>
{
it
(
'
should return `targetNoteHash`
'
,
()
=>
{
expect
(
getters
.
targetNoteHash
(
state
)).
toEqual
(
'
hash
'
);
...
...
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