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
fc507050
Commit
fc507050
authored
Aug 19, 2021
by
Mike Greiling
Committed by
Phil Hughes
Aug 19, 2021
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Deprecate old notes script
parent
c88d9ecd
Changes
9
Show whitespace changes
Inline
Side-by-side
Showing
9 changed files
with
24 additions
and
38 deletions
+24
-38
app/assets/javascripts/deprecated_notes.js
app/assets/javascripts/deprecated_notes.js
+1
-3
app/assets/javascripts/init_deprecated_notes.js
app/assets/javascripts/init_deprecated_notes.js
+1
-1
app/assets/javascripts/merge_request_tabs.js
app/assets/javascripts/merge_request_tabs.js
+9
-22
app/assets/javascripts/pages/projects/commit/show/index.js
app/assets/javascripts/pages/projects/commit/show/index.js
+2
-2
app/assets/javascripts/pages/projects/issues/show.js
app/assets/javascripts/pages/projects/issues/show.js
+1
-1
app/assets/javascripts/snippet/snippet_show.js
app/assets/javascripts/snippet/snippet_show.js
+2
-2
ee/app/assets/javascripts/pages/groups/epics/show/index.js
ee/app/assets/javascripts/pages/groups/epics/show/index.js
+1
-1
spec/frontend/notes/deprecated_notes_spec.js
spec/frontend/notes/deprecated_notes_spec.js
+3
-4
spec/frontend/zen_mode_spec.js
spec/frontend/zen_mode_spec.js
+4
-2
No files found.
app/assets/javascripts/notes.js
→
app/assets/javascripts/
deprecated_
notes.js
View file @
fc507050
...
@@ -7,7 +7,7 @@ class-methods-use-this */
...
@@ -7,7 +7,7 @@ class-methods-use-this */
/* global ResolveService */
/* global ResolveService */
/*
/*
ol
d_notes_spec.js is the spec for the legacy, jQuery notes application. It has nothing to do with the new, fancy Vue notes app.
deprecate
d_notes_spec.js is the spec for the legacy, jQuery notes application. It has nothing to do with the new, fancy Vue notes app.
*/
*/
import
{
GlDeprecatedSkeletonLoading
as
GlSkeletonLoading
}
from
'
@gitlab/ui
'
;
import
{
GlDeprecatedSkeletonLoading
as
GlSkeletonLoading
}
from
'
@gitlab/ui
'
;
...
@@ -1740,5 +1740,3 @@ export default class Notes {
...
@@ -1740,5 +1740,3 @@ export default class Notes {
return
$closeBtn
.
text
(
$closeBtn
.
data
(
'
originalText
'
));
return
$closeBtn
.
text
(
$closeBtn
.
data
(
'
originalText
'
));
}
}
}
}
window
.
Notes
=
Notes
;
app/assets/javascripts/init_notes.js
→
app/assets/javascripts/init_
deprecated_
notes.js
View file @
fc507050
import
Notes
from
'
./notes
'
;
import
Notes
from
'
./
deprecated_
notes
'
;
export
default
()
=>
{
export
default
()
=>
{
const
dataEl
=
document
.
querySelector
(
'
.js-notes-data
'
);
const
dataEl
=
document
.
querySelector
(
'
.js-notes-data
'
);
...
...
app/assets/javascripts/merge_request_tabs.js
View file @
fc507050
...
@@ -11,16 +11,13 @@ import initChangesDropdown from './init_changes_dropdown';
...
@@ -11,16 +11,13 @@ import initChangesDropdown from './init_changes_dropdown';
import
axios
from
'
./lib/utils/axios_utils
'
;
import
axios
from
'
./lib/utils/axios_utils
'
;
import
{
import
{
parseUrlPathname
,
parseUrlPathname
,
handleLocationHash
,
isMetaClick
,
isMetaClick
,
parseBoolean
,
parseBoolean
,
scrollToElement
,
scrollToElement
,
}
from
'
./lib/utils/common_utils
'
;
}
from
'
./lib/utils/common_utils
'
;
import
{
localTimeAgo
}
from
'
./lib/utils/datetime_utility
'
;
import
{
localTimeAgo
}
from
'
./lib/utils/datetime_utility
'
;
import
{
isInVueNoteablePage
}
from
'
./lib/utils/dom_utils
'
;
import
{
isInVueNoteablePage
}
from
'
./lib/utils/dom_utils
'
;
import
{
getLocationHash
}
from
'
./lib/utils/url_utility
'
;
import
{
__
}
from
'
./locale
'
;
import
{
__
}
from
'
./locale
'
;
import
Notes
from
'
./notes
'
;
import
syntaxHighlight
from
'
./syntax_highlight
'
;
import
syntaxHighlight
from
'
./syntax_highlight
'
;
// MergeRequestTabs
// MergeRequestTabs
...
@@ -193,6 +190,14 @@ export default class MergeRequestTabs {
...
@@ -193,6 +190,14 @@ export default class MergeRequestTabs {
this
.
destroyPipelinesView
();
this
.
destroyPipelinesView
();
}
else
if
(
this
.
isDiffAction
(
action
))
{
}
else
if
(
this
.
isDiffAction
(
action
))
{
if
(
!
isInVueNoteablePage
())
{
if
(
!
isInVueNoteablePage
())
{
/*
for pages where we have not yet converted to the new vue
implementation we load the diff tab content the old way,
inserting html rendered by the backend.
in practice, this only occurs when comparing commits in
the new merge request form page.
*/
this
.
loadDiff
(
href
);
this
.
loadDiff
(
href
);
}
}
if
(
bp
.
getBreakpointSize
()
!==
'
xl
'
)
{
if
(
bp
.
getBreakpointSize
()
!==
'
xl
'
)
{
...
@@ -379,6 +384,7 @@ export default class MergeRequestTabs {
...
@@ -379,6 +384,7 @@ export default class MergeRequestTabs {
pipelineTableViewEl
.
appendChild
(
this
.
commitPipelinesTable
.
$el
);
pipelineTableViewEl
.
appendChild
(
this
.
commitPipelinesTable
.
$el
);
}
}
// load the diff tab content from the backend
loadDiff
(
source
)
{
loadDiff
(
source
)
{
if
(
this
.
diffsLoaded
)
{
if
(
this
.
diffsLoaded
)
{
document
.
dispatchEvent
(
new
CustomEvent
(
'
scroll
'
));
document
.
dispatchEvent
(
new
CustomEvent
(
'
scroll
'
));
...
@@ -420,25 +426,6 @@ export default class MergeRequestTabs {
...
@@ -420,25 +426,6 @@ export default class MergeRequestTabs {
}).
init
();
}).
init
();
});
});
// Scroll any linked note into view
// Similar to `toggler_behavior` in the discussion tab
const
hash
=
getLocationHash
();
const
anchor
=
hash
&&
$container
.
find
(
`.note[id="
${
hash
}
"]`
);
if
(
anchor
&&
anchor
.
length
>
0
)
{
const
notesContent
=
anchor
.
closest
(
'
.notes-content
'
);
const
lineType
=
notesContent
.
hasClass
(
'
new
'
)
?
'
new
'
:
'
old
'
;
Notes
.
instance
.
toggleDiffNote
({
target
:
anchor
,
lineType
,
forceShow
:
true
,
});
anchor
[
0
].
scrollIntoView
();
handleLocationHash
();
// We have multiple elements on the page with `#note_xxx`
// (discussion and diff tabs) and `:target` only applies to the first
anchor
.
addClass
(
'
target
'
);
}
this
.
toggleLoading
(
false
);
this
.
toggleLoading
(
false
);
})
})
.
catch
(()
=>
{
.
catch
(()
=>
{
...
...
app/assets/javascripts/pages/projects/commit/show/index.js
View file @
fc507050
...
@@ -5,7 +5,7 @@ import ShortcutsNavigation from '~/behaviors/shortcuts/shortcuts_navigation';
...
@@ -5,7 +5,7 @@ import ShortcutsNavigation from '~/behaviors/shortcuts/shortcuts_navigation';
import
Diff
from
'
~/diff
'
;
import
Diff
from
'
~/diff
'
;
import
createFlash
from
'
~/flash
'
;
import
createFlash
from
'
~/flash
'
;
import
initChangesDropdown
from
'
~/init_changes_dropdown
'
;
import
initChangesDropdown
from
'
~/init_changes_dropdown
'
;
import
init
Notes
from
'
~/init
_notes
'
;
import
init
DeprecatedNotes
from
'
~/init_deprecated
_notes
'
;
import
axios
from
'
~/lib/utils/axios_utils
'
;
import
axios
from
'
~/lib/utils/axios_utils
'
;
import
{
handleLocationHash
}
from
'
~/lib/utils/common_utils
'
;
import
{
handleLocationHash
}
from
'
~/lib/utils/common_utils
'
;
import
{
__
}
from
'
~/locale
'
;
import
{
__
}
from
'
~/locale
'
;
...
@@ -23,7 +23,7 @@ new ShortcutsNavigation();
...
@@ -23,7 +23,7 @@ new ShortcutsNavigation();
initCommitBoxInfo
();
initCommitBoxInfo
();
initNotes
();
init
Deprecated
Notes
();
const
filesContainer
=
$
(
'
.js-diffs-batch
'
);
const
filesContainer
=
$
(
'
.js-diffs-batch
'
);
...
...
app/assets/javascripts/pages/projects/issues/show.js
View file @
fc507050
...
@@ -6,7 +6,7 @@ import Issue from '~/issue';
...
@@ -6,7 +6,7 @@ import Issue from '~/issue';
import
initIncidentApp
from
'
~/issue_show/incident
'
;
import
initIncidentApp
from
'
~/issue_show/incident
'
;
import
{
initIssuableApp
,
initIssueHeaderActions
}
from
'
~/issue_show/issue
'
;
import
{
initIssuableApp
,
initIssueHeaderActions
}
from
'
~/issue_show/issue
'
;
import
{
parseIssuableData
}
from
'
~/issue_show/utils/parse_data
'
;
import
{
parseIssuableData
}
from
'
~/issue_show/utils/parse_data
'
;
import
initNotesApp
from
'
~/notes
/index
'
;
import
initNotesApp
from
'
~/notes
'
;
import
{
store
}
from
'
~/notes/stores
'
;
import
{
store
}
from
'
~/notes/stores
'
;
import
initRelatedMergeRequestsApp
from
'
~/related_merge_requests
'
;
import
initRelatedMergeRequestsApp
from
'
~/related_merge_requests
'
;
import
initSentryErrorStackTraceApp
from
'
~/sentry_error_stack_trace
'
;
import
initSentryErrorStackTraceApp
from
'
~/sentry_error_stack_trace
'
;
...
...
app/assets/javascripts/snippet/snippet_show.js
View file @
fc507050
import
loadAwardsHandler
from
'
~/awards_handler
'
;
import
loadAwardsHandler
from
'
~/awards_handler
'
;
import
init
Notes
from
'
~/init
_notes
'
;
import
init
DeprecatedNotes
from
'
~/init_deprecated
_notes
'
;
import
SnippetsAppFactory
from
'
~/snippets
'
;
import
SnippetsAppFactory
from
'
~/snippets
'
;
import
SnippetsShow
from
'
~/snippets/components/show.vue
'
;
import
SnippetsShow
from
'
~/snippets/components/show.vue
'
;
import
ZenMode
from
'
~/zen_mode
'
;
import
ZenMode
from
'
~/zen_mode
'
;
SnippetsAppFactory
(
document
.
getElementById
(
'
js-snippet-view
'
),
SnippetsShow
);
SnippetsAppFactory
(
document
.
getElementById
(
'
js-snippet-view
'
),
SnippetsShow
);
initNotes
();
init
Deprecated
Notes
();
loadAwardsHandler
();
loadAwardsHandler
();
// eslint-disable-next-line no-new
// eslint-disable-next-line no-new
...
...
ee/app/assets/javascripts/pages/groups/epics/show/index.js
View file @
fc507050
...
@@ -2,7 +2,7 @@ import ShortcutsEpic from 'ee/behaviors/shortcuts/shortcuts_epic';
...
@@ -2,7 +2,7 @@ import ShortcutsEpic from 'ee/behaviors/shortcuts/shortcuts_epic';
import
initEpicApp
from
'
ee/epic/epic_bundle
'
;
import
initEpicApp
from
'
ee/epic/epic_bundle
'
;
import
EpicTabs
from
'
ee/epic/epic_tabs
'
;
import
EpicTabs
from
'
ee/epic/epic_tabs
'
;
import
loadAwardsHandler
from
'
~/awards_handler
'
;
import
loadAwardsHandler
from
'
~/awards_handler
'
;
import
initNotesApp
from
'
~/notes
/index
'
;
import
initNotesApp
from
'
~/notes
'
;
import
ZenMode
from
'
~/zen_mode
'
;
import
ZenMode
from
'
~/zen_mode
'
;
initNotesApp
();
initNotesApp
();
...
...
spec/frontend/notes/
ol
d_notes_spec.js
→
spec/frontend/notes/
deprecate
d_notes_spec.js
View file @
fc507050
...
@@ -14,9 +14,8 @@ import * as urlUtility from '~/lib/utils/url_utility';
...
@@ -14,9 +14,8 @@ import * as urlUtility from '~/lib/utils/url_utility';
window
.
jQuery
=
$
;
window
.
jQuery
=
$
;
require
(
'
autosize
'
);
require
(
'
autosize
'
);
require
(
'
~/commons
'
);
require
(
'
~/commons
'
);
require
(
'
~/notes
'
)
;
const
Notes
=
require
(
'
~/deprecated_notes
'
).
default
;
const
{
Notes
}
=
window
;
const
FLASH_TYPE_ALERT
=
'
alert
'
;
const
FLASH_TYPE_ALERT
=
'
alert
'
;
const
NOTES_POST_PATH
=
/
(
.*
)\/
notes
\?
html=true$/
;
const
NOTES_POST_PATH
=
/
(
.*
)\/
notes
\?
html=true$/
;
const
fixture
=
'
snippets/show.html
'
;
const
fixture
=
'
snippets/show.html
'
;
...
@@ -31,7 +30,7 @@ gl.utils.disableButtonIfEmptyField = () => {};
...
@@ -31,7 +30,7 @@ gl.utils.disableButtonIfEmptyField = () => {};
// the following test is unreliable and failing in main 2-3 times a day
// the following test is unreliable and failing in main 2-3 times a day
// see https://gitlab.com/gitlab-org/gitlab/issues/206906#note_290602581
// see https://gitlab.com/gitlab-org/gitlab/issues/206906#note_290602581
// eslint-disable-next-line jest/no-disabled-tests
// eslint-disable-next-line jest/no-disabled-tests
describe
.
skip
(
'
Old Notes (~/notes.js)
'
,
()
=>
{
describe
.
skip
(
'
Old Notes (~/
deprecated_
notes.js)
'
,
()
=>
{
beforeEach
(()
=>
{
beforeEach
(()
=>
{
loadFixtures
(
fixture
);
loadFixtures
(
fixture
);
...
@@ -67,7 +66,7 @@ describe.skip('Old Notes (~/notes.js)', () => {
...
@@ -67,7 +66,7 @@ describe.skip('Old Notes (~/notes.js)', () => {
it
(
'
calls postComment when comment button is clicked
'
,
()
=>
{
it
(
'
calls postComment when comment button is clicked
'
,
()
=>
{
jest
.
spyOn
(
Notes
.
prototype
,
'
postComment
'
);
jest
.
spyOn
(
Notes
.
prototype
,
'
postComment
'
);
new
window
.
Notes
(
''
,
[]);
new
Notes
(
''
,
[]);
$
(
'
.js-comment-button
'
).
click
();
$
(
'
.js-comment-button
'
).
click
();
expect
(
Notes
.
prototype
.
postComment
).
toHaveBeenCalled
();
expect
(
Notes
.
prototype
.
postComment
).
toHaveBeenCalled
();
});
});
...
...
spec/frontend/zen_mode_spec.js
View file @
fc507050
...
@@ -3,7 +3,7 @@ import MockAdapter from 'axios-mock-adapter';
...
@@ -3,7 +3,7 @@ import MockAdapter from 'axios-mock-adapter';
import
Dropzone
from
'
dropzone
'
;
import
Dropzone
from
'
dropzone
'
;
import
$
from
'
jquery
'
;
import
$
from
'
jquery
'
;
import
Mousetrap
from
'
mousetrap
'
;
import
Mousetrap
from
'
mousetrap
'
;
import
initNotes
from
'
~/init_notes
'
;
import
GLForm
from
'
~/gl_form
'
;
import
*
as
utils
from
'
~/lib/utils/common_utils
'
;
import
*
as
utils
from
'
~/lib/utils/common_utils
'
;
import
ZenMode
from
'
~/zen_mode
'
;
import
ZenMode
from
'
~/zen_mode
'
;
...
@@ -34,7 +34,9 @@ describe('ZenMode', () => {
...
@@ -34,7 +34,9 @@ describe('ZenMode', () => {
mock
.
onGet
().
reply
(
200
);
mock
.
onGet
().
reply
(
200
);
loadFixtures
(
fixtureName
);
loadFixtures
(
fixtureName
);
initNotes
();
const
form
=
$
(
'
.js-new-note-form
'
);
new
GLForm
(
form
);
// eslint-disable-line no-new
dropzoneForElementSpy
=
jest
.
spyOn
(
Dropzone
,
'
forElement
'
).
mockImplementation
(()
=>
({
dropzoneForElementSpy
=
jest
.
spyOn
(
Dropzone
,
'
forElement
'
).
mockImplementation
(()
=>
({
enable
:
()
=>
true
,
enable
:
()
=>
true
,
...
...
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