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
00f2dce9
Commit
00f2dce9
authored
Jan 09, 2018
by
Jacob Schatz
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Patches changes from ce to ee for explore-dispatcher-refactor.
parent
e8e3fd91
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
32 additions
and
17 deletions
+32
-17
app/assets/javascripts/dispatcher.js
app/assets/javascripts/dispatcher.js
+13
-17
app/assets/javascripts/pages/explore/groups/index.js
app/assets/javascripts/pages/explore/groups/index.js
+14
-0
app/assets/javascripts/pages/explore/projects/index.js
app/assets/javascripts/pages/explore/projects/index.js
+5
-0
No files found.
app/assets/javascripts/dispatcher.js
View file @
00f2dce9
...
...
@@ -39,12 +39,10 @@ import BindInOut from './behaviors/bind_in_out';
import
SecretValues
from
'
./behaviors/secret_values
'
;
import
DeleteModal
from
'
./branches/branches_delete_modal
'
;
import
Group
from
'
./group
'
;
import
GroupsList
from
'
./groups_list
'
;
import
ProjectsList
from
'
./projects_list
'
;
import
setupProjectEdit
from
'
./project_edit
'
;
import
MiniPipelineGraph
from
'
./mini_pipeline_graph_dropdown
'
;
import
BlobLinePermalinkUpdater
from
'
./blob/blob_line_permalink_updater
'
;
import
Landing
from
'
./landing
'
;
import
BlobForkSuggestion
from
'
./blob/blob_fork_suggestion
'
;
import
UserCallout
from
'
./user_callout
'
;
import
ShortcutsWiki
from
'
./shortcuts_wiki
'
;
...
...
@@ -242,24 +240,22 @@ import initLDAPGroupsSelect from 'ee/ldap_groups_select'; // eslint-disable-line
case
'
dashboard:todos:index
'
:
new
Todos
();
break
;
case
'
dashboard:projects:index
'
:
case
'
dashboard:projects:starred
'
:
case
'
explore:projects:index
'
:
case
'
explore:projects:trending
'
:
case
'
explore:projects:starred
'
:
import
(
'
./pages/explore/projects
'
)
.
then
(
callDefault
)
.
catch
(
fail
);
break
;
case
'
dashboard:projects:index
'
:
case
'
dashboard:projects:starred
'
:
case
'
admin:projects:index
'
:
new
ProjectsList
();
break
;
case
'
explore:groups:index
'
:
new
GroupsList
();
const
landingElement
=
document
.
querySelector
(
'
.js-explore-groups-landing
'
);
if
(
!
landingElement
)
break
;
const
exploreGroupsLanding
=
new
Landing
(
landingElement
,
landingElement
.
querySelector
(
'
.dismiss-button
'
),
'
explore_groups_landing_dismissed
'
,
);
exploreGroupsLanding
.
toggle
();
import
(
'
./pages/explore/groups
'
)
.
then
(
callDefault
)
.
catch
(
fail
);
break
;
case
'
projects:milestones:new
'
:
case
'
projects:milestones:edit
'
:
...
...
@@ -552,8 +548,8 @@ import initLDAPGroupsSelect from 'ee/ldap_groups_select'; // eslint-disable-line
break
;
case
'
projects:forks:new
'
:
import
(
/* webpackChunkName: 'project_fork' */
'
./project_fork
'
)
.
then
(
fork
=>
fork
.
default
()
)
.
catch
(
()
=>
{}
);
.
then
(
callDefault
)
.
catch
(
fail
);
break
;
case
'
projects:artifacts:browse
'
:
new
ShortcutsNavigation
();
...
...
@@ -735,8 +731,8 @@ import initLDAPGroupsSelect from 'ee/ldap_groups_select'; // eslint-disable-line
new
ProjectNew
();
new
ApproversSelect
();
import
(
/* webpackChunkName: 'project_permissions' */
'
./projects/permissions
'
)
.
then
(
permissions
=>
permissions
.
default
()
)
.
catch
(
()
=>
{}
);
.
then
(
callDefault
)
.
catch
(
fail
);
break
;
case
'
new
'
:
new
ProjectNew
();
...
...
app/assets/javascripts/pages/explore/groups/index.js
0 → 100644
View file @
00f2dce9
import
GroupsList
from
'
~/groups_list
'
;
import
Landing
from
'
~/landing
'
;
export
default
function
()
{
new
GroupsList
();
// eslint-disable-line no-new
const
landingElement
=
document
.
querySelector
(
'
.js-explore-groups-landing
'
);
if
(
!
landingElement
)
return
;
const
exploreGroupsLanding
=
new
Landing
(
landingElement
,
landingElement
.
querySelector
(
'
.dismiss-button
'
),
'
explore_groups_landing_dismissed
'
,
);
exploreGroupsLanding
.
toggle
();
}
app/assets/javascripts/pages/explore/projects/index.js
0 → 100644
View file @
00f2dce9
import
ProjectsList
from
'
~/projects_list
'
;
export
default
function
()
{
new
ProjectsList
();
// eslint-disable-line no-new
}
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