mirror of
https://github.com/wahyd4/gitlabhq.git
synced 2026-08-17 08:36:06 +10:00
1. Fix double bottom border if pagination 2. Fix broken search on forks page 4. Remove duplicate js logic 4. Remove unused show all link 5. Remove duplicate “no project” message in different views After this merge request you can easily render shared projects template with all necessary html/js included to make searchable list with pagination. All you need to provide is controller that returns projects list with seach nad pagination and render html form with project-filter-form id and text field with filter_projects name. Signed-off-by: Dmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com>
157 lines
5.1 KiB
CoffeeScript
157 lines
5.1 KiB
CoffeeScript
$ ->
|
|
new Dispatcher()
|
|
|
|
class Dispatcher
|
|
constructor: () ->
|
|
@initSearch()
|
|
@initPageScripts()
|
|
|
|
initPageScripts: ->
|
|
page = $('body').attr('data-page')
|
|
|
|
unless page
|
|
return false
|
|
|
|
path = page.split(':')
|
|
shortcut_handler = null
|
|
|
|
switch page
|
|
when 'projects:issues:index'
|
|
Issues.init()
|
|
shortcut_handler = new ShortcutsNavigation()
|
|
when 'projects:issues:show'
|
|
new Issue()
|
|
shortcut_handler = new ShortcutsIssuable()
|
|
new ZenMode()
|
|
when 'projects:milestones:show'
|
|
new Milestone()
|
|
when 'projects:milestones:new', 'projects:milestones:edit'
|
|
new ZenMode()
|
|
new DropzoneInput($('.milestone-form'))
|
|
when 'groups:milestones:new'
|
|
new ZenMode()
|
|
when 'projects:compare:show'
|
|
new Diff()
|
|
when 'projects:issues:new','projects:issues:edit'
|
|
shortcut_handler = new ShortcutsNavigation()
|
|
new DropzoneInput($('.issue-form'))
|
|
new IssuableForm($('.issue-form'))
|
|
when 'projects:merge_requests:new', 'projects:merge_requests:edit'
|
|
new Diff()
|
|
shortcut_handler = new ShortcutsNavigation()
|
|
new DropzoneInput($('.merge-request-form'))
|
|
new IssuableForm($('.merge-request-form'))
|
|
when 'projects:tags:new'
|
|
new ZenMode()
|
|
new DropzoneInput($('.tag-form'))
|
|
when 'projects:releases:edit'
|
|
new ZenMode()
|
|
new DropzoneInput($('.release-form'))
|
|
when 'projects:merge_requests:show'
|
|
new Diff()
|
|
shortcut_handler = new ShortcutsIssuable(true)
|
|
new ZenMode()
|
|
when "projects:merge_requests:diffs"
|
|
new Diff()
|
|
new ZenMode()
|
|
when 'projects:merge_requests:index'
|
|
shortcut_handler = new ShortcutsNavigation()
|
|
MergeRequests.init()
|
|
when 'dashboard:activity'
|
|
new Activities()
|
|
when 'dashboard:projects:starred'
|
|
new Activities()
|
|
when 'projects:commit:show'
|
|
new Commit()
|
|
new Diff()
|
|
new ZenMode()
|
|
shortcut_handler = new ShortcutsNavigation()
|
|
when 'projects:commits:show'
|
|
shortcut_handler = new ShortcutsNavigation()
|
|
when 'projects:activity'
|
|
shortcut_handler = new ShortcutsNavigation()
|
|
when 'projects:show'
|
|
shortcut_handler = new ShortcutsNavigation()
|
|
|
|
new TreeView() if $('#tree-slider').length
|
|
when 'groups:show'
|
|
new Activities()
|
|
shortcut_handler = new ShortcutsNavigation()
|
|
when 'groups:group_members:index'
|
|
new GroupMembers()
|
|
new UsersSelect()
|
|
when 'projects:project_members:index'
|
|
new ProjectMembers()
|
|
new UsersSelect()
|
|
when 'groups:new', 'groups:edit', 'admin:groups:edit', 'admin:groups:new'
|
|
new GroupAvatar()
|
|
when 'projects:tree:show'
|
|
shortcut_handler = new ShortcutsNavigation()
|
|
new TreeView()
|
|
when 'projects:find_file:show'
|
|
shortcut_handler = true
|
|
when 'projects:blob:show', 'projects:blame:show'
|
|
new LineHighlighter()
|
|
shortcut_handler = new ShortcutsNavigation()
|
|
when 'projects:labels:new', 'projects:labels:edit'
|
|
new Labels()
|
|
when 'projects:network:show'
|
|
# Ensure we don't create a particular shortcut handler here. This is
|
|
# already created, where the network graph is created.
|
|
shortcut_handler = true
|
|
when 'projects:forks:new'
|
|
new ProjectFork()
|
|
when 'projects:artifacts:browse'
|
|
new BuildArtifacts()
|
|
|
|
switch path.first()
|
|
when 'admin'
|
|
new Admin()
|
|
switch path[1]
|
|
when 'groups'
|
|
new UsersSelect()
|
|
when 'projects'
|
|
new NamespaceSelect()
|
|
when 'dashboard'
|
|
shortcut_handler = new ShortcutsDashboardNavigation()
|
|
when 'profiles'
|
|
new Profile()
|
|
when 'projects'
|
|
new Project()
|
|
new ProjectAvatar()
|
|
switch path[1]
|
|
when 'compare'
|
|
shortcut_handler = new ShortcutsNavigation()
|
|
when 'edit'
|
|
shortcut_handler = new ShortcutsNavigation()
|
|
new ProjectNew()
|
|
when 'new'
|
|
new ProjectNew()
|
|
when 'show'
|
|
new ProjectShow()
|
|
when 'wikis'
|
|
new Wikis()
|
|
shortcut_handler = new ShortcutsNavigation()
|
|
new ZenMode()
|
|
new DropzoneInput($('.wiki-form'))
|
|
when 'snippets'
|
|
shortcut_handler = new ShortcutsNavigation()
|
|
new ZenMode() if path[2] == 'show'
|
|
when 'labels', 'graphs'
|
|
shortcut_handler = new ShortcutsNavigation()
|
|
when 'project_members', 'deploy_keys', 'hooks', 'services', 'protected_branches'
|
|
shortcut_handler = new ShortcutsNavigation()
|
|
|
|
|
|
# If we haven't installed a custom shortcut handler, install the default one
|
|
if not shortcut_handler
|
|
new Shortcuts()
|
|
|
|
initSearch: ->
|
|
opts = $('.search-autocomplete-opts')
|
|
path = opts.data('autocomplete-path')
|
|
project_id = opts.data('autocomplete-project-id')
|
|
project_ref = opts.data('autocomplete-project-ref')
|
|
|
|
new SearchAutocomplete(path, project_id, project_ref)
|