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
eb71b5da
Commit
eb71b5da
authored
Apr 06, 2018
by
Filipa Lacerda
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Remove modal store and mixins from global scope
parent
41ee09c9
Changes
15
Hide whitespace changes
Inline
Side-by-side
Showing
15 changed files
with
33 additions
and
33 deletions
+33
-33
app/assets/javascripts/boards/components/modal/empty_state.js
...assets/javascripts/boards/components/modal/empty_state.js
+3
-3
app/assets/javascripts/boards/components/modal/footer.js
app/assets/javascripts/boards/components/modal/footer.js
+3
-3
app/assets/javascripts/boards/components/modal/header.js
app/assets/javascripts/boards/components/modal/header.js
+3
-3
app/assets/javascripts/boards/components/modal/index.js
app/assets/javascripts/boards/components/modal/index.js
+1
-2
app/assets/javascripts/boards/components/modal/list.js
app/assets/javascripts/boards/components/modal/list.js
+1
-2
app/assets/javascripts/boards/components/modal/lists_dropdown.js
...ets/javascripts/boards/components/modal/lists_dropdown.js
+1
-2
app/assets/javascripts/boards/components/modal/tabs.js
app/assets/javascripts/boards/components/modal/tabs.js
+3
-3
app/assets/javascripts/boards/index.js
app/assets/javascripts/boards/index.js
+3
-4
app/assets/javascripts/boards/mixins/modal_mixins.js
app/assets/javascripts/boards/mixins/modal_mixins.js
+2
-2
app/assets/javascripts/boards/stores/modal_store.js
app/assets/javascripts/boards/stores/modal_store.js
+1
-4
app/assets/javascripts/labels_select.js
app/assets/javascripts/labels_select.js
+2
-1
app/assets/javascripts/milestone_select.js
app/assets/javascripts/milestone_select.js
+2
-1
app/assets/javascripts/users_select.js
app/assets/javascripts/users_select.js
+2
-1
changelogs/unreleased/44224-remove-gl.yml
changelogs/unreleased/44224-remove-gl.yml
+5
-0
spec/javascripts/boards/modal_store_spec.js
spec/javascripts/boards/modal_store_spec.js
+1
-2
No files found.
app/assets/javascripts/boards/components/modal/empty_state.js
View file @
eb71b5da
import
Vue
from
'
vue
'
;
const
ModalStore
=
gl
.
issueBoards
.
ModalStore
;
import
ModalStore
from
'
../../stores/modal_store
'
;
import
modalMixin
from
'
../../mixins/modal_mixins
'
;
gl
.
issueBoards
.
ModalEmptyState
=
Vue
.
extend
({
mixins
:
[
gl
.
issueBoards
.
ModalMixins
],
mixins
:
[
modalMixin
],
data
()
{
return
ModalStore
.
store
;
},
...
...
app/assets/javascripts/boards/components/modal/footer.js
View file @
eb71b5da
...
...
@@ -3,11 +3,11 @@ import Flash from '../../../flash';
import
{
__
}
from
'
../../../locale
'
;
import
'
./lists_dropdown
'
;
import
{
pluralize
}
from
'
../../../lib/utils/text_utility
'
;
const
ModalStore
=
gl
.
issueBoards
.
ModalStore
;
import
ModalStore
from
'
../../stores/modal_store
'
;
import
modalMixin
from
'
../../mixins/modal_mixins
'
;
gl
.
issueBoards
.
ModalFooter
=
Vue
.
extend
({
mixins
:
[
gl
.
issueBoards
.
ModalMixins
],
mixins
:
[
modalMixin
],
data
()
{
return
{
modal
:
ModalStore
.
store
,
...
...
app/assets/javascripts/boards/components/modal/header.js
View file @
eb71b5da
import
Vue
from
'
vue
'
;
import
modalFilters
from
'
./filters
'
;
import
'
./tabs
'
;
const
ModalStore
=
gl
.
issueBoards
.
ModalStore
;
import
ModalStore
from
'
../../stores/modal_store
'
;
import
modalMixin
from
'
../../mixins/modal_mixins
'
;
gl
.
issueBoards
.
ModalHeader
=
Vue
.
extend
({
mixins
:
[
gl
.
issueBoards
.
ModalMixins
],
mixins
:
[
modalMixin
],
props
:
{
projectId
:
{
type
:
Number
,
...
...
app/assets/javascripts/boards/components/modal/index.js
View file @
eb71b5da
...
...
@@ -7,8 +7,7 @@ import './header';
import
'
./list
'
;
import
'
./footer
'
;
import
'
./empty_state
'
;
const
ModalStore
=
gl
.
issueBoards
.
ModalStore
;
import
ModalStore
from
'
../../stores/modal_store
'
;
gl
.
issueBoards
.
IssuesModal
=
Vue
.
extend
({
props
:
{
...
...
app/assets/javascripts/boards/components/modal/list.js
View file @
eb71b5da
...
...
@@ -2,8 +2,7 @@
import
Vue
from
'
vue
'
;
import
bp
from
'
../../../breakpoints
'
;
const
ModalStore
=
gl
.
issueBoards
.
ModalStore
;
import
ModalStore
from
'
../../stores/modal_store
'
;
gl
.
issueBoards
.
ModalList
=
Vue
.
extend
({
props
:
{
...
...
app/assets/javascripts/boards/components/modal/lists_dropdown.js
View file @
eb71b5da
import
Vue
from
'
vue
'
;
const
ModalStore
=
gl
.
issueBoards
.
ModalStore
;
import
ModalStore
from
'
../../stores/modal_store
'
;
gl
.
issueBoards
.
ModalFooterListsDropdown
=
Vue
.
extend
({
data
()
{
...
...
app/assets/javascripts/boards/components/modal/tabs.js
View file @
eb71b5da
import
Vue
from
'
vue
'
;
const
ModalStore
=
gl
.
issueBoards
.
ModalStore
;
import
ModalStore
from
'
../../stores/modal_store
'
;
import
modalMixin
from
'
../../mixins/modal_mixins
'
;
gl
.
issueBoards
.
ModalTabs
=
Vue
.
extend
({
mixins
:
[
gl
.
issueBoards
.
ModalMixins
],
mixins
:
[
modalMixin
],
data
()
{
return
ModalStore
.
store
;
},
...
...
app/assets/javascripts/boards/index.js
View file @
eb71b5da
...
...
@@ -17,9 +17,9 @@ import './models/milestone';
import
'
./models/project
'
;
import
'
./models/assignee
'
;
import
'
./stores/boards_store
'
;
import
'
./stores/modal_store
'
;
import
ModalStore
from
'
./stores/modal_store
'
;
import
BoardService
from
'
./services/board_service
'
;
import
'
./mixins/modal_mixins
'
;
import
modalMixin
from
'
./mixins/modal_mixins
'
;
import
'
./mixins/sortable_default_options
'
;
import
'
./filters/due_date_filters
'
;
import
'
./components/board
'
;
...
...
@@ -31,7 +31,6 @@ import '~/vue_shared/vue_resource_interceptor'; // eslint-disable-line import/fi
export
default
()
=>
{
const
$boardApp
=
document
.
getElementById
(
'
board-app
'
);
const
Store
=
gl
.
issueBoards
.
BoardsStore
;
const
ModalStore
=
gl
.
issueBoards
.
ModalStore
;
window
.
gl
=
window
.
gl
||
{};
...
...
@@ -176,7 +175,7 @@ export default () => {
gl
.
IssueBoardsModalAddBtn
=
new
Vue
({
el
:
document
.
getElementById
(
'
js-add-issues-btn
'
),
mixins
:
[
gl
.
issueBoards
.
ModalMixins
],
mixins
:
[
modalMixin
],
data
()
{
return
{
modal
:
ModalStore
.
store
,
...
...
app/assets/javascripts/boards/mixins/modal_mixins.js
View file @
eb71b5da
const
ModalStore
=
gl
.
issueBoards
.
ModalStore
;
import
ModalStore
from
'
../stores/modal_store
'
;
gl
.
issueBoards
.
ModalMixins
=
{
export
default
{
methods
:
{
toggleModal
(
toggle
)
{
ModalStore
.
store
.
showAddIssuesModal
=
toggle
;
...
...
app/assets/javascripts/boards/stores/modal_store.js
View file @
eb71b5da
window
.
gl
=
window
.
gl
||
{};
window
.
gl
.
issueBoards
=
window
.
gl
.
issueBoards
||
{};
class
ModalStore
{
constructor
()
{
this
.
store
=
{
...
...
@@ -95,4 +92,4 @@ class ModalStore {
}
}
gl
.
issueBoards
.
ModalStore
=
new
ModalStore
();
export
default
new
ModalStore
();
app/assets/javascripts/labels_select.js
View file @
eb71b5da
...
...
@@ -10,6 +10,7 @@ import IssuableBulkUpdateActions from './issuable_bulk_update_actions';
import
DropdownUtils
from
'
./filtered_search/dropdown_utils
'
;
import
CreateLabelDropdown
from
'
./create_label
'
;
import
flash
from
'
./flash
'
;
import
ModalStore
from
'
./boards/stores/modal_store
'
;
export
default
class
LabelsSelect
{
constructor
(
els
,
options
=
{})
{
...
...
@@ -350,7 +351,7 @@ export default class LabelsSelect {
}
if
(
$dropdown
.
closest
(
'
.add-issues-modal
'
).
length
)
{
boardsModel
=
gl
.
issueBoards
.
ModalStore
.
store
.
filter
;
boardsModel
=
ModalStore
.
store
.
filter
;
}
if
(
boardsModel
)
{
...
...
app/assets/javascripts/milestone_select.js
View file @
eb71b5da
...
...
@@ -6,6 +6,7 @@ import $ from 'jquery';
import
_
from
'
underscore
'
;
import
axios
from
'
./lib/utils/axios_utils
'
;
import
{
timeFor
}
from
'
./lib/utils/datetime_utility
'
;
import
ModalStore
from
'
./boards/stores/modal_store
'
;
export
default
class
MilestoneSelect
{
constructor
(
currentProject
,
els
,
options
=
{})
{
...
...
@@ -164,7 +165,7 @@ export default class MilestoneSelect {
}
if
(
$dropdown
.
closest
(
'
.add-issues-modal
'
).
length
)
{
boardsStore
=
gl
.
issueBoards
.
ModalStore
.
store
.
filter
;
boardsStore
=
ModalStore
.
store
.
filter
;
}
if
(
boardsStore
)
{
...
...
app/assets/javascripts/users_select.js
View file @
eb71b5da
...
...
@@ -5,6 +5,7 @@
import
$
from
'
jquery
'
;
import
_
from
'
underscore
'
;
import
axios
from
'
./lib/utils/axios_utils
'
;
import
ModalStore
from
'
./boards/stores/modal_store
'
;
// TODO: remove eventHub hack after code splitting refactor
window
.
emitSidebarEvent
=
window
.
emitSidebarEvent
||
$
.
noop
;
...
...
@@ -441,7 +442,7 @@ function UsersSelect(currentUser, els, options = {}) {
return
;
}
if
(
$el
.
closest
(
'
.add-issues-modal
'
).
length
)
{
gl
.
issueBoards
.
ModalStore
.
store
.
filter
[
$dropdown
.
data
(
'
fieldName
'
)]
=
user
.
id
;
ModalStore
.
store
.
filter
[
$dropdown
.
data
(
'
fieldName
'
)]
=
user
.
id
;
}
else
if
(
handleClick
)
{
e
.
preventDefault
();
handleClick
(
user
,
isMarking
);
...
...
changelogs/unreleased/44224-remove-gl.yml
0 → 100644
View file @
eb71b5da
---
title
:
Removes modal boards store and mixins from global scope
merge_request
:
author
:
type
:
other
spec/javascripts/boards/modal_store_spec.js
View file @
eb71b5da
...
...
@@ -4,12 +4,11 @@ import '~/vue_shared/models/label';
import
'
~/boards/models/issue
'
;
import
'
~/boards/models/list
'
;
import
'
~/boards/models/assignee
'
;
import
'
~/boards/stores/modal_store
'
;
import
Store
from
'
~/boards/stores/modal_store
'
;
describe
(
'
Modal store
'
,
()
=>
{
let
issue
;
let
issue2
;
const
Store
=
gl
.
issueBoards
.
ModalStore
;
beforeEach
(()
=>
{
// Setup default state
...
...
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