gitlab-org--gitlab-foss/app/assets/javascripts/dispatcher.js

683 lines
24 KiB
JavaScript
Raw Normal View History

/* 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 */
/* global ProjectSelect */
2017-10-26 18:03:48 +00:00
import IssuableIndex from './issuable_index';
/* global Milestone */
import IssuableForm from './issuable_form';
/* global LabelsSelect */
/* global MilestoneSelect */
/* global NewBranchForm */
/* global NotificationsForm */
/* global NotificationsDropdown */
import groupAvatar from './group_avatar';
import GroupLabelSubscription from './group_label_subscription';
/* global LineHighlighter */
import BuildArtifacts from './build_artifacts';
import CILintEditor from './ci_lint_editor';
import groupsSelect from './groups_select';
/* global Search */
/* global Admin */
/* global NamespaceSelects */
2017-08-01 08:50:59 +00:00
/* global NewCommitForm */
/* global NewBranchForm */
/* global Project */
/* global ProjectAvatar */
2017-07-27 08:30:14 +00:00
/* global MergeRequest */
/* global Compare */
/* global CompareAutocomplete */
2017-08-01 08:50:59 +00:00
/* global ProjectFindFile */
/* global ProjectNew */
/* global ProjectShow */
2017-08-01 08:50:59 +00:00
/* global ProjectImport */
import Labels from './labels';
import LabelManager from './label_manager';
/* global Sidebar */
import CommitsList from './commits';
2017-03-01 19:54:04 +00:00
import Issue from './issue';
2017-03-06 13:06:33 +00:00
import BindInOut from './behaviors/bind_in_out';
import DeleteModal from './branches/branches_delete_modal';
import Group from './group';
2017-03-02 11:05:48 +00:00
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';
2017-05-02 08:05:43 +00:00
import Landing from './landing';
2017-04-06 16:36:38 +00:00
import BlobForkSuggestion from './blob/blob_fork_suggestion';
2017-03-22 08:26:12 +00:00
import UserCallout from './user_callout';
2017-03-29 11:47:34 +00:00
import ShortcutsWiki from './shortcuts_wiki';
import Pipelines from './pipelines';
2017-04-13 17:05:09 +00:00
import BlobViewer from './blob/viewer/index';
import AutoWidthDropdownSelect from './issuable/auto_width_dropdown_select';
2017-05-12 08:15:28 +00:00
import UsersSelect from './users_select';
import RefSelectDropdown from './ref_select_dropdown';
import GfmAutoComplete from './gfm_auto_complete';
import ShortcutsBlob from './shortcuts_blob';
import SigninTabsMemoizer from './signin_tabs_memoizer';
import Star from './star';
import Todos from './todos';
import TreeView from './tree';
import UsagePing from './usage_ping';
import UsernameValidator from './username_validator';
import VersionCheckImage from './version_check_image';
import Wikis from './wikis';
2017-06-30 21:37:31 +00:00
import ZenMode from './zen_mode';
import initSettingsPanels from './settings_panels';
2017-06-16 15:38:45 +00:00
import initExperimentalFlags from './experimental_flags';
import OAuthRememberMe from './oauth_remember_me';
import PerformanceBar from './performance_bar';
2017-10-13 09:44:03 +00:00
import initBroadcastMessagesForm from './broadcast_message';
import initNotes from './init_notes';
import initLegacyFilters from './init_legacy_filters';
import initIssuableSidebar from './init_issuable_sidebar';
import initProjectVisibilitySelector from './project_visibility';
2017-07-25 07:40:23 +00:00
import GpgBadges from './gpg_badges';
2017-08-06 14:42:25 +00:00
import UserFeatureHelper from './helpers/user_feature_helper';
import initChangesDropdown from './init_changes_dropdown';
import NewGroupChild from './groups/new_group_child';
2017-10-05 14:57:49 +00:00
import AbuseReports from './abuse_reports';
import { ajaxGet, convertPermissionToBoolean } from './lib/utils/common_utils';
import AjaxLoadingSpinner from './ajax_loading_spinner';
import GlFieldErrors from './gl_field_errors';
import GLForm from './gl_form';
import Shortcuts from './shortcuts';
import ShortcutsNavigation from './shortcuts_navigation';
import ShortcutsFindFile from './shortcuts_find_file';
import ShortcutsIssuable from './shortcuts_issuable';
2017-10-09 22:21:56 +00:00
import U2FAuthenticate from './u2f/authenticate';
import Members from './members';
import memberExpirationDate from './member_expiration_date';
2017-10-18 11:31:01 +00:00
import DueDateSelectors from './due_date_select';
2017-10-19 09:46:43 +00:00
import Diff from './diff';
2016-07-24 20:45:11 +00:00
(function() {
var Dispatcher;
Dispatcher = (function() {
function Dispatcher() {
this.initSearch();
this.initFieldErrors();
2016-07-24 20:45:11 +00:00
this.initPageScripts();
}
Dispatcher.prototype.initPageScripts = function() {
var path, shortcut_handler, fileBlobPermalinkUrlElement, fileBlobPermalinkUrl;
const page = $('body').attr('data-page');
2016-07-24 20:45:11 +00:00
if (!page) {
return false;
}
2016-07-24 20:45:11 +00:00
path = page.split(':');
shortcut_handler = null;
2017-08-14 10:35:58 +00:00
$('.js-gfm-input:not(.js-vue-textarea)').each((i, el) => {
const gfm = new GfmAutoComplete(gl.GfmAutoComplete && gl.GfmAutoComplete.dataSources);
const enableGFM = convertPermissionToBoolean(el.dataset.supportsAutocomplete);
gfm.setup($(el), {
emojis: true,
members: enableGFM,
issues: enableGFM,
milestones: enableGFM,
mergeRequests: enableGFM,
labels: enableGFM,
});
});
function initBlob() {
new LineHighlighter();
new BlobLinePermalinkUpdater(
document.querySelector('#blob-content-holder'),
'.diff-line-num[data-line-number]',
document.querySelectorAll('.js-data-file-blob-permalink-url, .js-blob-blame-link'),
);
shortcut_handler = new ShortcutsNavigation();
fileBlobPermalinkUrlElement = document.querySelector('.js-data-file-blob-permalink-url');
fileBlobPermalinkUrl = fileBlobPermalinkUrlElement && fileBlobPermalinkUrlElement.getAttribute('href');
new ShortcutsBlob({
skipResetBindings: true,
fileBlobPermalinkUrl,
});
2017-04-06 16:36:38 +00:00
new BlobForkSuggestion({
openButtons: document.querySelectorAll('.js-edit-blob-link-fork-toggler'),
forkButtons: document.querySelectorAll('.js-fork-suggestion-button'),
cancelButtons: document.querySelectorAll('.js-cancel-fork-suggestion-button'),
suggestionSections: document.querySelectorAll('.js-file-fork-suggestion-section'),
actionTextPieces: document.querySelectorAll('.js-file-fork-suggestion-section-action'),
})
.init();
}
const filteredSearchEnabled = gl.FilteredSearchManager && document.querySelector('.filtered-search');
2016-07-24 20:45:11 +00:00
switch (page) {
2017-06-16 15:38:45 +00:00
case 'profiles:preferences:show':
initExperimentalFlags();
break;
case 'sessions:new':
new UsernameValidator();
new SigninTabsMemoizer();
new OAuthRememberMe({ container: $(".omniauth-container") }).bindEvents();
break;
case 'projects:boards:show':
case 'projects:boards:index':
shortcut_handler = new ShortcutsNavigation();
2017-05-12 08:15:28 +00:00
new UsersSelect();
break;
case 'projects:merge_requests:index':
2016-07-24 20:45:11 +00:00
case 'projects:issues:index':
if (filteredSearchEnabled) {
const filteredSearchManager = new gl.FilteredSearchManager(page === 'projects:issues:index' ? 'issues' : 'merge_requests');
filteredSearchManager.setup();
2016-11-04 21:27:11 +00:00
}
const pagePrefix = page === 'projects:merge_requests:index' ? 'merge_request_' : 'issue_';
2017-10-26 18:03:48 +00:00
new IssuableIndex(pagePrefix);
2016-07-24 20:45:11 +00:00
shortcut_handler = new ShortcutsNavigation();
2017-05-12 08:15:28 +00:00
new UsersSelect();
2016-07-24 20:45:11 +00:00
break;
case 'projects:issues:show':
new Issue();
shortcut_handler = new ShortcutsIssuable();
new ZenMode();
2017-07-25 10:56:41 +00:00
initIssuableSidebar();
2016-07-24 20:45:11 +00:00
break;
2017-07-03 10:58:06 +00:00
case 'dashboard:milestones:index':
new ProjectSelect();
break;
2016-07-24 20:45:11 +00:00
case 'projects:milestones:show':
case 'groups:milestones:show':
case 'dashboard:milestones:show':
new Milestone();
new Sidebar();
2016-07-24 20:45:11 +00:00
break;
2017-07-25 10:56:41 +00:00
case 'dashboard:issues':
case 'dashboard:merge_requests':
new ProjectSelect();
2017-07-25 10:56:41 +00:00
initLegacyFilters();
2017-05-12 08:15:28 +00:00
break;
case 'groups:issues':
case 'groups:merge_requests':
if (filteredSearchEnabled) {
const filteredSearchManager = new gl.FilteredSearchManager(page === 'groups:issues' ? 'issues' : 'merge_requests');
filteredSearchManager.setup();
}
new ProjectSelect();
break;
2016-07-24 20:45:11 +00:00
case 'dashboard:todos:index':
new Todos();
2016-07-24 20:45:11 +00:00
break;
case 'dashboard:projects:index':
case 'dashboard:projects:starred':
case 'explore:projects:index':
case 'explore:projects:trending':
case 'explore:projects:starred':
case 'admin:projects:index':
new ProjectsList();
break;
2017-03-02 11:05:48 +00:00
case 'explore:groups:index':
new GroupsList();
2017-05-02 08:05:43 +00:00
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();
2017-03-02 11:05:48 +00:00
break;
2016-07-24 20:45:11 +00:00
case 'projects:milestones:new':
case 'projects:milestones:edit':
2017-01-04 13:16:14 +00:00
case 'projects:milestones:update':
new ZenMode();
new DueDateSelectors();
new GLForm($('.milestone-form'), true);
break;
case 'groups:milestones:new':
case 'groups:milestones:edit':
case 'groups:milestones:update':
2016-07-24 20:45:11 +00:00
new ZenMode();
2017-10-18 11:31:01 +00:00
new DueDateSelectors();
new GLForm($('.milestone-form'), false);
2016-07-24 20:45:11 +00:00
break;
case 'projects:compare:show':
2017-10-19 09:46:43 +00:00
new Diff();
const paddingTop = 16;
initChangesDropdown(document.querySelector('.navbar-gitlab').offsetHeight - paddingTop);
2016-07-24 20:45:11 +00:00
break;
2017-08-01 08:50:59 +00:00
case 'projects:branches:new':
case 'projects:branches:create':
new NewBranchForm($('.js-create-branch-form'), JSON.parse(document.getElementById('availableRefs').innerHTML));
break;
case 'projects:branches:index':
AjaxLoadingSpinner.init();
new DeleteModal();
break;
2016-07-24 20:45:11 +00:00
case 'projects:issues:new':
case 'projects:issues:edit':
shortcut_handler = new ShortcutsNavigation();
new GLForm($('.issue-form'), true);
2016-07-24 20:45:11 +00:00
new IssuableForm($('.issue-form'));
new LabelsSelect();
new MilestoneSelect();
new gl.IssuableTemplateSelectors();
2016-07-24 20:45:11 +00:00
break;
2017-06-13 22:12:31 +00:00
case 'projects:merge_requests:creations:new':
2017-07-27 08:30:14 +00:00
const mrNewCompareNode = document.querySelector('.js-merge-request-new-compare');
if (mrNewCompareNode) {
new Compare({
targetProjectUrl: mrNewCompareNode.dataset.targetProjectUrl,
sourceBranchUrl: mrNewCompareNode.dataset.sourceBranchUrl,
targetBranchUrl: mrNewCompareNode.dataset.targetBranchUrl,
});
} else {
const mrNewSubmitNode = document.querySelector('.js-merge-request-new-submit');
new MergeRequest({
action: mrNewSubmitNode.dataset.mrSubmitAction,
});
}
2017-06-13 22:12:31 +00:00
case 'projects:merge_requests:creations:diffs':
2016-07-24 20:45:11 +00:00
case 'projects:merge_requests:edit':
2017-10-19 09:46:43 +00:00
new Diff();
2016-07-24 20:45:11 +00:00
shortcut_handler = new ShortcutsNavigation();
new GLForm($('.merge-request-form'), true);
2016-07-24 20:45:11 +00:00
new IssuableForm($('.merge-request-form'));
new LabelsSelect();
new MilestoneSelect();
new gl.IssuableTemplateSelectors();
new AutoWidthDropdownSelect($('.js-target-branch-select')).init();
2016-07-24 20:45:11 +00:00
break;
case 'projects:tags:new':
new ZenMode();
new GLForm($('.tag-form'), true);
new RefSelectDropdown($('.js-branch-select'));
2016-07-24 20:45:11 +00:00
break;
2017-07-25 10:56:41 +00:00
case 'projects:snippets:show':
initNotes();
break;
2017-05-03 15:26:49 +00:00
case 'projects:snippets:new':
case 'projects:snippets:edit':
case 'projects:snippets:create':
case 'projects:snippets:update':
new GLForm($('.snippet-form'), true);
break;
2017-05-03 15:26:49 +00:00
case 'snippets:new':
case 'snippets:edit':
case 'snippets:create':
case 'snippets:update':
new GLForm($('.snippet-form'), false);
2017-05-03 15:26:49 +00:00
break;
2016-07-24 20:45:11 +00:00
case 'projects:releases:edit':
new ZenMode();
new GLForm($('.release-form'), true);
2016-07-24 20:45:11 +00:00
break;
case 'projects:merge_requests:show':
2017-10-19 09:46:43 +00:00
new Diff();
2016-07-24 20:45:11 +00:00
shortcut_handler = new ShortcutsIssuable(true);
new ZenMode();
2017-07-25 10:56:41 +00:00
initIssuableSidebar();
initNotes();
2017-07-27 08:30:14 +00:00
const mrShowNode = document.querySelector('.merge-request');
window.mergeRequest = new MergeRequest({
action: mrShowNode.dataset.mrAction,
});
2016-07-24 20:45:11 +00:00
break;
case 'dashboard:activity':
new gl.Activities();
2016-07-24 20:45:11 +00:00
break;
case 'projects:commit:show':
2017-10-19 09:46:43 +00:00
new Diff();
2016-07-24 20:45:11 +00:00
new ZenMode();
shortcut_handler = new ShortcutsNavigation();
new MiniPipelineGraph({
container: '.js-commit-pipeline-graph',
}).bindEvents();
2017-07-25 10:56:41 +00:00
initNotes();
initChangesDropdown();
2017-08-01 08:50:59 +00:00
$('.commit-info.branches').load(document.querySelector('.js-commit-box').dataset.commitPath);
2016-07-24 20:45:11 +00:00
break;
case 'projects:commit:pipelines':
new MiniPipelineGraph({
container: '.js-commit-pipeline-graph',
}).bindEvents();
2017-08-01 08:50:59 +00:00
$('.commit-info.branches').load(document.querySelector('.js-commit-box').dataset.commitPath);
break;
2017-08-01 08:50:59 +00:00
case 'projects:activity':
new gl.Activities();
2017-07-25 07:40:23 +00:00
shortcut_handler = new ShortcutsNavigation();
break;
2017-08-01 08:50:59 +00:00
case 'projects:commits:show':
CommitsList.init(document.querySelector('.js-project-commits-show').dataset.commitsLimit);
2016-07-24 20:45:11 +00:00
shortcut_handler = new ShortcutsNavigation();
2017-08-01 08:50:59 +00:00
GpgBadges.fetch();
2016-07-24 20:45:11 +00:00
break;
case 'projects:show':
shortcut_handler = new ShortcutsNavigation();
new NotificationsForm();
2017-10-16 16:16:42 +00:00
new UserCallout({
setCalloutPerProject: true,
className: 'js-autodevops-banner',
});
if ($('#tree-slider').length) new TreeView();
if ($('.blob-viewer').length) new BlobViewer();
if ($('.project-show-activity').length) new gl.Activities();
$('#tree-slider').waitForImages(function() {
2017-09-06 08:01:01 +00:00
ajaxGet(document.querySelector('.js-tree-content').dataset.logsPath);
});
2016-07-24 20:45:11 +00:00
break;
case 'projects:edit':
setupProjectEdit();
// Initialize expandable settings panels
initSettingsPanels();
break;
2017-08-01 08:50:59 +00:00
case 'projects:imports:show':
new ProjectImport();
break;
case 'projects:pipelines:new':
new NewBranchForm($('.js-new-pipeline-form'));
break;
2016-12-21 11:21:11 +00:00
case 'projects:pipelines:builds':
case 'projects:pipelines:failures':
2016-09-29 21:24:37 +00:00
case 'projects:pipelines:show':
2016-11-29 10:35:53 +00:00
const { controllerAction } = document.querySelector('.js-pipeline-container').dataset;
const pipelineStatusUrl = `${document.querySelector('.js-pipeline-tab-link a').getAttribute('href')}/status.json`;
new Pipelines({
initTabs: true,
pipelineStatusUrl,
tabsOptions: {
action: controllerAction,
defaultAction: 'pipelines',
parentEl: '.pipelines-tabs',
},
});
2016-09-29 21:24:37 +00:00
break;
2016-07-24 20:45:11 +00:00
case 'groups:activity':
new gl.Activities();
2016-07-24 20:45:11 +00:00
break;
case 'groups:show':
const newGroupChildWrapper = document.querySelector('.js-new-project-subgroup');
2016-07-24 20:45:11 +00:00
shortcut_handler = new ShortcutsNavigation();
new NotificationsForm();
new NotificationsDropdown();
new ProjectsList();
if (newGroupChildWrapper) {
new NewGroupChild(newGroupChildWrapper);
}
2016-07-24 20:45:11 +00:00
break;
case 'groups:group_members:index':
memberExpirationDate();
new Members();
2016-07-24 20:45:11 +00:00
new UsersSelect();
break;
case 'projects:project_members:index':
memberExpirationDate('.js-access-expiration-date-groups');
groupsSelect();
memberExpirationDate();
new Members();
2016-07-24 20:45:11 +00:00
new UsersSelect();
break;
case 'groups:new':
2017-02-28 16:32:30 +00:00
case 'admin:groups:new':
case 'groups:create':
case 'admin:groups:create':
2017-03-03 08:01:54 +00:00
BindInOut.initAll();
new Group();
groupAvatar();
break;
2016-07-24 20:45:11 +00:00
case 'groups:edit':
case 'admin:groups:edit':
groupAvatar();
2016-07-24 20:45:11 +00:00
break;
case 'projects:tree:show':
shortcut_handler = new ShortcutsNavigation();
if (UserFeatureHelper.isNewRepoEnabled()) break;
new TreeView();
new BlobViewer();
2017-08-01 08:50:59 +00:00
new NewCommitForm($('.js-create-dir-form'));
2017-07-25 10:48:45 +00:00
$('#tree-slider').waitForImages(function() {
2017-09-06 08:01:01 +00:00
ajaxGet(document.querySelector('.js-tree-content').dataset.logsPath);
2017-07-25 10:48:45 +00:00
});
break;
2016-07-24 20:45:11 +00:00
case 'projects:find_file:show':
2017-08-01 08:50:59 +00:00
const findElement = document.querySelector('.js-file-finder');
const projectFindFile = new ProjectFindFile($(".file-finder-holder"), {
url: findElement.dataset.fileFindUrl,
treeUrl: findElement.dataset.findTreeUrl,
blobUrlTemplate: findElement.dataset.blobUrlTemplate,
});
new ShortcutsFindFile(projectFindFile);
2016-07-24 20:45:11 +00:00
shortcut_handler = true;
break;
case 'projects:blob:show':
if (UserFeatureHelper.isNewRepoEnabled()) break;
new BlobViewer();
initBlob();
break;
2016-07-24 20:45:11 +00:00
case 'projects:blame:show':
initBlob();
2016-07-24 20:45:11 +00:00
break;
2016-09-19 19:49:08 +00:00
case 'groups:labels:new':
case 'groups:labels:edit':
2016-07-24 20:45:11 +00:00
case 'projects:labels:new':
case 'projects:labels:edit':
new Labels();
break;
2017-07-25 10:56:41 +00:00
case 'groups:labels:index':
2016-07-24 20:45:11 +00:00
case 'projects:labels:index':
if ($('.prioritized-labels').length) {
new LabelManager();
2016-07-24 20:45:11 +00:00
}
$('.label-subscription').each((i, el) => {
const $el = $(el);
if ($el.find('.dropdown-group-label').length) {
new GroupLabelSubscription($el);
} else {
new gl.ProjectLabelSubscription($el);
}
});
2016-07-24 20:45:11 +00:00
break;
case 'projects:network:show':
// Ensure we don't create a particular shortcut handler here. This is
// already created, where the network graph is created.
2016-07-24 20:45:11 +00:00
shortcut_handler = true;
break;
case 'projects:forks:new':
import(/* webpackChunkName: 'project_fork' */ './project_fork')
.then(fork => fork.default())
.catch(() => {});
2016-07-24 20:45:11 +00:00
break;
case 'projects:artifacts:browse':
new ShortcutsNavigation();
2016-07-24 20:45:11 +00:00
new BuildArtifacts();
break;
case 'projects:artifacts:file':
new ShortcutsNavigation();
new BlobViewer();
break;
case 'help:index':
VersionCheckImage.bindErrorEvent($('img.js-version-status-badge'));
break;
2016-07-24 20:45:11 +00:00
case 'search:show':
new Search();
break;
2017-06-13 22:12:31 +00:00
case 'projects:settings:repository:show':
// Initialize expandable settings panels
initSettingsPanels();
break;
2017-06-13 22:12:31 +00:00
case 'projects:settings:ci_cd:show':
// Initialize expandable settings panels
initSettingsPanels();
Basic BE change Fix static-snalysis Move the precedence of group secure variable before project secure variable. Allow project_id to be null. Separate Ci::VariableProject and Ci::VariableGroup Add the forgotton files Add migration file to update type of ci_variables Fix form_for fpr VariableProject Fix test Change the table structure according to the yorik advice Add necessary migration files. Remove unnecessary migration spec. Revert safe_model_attributes.yml Fix models Fix spec Avoid self.variable. Use becomes for correct routing. Use unique index on group_id and key Add null: false for t.timestamps Fix schema version Rename VariableProject and VariableGroup to ProjectVariable and GroupVariable Rename the rest of them Add the rest of files Basic BE change Fix static-snalysis Move the precedence of group secure variable before project secure variable. Allow project_id to be null. Separate Ci::VariableProject and Ci::VariableGroup Add the forgotton files Add migration file to update type of ci_variables Fix form_for fpr VariableProject Fix test Change the table structure according to the yorik advice Add necessary migration files. Remove unnecessary migration spec. Revert safe_model_attributes.yml Fix models Fix spec Avoid self.variable. Use becomes for correct routing. Use unique index on group_id and key Add null: false for t.timestamps Fix schema version Rename VariableProject and VariableGroup to ProjectVariable and GroupVariable Rename the rest of them Add the rest of files Implement CURD Rename codes related to VariableGroup and VariableProject FE part Remove unneccesary changes Make Fe code up-to-date Add protected flag to migration file Protected group variables essential package Update schema Improve doc Fix logic and spec for models Fix logic and spec for controllers Fix logic and spec for views(pre feature) Add feature spec Fixed bugs. placeholder. reveal button. doc. Add changelog Remove unnecessary comment godfat nice catches Improve secret_variables_for arctecture Fix spec Fix StaticAnlysys & path_regex spec Revert "Improve secret_variables_for arctecture" This reverts commit c3216ca212322ecf6ca534cb12ce75811a4e77f1. Use ayufan suggestion for secret_variables_for Use find instead of find_by Fix spec message for variable is invalid Fix spec remove variable.group_id = group.id godffat spec nitpicks Use include Gitlab::Routing.url_helpers for presenter spec
2017-05-03 18:51:55 +00:00
case 'groups:settings:ci_cd:show':
new gl.ProjectVariables();
break;
case 'ci:lints:create':
case 'ci:lints:show':
new CILintEditor();
break;
case 'users:show':
new UserCallout();
break;
case 'admin:conversational_development_index:show':
new UserCallout();
break;
2017-04-13 16:47:28 +00:00
case 'snippets:show':
new LineHighlighter();
new BlobViewer();
2017-07-25 10:56:41 +00:00
initNotes();
2017-04-13 16:47:28 +00:00
break;
2017-05-12 08:15:28 +00:00
case 'import:fogbugz:new_user_map':
new UsersSelect();
break;
2017-07-25 10:56:41 +00:00
case 'profiles:personal_access_tokens:index':
case 'admin:impersonation_tokens:index':
2017-10-18 11:31:01 +00:00
new DueDateSelectors();
2017-07-25 10:56:41 +00:00
break;
case 'projects:clusters:show':
import(/* webpackChunkName: "clusters" */ './clusters')
.then(cluster => new cluster.default()) // eslint-disable-line new-cap
.catch(() => {});
break;
2016-07-24 20:45:11 +00:00
}
switch (path[0]) {
case 'sessions':
case 'omniauth_callbacks':
if (!gon.u2f) break;
2017-10-09 22:21:56 +00:00
const u2fAuthenticate = new U2FAuthenticate(
$('#js-authenticate-u2f'),
'#js-login-u2f-form',
gon.u2f,
document.querySelector('#js-login-2fa-device'),
document.querySelector('.js-2fa-form'),
);
2017-10-09 22:21:56 +00:00
u2fAuthenticate.start();
// needed in rspec
gl.u2fAuthenticate = u2fAuthenticate;
2016-07-24 20:45:11 +00:00
case 'admin':
new Admin();
switch (path[1]) {
2017-10-13 09:44:03 +00:00
case 'broadcast_messages':
initBroadcastMessagesForm();
break;
2017-04-05 10:24:15 +00:00
case 'cohorts':
new UsagePing();
break;
2016-07-24 20:45:11 +00:00
case 'groups':
new UsersSelect();
break;
case 'projects':
new NamespaceSelects();
break;
case 'labels':
switch (path[2]) {
case 'new':
case 'edit':
new Labels();
}
case 'abuse_reports':
2017-10-05 14:57:49 +00:00
new AbuseReports();
break;
2016-07-24 20:45:11 +00:00
}
break;
case 'dashboard':
case 'root':
new UserCallout();
2016-07-24 20:45:11 +00:00
break;
case 'profiles':
new NotificationsForm();
new NotificationsDropdown();
break;
case 'projects':
new Project();
new ProjectAvatar();
switch (path[1]) {
case 'compare':
new CompareAutocomplete();
break;
case 'edit':
shortcut_handler = new ShortcutsNavigation();
new ProjectNew();
import(/* webpackChunkName: 'project_permissions' */ './projects/permissions')
.then(permissions => permissions.default())
.catch(() => {});
2016-07-24 20:45:11 +00:00
break;
case 'new':
new ProjectNew();
initProjectVisibilitySelector();
2016-07-24 20:45:11 +00:00
break;
case 'show':
new Star();
2016-07-24 20:45:11 +00:00
new ProjectNew();
new ProjectShow();
new NotificationsDropdown();
break;
case 'wikis':
new Wikis();
2017-03-26 20:16:55 +00:00
shortcut_handler = new ShortcutsWiki();
2016-07-24 20:45:11 +00:00
new ZenMode();
new GLForm($('.wiki-form'), true);
2016-07-24 20:45:11 +00:00
break;
case 'snippets':
shortcut_handler = new ShortcutsNavigation();
if (path[2] === 'show') {
new ZenMode();
2017-04-13 16:47:28 +00:00
new LineHighlighter();
new BlobViewer();
2016-07-24 20:45:11 +00:00
}
break;
case 'labels':
case 'graphs':
case 'compare':
case 'pipelines':
case 'forks':
case 'milestones':
case 'project_members':
case 'deploy_keys':
case 'builds':
case 'hooks':
case 'services':
case 'protected_branches':
shortcut_handler = new ShortcutsNavigation();
}
break;
2016-07-24 20:45:11 +00:00
}
// If we haven't installed a custom shortcut handler, install the default one
2016-07-24 20:45:11 +00:00
if (!shortcut_handler) {
new Shortcuts();
2016-07-24 20:45:11 +00:00
}
if (document.querySelector('#peek')) {
new PerformanceBar({ container: '#peek' });
}
2016-07-24 20:45:11 +00:00
};
Dispatcher.prototype.initSearch = function() {
// Only when search form is present
2016-07-24 20:45:11 +00:00
if ($('.search').length) {
return new gl.SearchAutocomplete();
2016-07-24 20:45:11 +00:00
}
};
Dispatcher.prototype.initFieldErrors = function() {
$('.gl-show-field-errors').each((i, form) => {
new GlFieldErrors(form);
});
};
2016-07-24 20:45:11 +00:00
return Dispatcher;
})();
$(window).on('load', function() {
new Dispatcher();
});
}).call(window);