BigW Consortium Gitlab
Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
G
gitlab-ce
Project
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
Registry
Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Commits
Issue Boards
Open sidebar
Forest Godfrey
gitlab-ce
Commits
88d29775
Commit
88d29775
authored
Nov 17, 2017
by
Phil Hughes
Browse files
Options
Browse Files
Download
Plain Diff
Merge branch '38869-project-1' into 'master'
Exports a couple of project related code as es6 modules See merge request gitlab-org/gitlab-ce!15356
parents
2dff3776
77b1def4
Show whitespace changes
Inline
Side-by-side
Showing
8 changed files
with
42 additions
and
81 deletions
+42
-81
dispatcher.js
app/assets/javascripts/dispatcher.js
+9
-9
main.js
app/assets/javascripts/main.js
+0
-5
project.js
app/assets/javascripts/project.js
+2
-2
project_label_subscription.js
app/assets/javascripts/project_label_subscription.js
+5
-10
project_new.js
app/assets/javascripts/project_new.js
+20
-28
project_select.js
app/assets/javascripts/project_select.js
+2
-8
project_show.js
app/assets/javascripts/project_show.js
+0
-11
project_variables.js
app/assets/javascripts/project_variables.js
+4
-8
No files found.
app/assets/javascripts/dispatcher.js
View file @
88d29775
/* eslint-disable func-names, space-before-function-paren, no-var, prefer-arrow-callback, wrap-iife, no-shadow, consistent-return, one-var, one-var-declaration-per-line, camelcase, default-case, no-new, quotes, no-duplicate-case, no-case-declarations, no-fallthrough, max-len */
/* eslint-disable func-names, space-before-function-paren, no-var, prefer-arrow-callback, wrap-iife, no-shadow, consistent-return, one-var, one-var-declaration-per-line, camelcase, default-case, no-new, quotes, no-duplicate-case, no-case-declarations, no-fallthrough, max-len */
import
{
s__
}
from
'./locale'
;
import
{
s__
}
from
'./locale'
;
/* global ProjectSelect */
import
projectSelect
from
'./project_select'
;
import
IssuableIndex
from
'./issuable_index'
;
import
IssuableIndex
from
'./issuable_index'
;
/* global Milestone */
/* global Milestone */
import
IssuableForm
from
'./issuable_form'
;
import
IssuableForm
from
'./issuable_form'
;
...
@@ -26,8 +26,7 @@ import projectAvatar from './project_avatar';
...
@@ -26,8 +26,7 @@ import projectAvatar from './project_avatar';
/* global Compare */
/* global Compare */
/* global CompareAutocomplete */
/* global CompareAutocomplete */
/* global ProjectFindFile */
/* global ProjectFindFile */
/* global ProjectNew */
import
ProjectNew
from
'./project_new'
;
/* global ProjectShow */
import
projectImport
from
'./project_import'
;
import
projectImport
from
'./project_import'
;
import
Labels
from
'./labels'
;
import
Labels
from
'./labels'
;
import
LabelManager
from
'./label_manager'
;
import
LabelManager
from
'./label_manager'
;
...
@@ -91,6 +90,8 @@ import Members from './members';
...
@@ -91,6 +90,8 @@ import Members from './members';
import
memberExpirationDate
from
'./member_expiration_date'
;
import
memberExpirationDate
from
'./member_expiration_date'
;
import
DueDateSelectors
from
'./due_date_select'
;
import
DueDateSelectors
from
'./due_date_select'
;
import
Diff
from
'./diff'
;
import
Diff
from
'./diff'
;
import
ProjectLabelSubscription
from
'./project_label_subscription'
;
import
ProjectVariables
from
'./project_variables'
;
(
function
()
{
(
function
()
{
var
Dispatcher
;
var
Dispatcher
;
...
@@ -187,7 +188,7 @@ import Diff from './diff';
...
@@ -187,7 +188,7 @@ import Diff from './diff';
initIssuableSidebar
();
initIssuableSidebar
();
break
;
break
;
case
'dashboard:milestones:index'
:
case
'dashboard:milestones:index'
:
new
P
rojectSelect
();
p
rojectSelect
();
break
;
break
;
case
'projects:milestones:show'
:
case
'projects:milestones:show'
:
case
'groups:milestones:show'
:
case
'groups:milestones:show'
:
...
@@ -197,7 +198,7 @@ import Diff from './diff';
...
@@ -197,7 +198,7 @@ import Diff from './diff';
break
;
break
;
case
'dashboard:issues'
:
case
'dashboard:issues'
:
case
'dashboard:merge_requests'
:
case
'dashboard:merge_requests'
:
new
P
rojectSelect
();
p
rojectSelect
();
initLegacyFilters
();
initLegacyFilters
();
break
;
break
;
case
'groups:issues'
:
case
'groups:issues'
:
...
@@ -206,7 +207,7 @@ import Diff from './diff';
...
@@ -206,7 +207,7 @@ import Diff from './diff';
const
filteredSearchManager
=
new
gl
.
FilteredSearchManager
(
page
===
'groups:issues'
?
'issues'
:
'merge_requests'
);
const
filteredSearchManager
=
new
gl
.
FilteredSearchManager
(
page
===
'groups:issues'
?
'issues'
:
'merge_requests'
);
filteredSearchManager
.
setup
();
filteredSearchManager
.
setup
();
}
}
new
P
rojectSelect
();
p
rojectSelect
();
break
;
break
;
case
'dashboard:todos:index'
:
case
'dashboard:todos:index'
:
new
Todos
();
new
Todos
();
...
@@ -484,7 +485,7 @@ import Diff from './diff';
...
@@ -484,7 +485,7 @@ import Diff from './diff';
if
(
$el
.
find
(
'.dropdown-group-label'
).
length
)
{
if
(
$el
.
find
(
'.dropdown-group-label'
).
length
)
{
new
GroupLabelSubscription
(
$el
);
new
GroupLabelSubscription
(
$el
);
}
else
{
}
else
{
new
gl
.
ProjectLabelSubscription
(
$el
);
new
ProjectLabelSubscription
(
$el
);
}
}
});
});
break
;
break
;
...
@@ -520,7 +521,7 @@ import Diff from './diff';
...
@@ -520,7 +521,7 @@ import Diff from './diff';
// Initialize expandable settings panels
// Initialize expandable settings panels
initSettingsPanels
();
initSettingsPanels
();
case
'groups:settings:ci_cd:show'
:
case
'groups:settings:ci_cd:show'
:
new
gl
.
ProjectVariables
();
new
ProjectVariables
();
break
;
break
;
case
'ci:lints:create'
:
case
'ci:lints:create'
:
case
'ci:lints:show'
:
case
'ci:lints:show'
:
...
@@ -623,7 +624,6 @@ import Diff from './diff';
...
@@ -623,7 +624,6 @@ import Diff from './diff';
case
'show'
:
case
'show'
:
new
Star
();
new
Star
();
new
ProjectNew
();
new
ProjectNew
();
new
ProjectShow
();
new
NotificationsDropdown
();
new
NotificationsDropdown
();
break
;
break
;
case
'wikis'
:
case
'wikis'
:
...
...
app/assets/javascripts/main.js
View file @
88d29775
...
@@ -71,11 +71,6 @@ import './pager';
...
@@ -71,11 +71,6 @@ import './pager';
import
'./preview_markdown'
;
import
'./preview_markdown'
;
import
'./project_find_file'
;
import
'./project_find_file'
;
import
'./project_import'
;
import
'./project_import'
;
import
'./project_label_subscription'
;
import
'./project_new'
;
import
'./project_select'
;
import
'./project_show'
;
import
'./project_variables'
;
import
'./projects_dropdown'
;
import
'./projects_dropdown'
;
import
'./projects_list'
;
import
'./projects_list'
;
import
'./syntax_highlight'
;
import
'./syntax_highlight'
;
...
...
app/assets/javascripts/project.js
View file @
88d29775
/* eslint-disable func-names, space-before-function-paren, no-var, consistent-return, no-new, prefer-arrow-callback, no-return-assign, one-var, one-var-declaration-per-line, object-shorthand, no-else-return, newline-per-chained-call, no-shadow, vars-on-top, prefer-template, max-len */
/* eslint-disable func-names, space-before-function-paren, no-var, consistent-return, no-new, prefer-arrow-callback, no-return-assign, one-var, one-var-declaration-per-line, object-shorthand, no-else-return, newline-per-chained-call, no-shadow, vars-on-top, prefer-template, max-len */
/* global ProjectSelect */
import
Cookies
from
'js-cookie'
;
import
Cookies
from
'js-cookie'
;
import
projectSelect
from
'./project_select'
;
export
default
class
Project
{
export
default
class
Project
{
constructor
()
{
constructor
()
{
...
@@ -46,7 +46,7 @@ export default class Project {
...
@@ -46,7 +46,7 @@ export default class Project {
}
}
static
projectSelectDropdown
()
{
static
projectSelectDropdown
()
{
new
P
rojectSelect
();
p
rojectSelect
();
$
(
'.project-item-select'
).
on
(
'click'
,
e
=>
Project
.
changeProject
(
$
(
e
.
currentTarget
).
val
()));
$
(
'.project-item-select'
).
on
(
'click'
,
e
=>
Project
.
changeProject
(
$
(
e
.
currentTarget
).
val
()));
}
}
...
...
app/assets/javascripts/project_label_subscription.js
View file @
88d29775
/* eslint-disable wrap-iife, func-names, space-before-function-paren, object-shorthand, comma-dangle, one-var, one-var-declaration-per-line, no-restricted-syntax, max-len, no-param-reassign */
export
default
class
ProjectLabelSubscription
{
(
function
(
global
)
{
class
ProjectLabelSubscription
{
constructor
(
container
)
{
constructor
(
container
)
{
this
.
$container
=
$
(
container
);
this
.
$container
=
$
(
container
);
this
.
$buttons
=
this
.
$container
.
find
(
'.js-subscribe-button'
);
this
.
$buttons
=
this
.
$container
.
find
(
'.js-subscribe-button'
);
...
@@ -22,9 +19,10 @@
...
@@ -22,9 +19,10 @@
$
.
ajax
({
$
.
ajax
({
type
:
'POST'
,
type
:
'POST'
,
url
:
url
url
,
}).
done
(()
=>
{
}).
done
(()
=>
{
let
newStatus
,
newAction
;
let
newStatus
;
let
newAction
;
if
(
oldStatus
===
'unsubscribed'
)
{
if
(
oldStatus
===
'unsubscribed'
)
{
[
newStatus
,
newAction
]
=
[
'subscribed'
,
'Unsubscribe'
];
[
newStatus
,
newAction
]
=
[
'subscribed'
,
'Unsubscribe'
];
...
@@ -49,7 +47,4 @@
...
@@ -49,7 +47,4 @@
});
});
});
});
}
}
}
}
global
.
ProjectLabelSubscription
=
ProjectLabelSubscription
;
})(
window
.
gl
||
(
window
.
gl
=
{}));
app/assets/javascripts/project_new.js
View file @
88d29775
/* eslint-disable func-names,
space-before-function-paren, no-var, prefer-rest-params, wrap-iife, no-unused-vars, one-var, no-underscore-dangle, prefer-template, no-else-return, prefer-arrow-callback, max-len
*/
/* eslint-disable func-names,
no-var, no-underscore-dangle, prefer-template, prefer-arrow-callback
*/
import
VisibilitySelect
from
'./visibility_select'
;
import
VisibilitySelect
from
'./visibility_select'
;
...
@@ -7,20 +7,17 @@ function highlightChanges($elm) {
...
@@ -7,20 +7,17 @@ function highlightChanges($elm) {
setTimeout
(()
=>
$elm
.
removeClass
(
'highlight-changes'
),
10
);
setTimeout
(()
=>
$elm
.
removeClass
(
'highlight-changes'
),
10
);
}
}
(
function
()
{
export
default
class
ProjectNew
{
this
.
ProjectNew
=
(
function
()
{
constructor
()
{
function
ProjectNew
()
{
this
.
toggleSettings
=
this
.
toggleSettings
.
bind
(
this
);
this
.
toggleSettings
=
this
.
toggleSettings
.
bind
(
this
);
this
.
$selects
=
$
(
'.features select'
);
this
.
$selects
=
$
(
'.features select'
);
this
.
$repoSelects
=
this
.
$selects
.
filter
(
'.js-repo-select'
);
this
.
$repoSelects
=
this
.
$selects
.
filter
(
'.js-repo-select'
);
this
.
$projectSelects
=
this
.
$selects
.
not
(
'.js-repo-select'
);
this
.
$projectSelects
=
this
.
$selects
.
not
(
'.js-repo-select'
);
$
(
'.project-edit-container'
).
on
(
'ajax:before'
,
(
function
(
_this
)
{
$
(
'.project-edit-container'
).
on
(
'ajax:before'
,
()
=>
{
return
function
()
{
$
(
'.project-edit-container'
).
hide
();
$
(
'.project-edit-container'
).
hide
();
return
$
(
'.save-project-loader'
).
show
();
return
$
(
'.save-project-loader'
).
show
();
};
});
})(
this
));
this
.
initVisibilitySelect
();
this
.
initVisibilitySelect
();
...
@@ -29,7 +26,7 @@ function highlightChanges($elm) {
...
@@ -29,7 +26,7 @@ function highlightChanges($elm) {
this
.
toggleRepoVisibility
();
this
.
toggleRepoVisibility
();
}
}
ProjectNew
.
prototype
.
initVisibilitySelect
=
function
()
{
initVisibilitySelect
()
{
const
visibilityContainer
=
document
.
querySelector
(
'.js-visibility-select'
);
const
visibilityContainer
=
document
.
querySelector
(
'.js-visibility-select'
);
if
(
!
visibilityContainer
)
return
;
if
(
!
visibilityContainer
)
return
;
const
visibilitySelect
=
new
VisibilitySelect
(
visibilityContainer
);
const
visibilitySelect
=
new
VisibilitySelect
(
visibilityContainer
);
...
@@ -70,35 +67,32 @@ function highlightChanges($elm) {
...
@@ -70,35 +67,32 @@ function highlightChanges($elm) {
projectVisibility
=
newProjectVisibility
;
projectVisibility
=
newProjectVisibility
;
}
}
});
});
};
}
ProjectNew
.
prototype
.
toggleSettings
=
function
()
{
var
self
=
this
;
toggleSettings
()
{
this
.
$selects
.
each
(
function
()
{
this
.
$selects
.
each
(
function
()
{
var
$select
=
$
(
this
);
var
$select
=
$
(
this
);
var
className
=
$select
.
data
(
'field'
)
var
className
=
$select
.
data
(
'field'
)
.
replace
(
/_/g
,
'-'
)
.
replace
(
/_/g
,
'-'
)
.
replace
(
'access-level'
,
'feature'
);
.
replace
(
'access-level'
,
'feature'
);
self
.
_showOrHide
(
$select
,
'.'
+
className
);
ProjectNew
.
_showOrHide
(
$select
,
'.'
+
className
);
});
});
};
}
ProjectNew
.
prototype
.
toggleSettingsOnclick
=
function
()
{
toggleSettingsOnclick
()
{
this
.
$selects
.
on
(
'change'
,
this
.
toggleSettings
);
this
.
$selects
.
on
(
'change'
,
this
.
toggleSettings
);
};
}
ProjectNew
.
prototype
.
_showOrHide
=
function
(
checkElement
,
container
)
{
static
_showOrHide
(
checkElement
,
container
)
{
var
$container
=
$
(
container
);
const
$container
=
$
(
container
);
if
(
$
(
checkElement
).
val
()
!==
'0'
)
{
if
(
$
(
checkElement
).
val
()
!==
'0'
)
{
return
$container
.
show
();
return
$container
.
show
();
}
else
{
}
return
$container
.
hide
();
return
$container
.
hide
();
}
}
};
ProjectNew
.
prototype
.
toggleRepoVisibility
=
function
()
{
toggleRepoVisibility
()
{
var
$repoAccessLevel
=
$
(
'.js-repo-access-level select'
);
var
$repoAccessLevel
=
$
(
'.js-repo-access-level select'
);
var
$lfsEnabledOption
=
$
(
'.js-lfs-enabled select'
);
var
$lfsEnabledOption
=
$
(
'.js-lfs-enabled select'
);
var
containerRegistry
=
document
.
querySelectorAll
(
'.js-container-registry'
)[
0
];
var
containerRegistry
=
document
.
querySelectorAll
(
'.js-container-registry'
)[
0
];
...
@@ -109,7 +103,8 @@ function highlightChanges($elm) {
...
@@ -109,7 +103,8 @@ function highlightChanges($elm) {
.
nextAll
()
.
nextAll
()
.
hide
();
.
hide
();
$repoAccessLevel
.
off
(
'change'
)
$repoAccessLevel
.
off
(
'change'
)
.
on
(
'change'
,
function
()
{
.
on
(
'change'
,
function
()
{
var
selectedVal
=
parseInt
(
$repoAccessLevel
.
val
(),
10
);
var
selectedVal
=
parseInt
(
$repoAccessLevel
.
val
(),
10
);
...
@@ -152,8 +147,5 @@ function highlightChanges($elm) {
...
@@ -152,8 +147,5 @@ function highlightChanges($elm) {
prevSelectedVal
=
selectedVal
;
prevSelectedVal
=
selectedVal
;
}.
bind
(
this
));
}.
bind
(
this
));
};
}
}
return
ProjectNew
;
})();
}).
call
(
window
);
app/assets/javascripts/project_select.js
View file @
88d29775
...
@@ -2,9 +2,7 @@
...
@@ -2,9 +2,7 @@
import
Api
from
'./api'
;
import
Api
from
'./api'
;
import
ProjectSelectComboButton
from
'./project_select_combo_button'
;
import
ProjectSelectComboButton
from
'./project_select_combo_button'
;
(
function
()
{
export
default
function
projectSelect
()
{
this
.
ProjectSelect
=
(
function
()
{
function
ProjectSelect
()
{
$
(
'.ajax-project-select'
).
each
(
function
(
i
,
select
)
{
$
(
'.ajax-project-select'
).
each
(
function
(
i
,
select
)
{
var
placeholder
;
var
placeholder
;
const
simpleFilter
=
$
(
select
).
data
(
'simple-filter'
)
||
false
;
const
simpleFilter
=
$
(
select
).
data
(
'simple-filter'
)
||
false
;
...
@@ -73,8 +71,4 @@ import ProjectSelectComboButton from './project_select_combo_button';
...
@@ -73,8 +71,4 @@ import ProjectSelectComboButton from './project_select_combo_button';
if
(
simpleFilter
)
return
select
;
if
(
simpleFilter
)
return
select
;
return
new
ProjectSelectComboButton
(
select
);
return
new
ProjectSelectComboButton
(
select
);
});
});
}
}
return
ProjectSelect
;
})();
}).
call
(
window
);
app/assets/javascripts/project_show.js
deleted
100644 → 0
View file @
2dff3776
/* eslint-disable func-names, space-before-function-paren, wrap-iife */
(
function
()
{
this
.
ProjectShow
=
(
function
()
{
function
ProjectShow
()
{}
return
ProjectShow
;
})();
}).
call
(
window
);
// I kept class for future
app/assets/javascripts/project_variables.js
View file @
88d29775
(()
=>
{
const
HIDDEN_VALUE_TEXT
=
'******'
;
class
ProjectVariables
{
const
HIDDEN_VALUE_TEXT
=
'******'
;
export
default
class
ProjectVariables
{
constructor
()
{
constructor
()
{
this
.
$revealBtn
=
$
(
'.js-btn-toggle-reveal-values'
);
this
.
$revealBtn
=
$
(
'.js-btn-toggle-reveal-values'
);
this
.
$revealBtn
.
on
(
'click'
,
this
.
toggleRevealState
.
bind
(
this
));
this
.
$revealBtn
.
on
(
'click'
,
this
.
toggleRevealState
.
bind
(
this
));
...
@@ -36,8 +36,4 @@
...
@@ -36,8 +36,4 @@
this
.
$revealBtn
.
text
(
newAction
);
this
.
$revealBtn
.
text
(
newAction
);
}
}
}
}
window
.
gl
=
window
.
gl
||
{};
window
.
gl
.
ProjectVariables
=
ProjectVariables
;
})();
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