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

530 lines
17 KiB
JavaScript
Raw Normal View History

2016-12-02 23:43:20 +00:00
/* eslint-disable no-new, class-methods-use-this */
import $ from 'jquery';
import 'vendor/jquery.scrollTo';
import { GlBreakpointInstance as bp } from '@gitlab/ui/dist/utils';
2017-03-11 06:45:34 +00:00
import Cookies from 'js-cookie';
import createEventHub from '~/helpers/event_hub_factory';
import axios from './lib/utils/axios_utils';
import { deprecatedCreateFlash as flash } from './flash';
import BlobForkSuggestion from './blob/blob_fork_suggestion';
import initChangesDropdown from './init_changes_dropdown';
import {
parseUrlPathname,
handleLocationHash,
isMetaClick,
parseBoolean,
} from './lib/utils/common_utils';
2018-06-21 12:22:40 +00:00
import { isInVueNoteablePage } from './lib/utils/dom_utils';
2017-12-11 12:28:11 +00:00
import { getLocationHash } from './lib/utils/url_utility';
2017-10-19 09:46:43 +00:00
import Diff from './diff';
2017-12-13 09:37:07 +00:00
import { localTimeAgo } from './lib/utils/datetime_utility';
2017-12-13 09:26:44 +00:00
import syntaxHighlight from './syntax_highlight';
2017-12-15 10:21:49 +00:00
import Notes from './notes';
import { polyfillSticky } from './lib/utils/sticky';
import initAddContextCommitsTriggers from './add_context_commits_modal';
import { __ } from './locale';
2017-10-07 04:25:17 +00:00
// MergeRequestTabs
//
// Handles persisting and restoring the current tab selection and lazily-loading
// content on the MergeRequests#show page.
//
// ### Example Markup
//
// <ul class="nav-links merge-request-tabs">
// <li class="notes-tab active">
// <a data-action="notes" data-target="#notes" data-toggle="tab" href="/foo/bar/-/merge_requests/1">
// Discussion
// </a>
// </li>
// <li class="commits-tab">
// <a data-action="commits" data-target="#commits" data-toggle="tab" href="/foo/bar/-/merge_requests/1/commits">
// Commits
// </a>
// </li>
// <li class="diffs-tab">
// <a data-action="diffs" data-target="#diffs" data-toggle="tab" href="/foo/bar/-/merge_requests/1/diffs">
// Diffs
// </a>
// </li>
// </ul>
//
// <div class="tab-content">
// <div class="notes tab-pane active" id="notes">
// Notes Content
// </div>
// <div class="commits tab-pane" id="commits">
// Commits Content
// </div>
// <div class="diffs tab-pane" id="diffs">
// Diffs Content
// </div>
// </div>
//
// <div class="mr-loading-status">
// <div class="loading">
// Loading Animation
// </div>
// </div>
//
2017-12-15 09:31:58 +00:00
// Store the `location` object, allowing for easier stubbing in tests
let { location } = window;
2016-07-24 20:45:11 +00:00
2017-12-15 09:31:58 +00:00
export default class MergeRequestTabs {
constructor({ action, setUrl, stubLocation } = {}) {
this.mergeRequestTabs = document.querySelector('.merge-request-tabs-container');
this.mergeRequestTabsAll =
this.mergeRequestTabs && this.mergeRequestTabs.querySelectorAll
? this.mergeRequestTabs.querySelectorAll('.merge-request-tabs li')
: null;
this.mergeRequestTabPanes = document.querySelector('#diff-notes-app');
this.mergeRequestTabPanesAll =
this.mergeRequestTabPanes && this.mergeRequestTabPanes.querySelectorAll
? this.mergeRequestTabPanes.querySelectorAll('.tab-pane')
: null;
2017-12-15 09:31:58 +00:00
const navbar = document.querySelector('.navbar-gitlab');
const peek = document.getElementById('js-peek');
2017-12-15 09:31:58 +00:00
const paddingTop = 16;
2018-06-21 12:22:40 +00:00
this.commitsTab = document.querySelector('.tab-content .commits.tab-pane');
2016-07-24 20:45:11 +00:00
this.currentTab = null;
2017-12-15 09:31:58 +00:00
this.diffsLoaded = false;
this.pipelinesLoaded = false;
this.commitsLoaded = false;
this.fixedLayoutPref = null;
this.eventHub = createEventHub();
2017-01-31 09:14:22 +00:00
2017-12-15 09:31:58 +00:00
this.setUrl = setUrl !== undefined ? setUrl : true;
this.setCurrentAction = this.setCurrentAction.bind(this);
this.tabShown = this.tabShown.bind(this);
this.clickTab = this.clickTab.bind(this);
2017-12-15 09:31:58 +00:00
this.stickyTop = navbar ? navbar.offsetHeight - paddingTop : 0;
if (peek) {
this.stickyTop += peek.offsetHeight;
}
if (this.mergeRequestTabs) {
this.stickyTop += this.mergeRequestTabs.offsetHeight;
2017-12-15 09:31:58 +00:00
}
2017-01-31 09:14:22 +00:00
2017-12-15 09:31:58 +00:00
if (stubLocation) {
location = stubLocation;
}
2016-07-24 20:45:11 +00:00
2017-12-15 09:31:58 +00:00
this.bindEvents();
if (
this.mergeRequestTabs &&
this.mergeRequestTabs.querySelector(`a[data-action='${action}']`) &&
this.mergeRequestTabs.querySelector(`a[data-action='${action}']`).click
) {
this.mergeRequestTabs.querySelector(`a[data-action='${action}']`).click();
}
2017-12-15 09:31:58 +00:00
this.initAffix();
}
2017-04-07 12:11:42 +00:00
2017-12-15 09:31:58 +00:00
bindEvents() {
$('.merge-request-tabs a[data-toggle="tabvue"]').on('click', this.clickTab);
window.addEventListener('popstate', (event) => {
if (event.state && event.state.action) {
this.tabShown(event.state.action, event.target.location);
this.currentAction = event.state.action;
this.eventHub.$emit('MergeRequestTabChange', this.getCurrentAction());
}
});
2017-12-15 09:31:58 +00:00
}
2016-07-24 20:45:11 +00:00
2017-12-15 09:31:58 +00:00
// Used in tests
unbindEvents() {
$('.merge-request-tabs a[data-toggle="tabvue"]').off('click', this.clickTab);
2017-12-15 09:31:58 +00:00
}
destroyPipelinesView() {
if (this.commitPipelinesTable) {
this.commitPipelinesTable.$destroy();
this.commitPipelinesTable = null;
document.querySelector('#commit-pipeline-table-view').innerHTML = '';
2017-01-31 09:14:22 +00:00
}
2017-12-15 09:31:58 +00:00
}
2017-01-31 09:14:22 +00:00
2017-12-15 09:31:58 +00:00
clickTab(e) {
if (e.currentTarget) {
2017-12-15 09:31:58 +00:00
e.stopImmediatePropagation();
e.preventDefault();
const { action } = e.currentTarget.dataset || {};
if (isMetaClick(e)) {
const targetLink = e.currentTarget.getAttribute('href');
window.open(targetLink, '_blank');
} else if (action) {
const href = e.currentTarget.getAttribute('href');
this.tabShown(action, href);
if (this.setUrl) {
this.setCurrentAction(action);
}
}
2017-12-15 09:31:58 +00:00
}
}
2017-10-07 04:25:17 +00:00
tabShown(action, href) {
if (action !== this.currentTab && this.mergeRequestTabs) {
this.currentTab = action;
if (this.mergeRequestTabPanesAll) {
this.mergeRequestTabPanesAll.forEach((el) => {
const tabPane = el;
tabPane.style.display = 'none';
});
2016-07-24 20:45:11 +00:00
}
if (this.mergeRequestTabsAll) {
this.mergeRequestTabsAll.forEach((el) => {
el.classList.remove('active');
});
}
const tabPane = this.mergeRequestTabPanes.querySelector(`#${action}`);
if (tabPane) tabPane.style.display = 'block';
const tab = this.mergeRequestTabs.querySelector(`.${action}-tab`);
if (tab) tab.classList.add('active');
if (action === 'commits') {
this.loadCommits(href);
2017-12-15 09:31:58 +00:00
this.expandView();
this.resetViewContainer();
this.destroyPipelinesView();
} else if (action === 'new') {
this.expandView();
this.resetViewContainer();
this.destroyPipelinesView();
} else if (this.isDiffAction(action)) {
if (!isInVueNoteablePage()) {
this.loadDiff(href);
}
if (bp.getBreakpointSize() !== 'xl') {
this.shrinkView();
}
this.expandViewContainer();
this.destroyPipelinesView();
this.commitsTab.classList.remove('active');
} else if (action === 'pipelines') {
this.resetViewContainer();
this.mountPipelinesView();
} else {
this.mergeRequestTabPanes.querySelector('#notes').style.display = 'block';
this.mergeRequestTabs.querySelector('.notes-tab').classList.add('active');
if (bp.getBreakpointSize() !== 'xs') {
this.expandView();
}
this.resetViewContainer();
this.destroyPipelinesView();
}
$('.detail-page-description').renderGFM();
2018-11-27 18:05:16 +00:00
} else if (action === this.currentAction) {
// ContentTop is used to handle anything at the top of the page before the main content
const mainContentContainer = document.querySelector('.content-wrapper');
const tabContentContainer = document.querySelector('.tab-content');
if (mainContentContainer && tabContentContainer) {
const mainContentTop = mainContentContainer.getBoundingClientRect().top;
const tabContentTop = tabContentContainer.getBoundingClientRect().top;
// 51px is the height of the navbar buttons, e.g. `Discussion | Commits | Changes`
const scrollDestination = tabContentTop - mainContentTop - 51;
// scrollBehavior is only available in browsers that support scrollToOptions
if ('scrollBehavior' in document.documentElement.style) {
window.scrollTo({
top: scrollDestination,
behavior: 'smooth',
});
} else {
window.scrollTo(0, scrollDestination);
}
}
2017-12-15 09:31:58 +00:00
}
this.eventHub.$emit('MergeRequestTabChange', action);
2017-12-15 09:31:58 +00:00
}
2016-07-24 20:45:11 +00:00
2017-12-15 09:31:58 +00:00
scrollToElement(container) {
if (location.hash) {
const offset = 0 - ($('.navbar-gitlab').outerHeight() + $('.js-tabs-affix').outerHeight());
2017-12-15 09:31:58 +00:00
const $el = $(`${container} ${location.hash}:not(.match)`);
if ($el.length) {
$.scrollTo($el[0], { offset });
2016-07-24 20:45:11 +00:00
}
}
2017-12-15 09:31:58 +00:00
}
// Replaces the current Merge Request-specific action in the URL with a new one
//
// If the action is "notes", the URL is reset to the standard
// `MergeRequests#show` route.
//
// Examples:
//
// location.pathname # => "/namespace/project/-/merge_requests/1"
2017-12-15 09:31:58 +00:00
// setCurrentAction('diffs')
// location.pathname # => "/namespace/project/-/merge_requests/1/diffs"
2017-12-15 09:31:58 +00:00
//
// location.pathname # => "/namespace/project/-/merge_requests/1/diffs"
2017-12-15 09:31:58 +00:00
// setCurrentAction('show')
// location.pathname # => "/namespace/project/-/merge_requests/1"
2017-12-15 09:31:58 +00:00
//
// location.pathname # => "/namespace/project/-/merge_requests/1/diffs"
2017-12-15 09:31:58 +00:00
// setCurrentAction('commits')
// location.pathname # => "/namespace/project/-/merge_requests/1/commits"
2017-12-15 09:31:58 +00:00
//
// Returns the new URL String
setCurrentAction(action) {
this.currentAction = action;
// Remove a trailing '/commits' '/diffs' '/pipelines'
let newState = location.pathname.replace(/\/(commits|diffs|pipelines)(\.html)?\/?$/, '');
// Append the new action if we're on a tab other than 'notes'
if (this.currentAction !== 'show' && this.currentAction !== 'new') {
newState += `/${this.currentAction}`;
}
2016-07-24 20:45:11 +00:00
2017-12-15 09:31:58 +00:00
// Ensure parameters and hash come along for the ride
newState += location.search + location.hash;
if (window.history.state && window.history.state.url && window.location.pathname !== newState) {
window.history.pushState(
{
url: newState,
action: this.currentAction,
},
document.title,
newState,
);
} else {
window.history.replaceState(
{
url: window.location.href,
action,
},
document.title,
window.location.href,
);
}
2017-12-15 09:31:58 +00:00
return newState;
}
getCurrentAction() {
return this.currentAction;
}
2017-12-15 09:31:58 +00:00
loadCommits(source) {
if (this.commitsLoaded) {
return;
}
2018-01-31 09:27:30 +00:00
this.toggleLoading(true);
axios
.get(`${source}.json`)
.then(({ data }) => {
2017-12-15 09:31:58 +00:00
document.querySelector('div#commits').innerHTML = data.html;
localTimeAgo($('.js-timeago', 'div#commits'));
this.commitsLoaded = true;
this.scrollToElement('#commits');
this.toggleLoading(false);
initAddContextCommitsTriggers();
})
.catch(() => {
this.toggleLoading(false);
flash(__('An error occurred while fetching this tab.'));
});
2017-12-15 09:31:58 +00:00
}
2017-01-13 21:54:16 +00:00
2017-12-15 09:31:58 +00:00
mountPipelinesView() {
const pipelineTableViewEl = document.querySelector('#commit-pipeline-table-view');
const { CommitPipelinesTable, mrWidgetData } = gl;
2017-12-15 09:31:58 +00:00
this.commitPipelinesTable = new CommitPipelinesTable({
propsData: {
endpoint: pipelineTableViewEl.dataset.endpoint,
helpPagePath: pipelineTableViewEl.dataset.helpPagePath,
emptyStateSvgPath: pipelineTableViewEl.dataset.emptyStateSvgPath,
errorStateSvgPath: pipelineTableViewEl.dataset.errorStateSvgPath,
autoDevopsHelpPath: pipelineTableViewEl.dataset.helpAutoDevopsPath,
canCreatePipelineInTargetProject: Boolean(
mrWidgetData?.can_create_pipeline_in_target_project,
),
sourceProjectFullPath: mrWidgetData?.source_project_full_path || '',
targetProjectFullPath: mrWidgetData?.target_project_full_path || '',
projectId: pipelineTableViewEl.dataset.projectId,
mergeRequestId: mrWidgetData ? mrWidgetData.iid : null,
2017-12-15 09:31:58 +00:00
},
provide: {
targetProjectFullPath: mrWidgetData?.target_project_full_path || '',
},
2017-12-15 09:31:58 +00:00
}).$mount();
// $mount(el) replaces the el with the new rendered component. We need it in order to mount
// it everytime this tab is clicked - https://vuejs.org/v2/api/#vm-mount
pipelineTableViewEl.appendChild(this.commitPipelinesTable.$el);
}
2017-12-15 09:31:58 +00:00
loadDiff(source) {
if (this.diffsLoaded) {
document.dispatchEvent(new CustomEvent('scroll'));
return;
}
2016-07-24 20:45:11 +00:00
2017-12-15 09:31:58 +00:00
// We extract pathname for the current Changes tab anchor href
// some pages like MergeRequestsController#new has query parameters on that anchor
const urlPathname = parseUrlPathname(source);
2016-07-24 20:45:11 +00:00
this.toggleLoading(true);
axios
.get(`${urlPathname}.json${location.search}`)
.then(({ data }) => {
2017-12-15 09:31:58 +00:00
const $container = $('#diffs');
$container.html(data.html);
2017-12-15 09:31:58 +00:00
initChangesDropdown(this.stickyTop);
2017-12-15 09:31:58 +00:00
localTimeAgo($('.js-timeago', 'div#diffs'));
syntaxHighlight($('#diffs .js-syntax-highlight'));
if (this.isDiffAction(this.currentAction)) {
2017-12-15 09:31:58 +00:00
this.expandViewContainer();
}
this.diffsLoaded = true;
new Diff();
this.scrollToElement('#diffs');
$('.diff-file').each((i, el) => {
new BlobForkSuggestion({
openButtons: $(el).find('.js-edit-blob-link-fork-toggler'),
forkButtons: $(el).find('.js-fork-suggestion-button'),
cancelButtons: $(el).find('.js-cancel-fork-suggestion-button'),
suggestionSections: $(el).find('.js-file-fork-suggestion-section'),
actionTextPieces: $(el).find('.js-file-fork-suggestion-section-action'),
}).init();
2017-12-15 09:31:58 +00:00
});
// Scroll any linked note into view
// Similar to `toggler_behavior` in the discussion tab
const hash = getLocationHash();
const anchor = hash && $container.find(`.note[id="${hash}"]`);
if (anchor && anchor.length > 0) {
2019-04-02 17:10:49 +00:00
const notesContent = anchor.closest('.notes-content');
2017-12-15 09:31:58 +00:00
const lineType = notesContent.hasClass('new') ? 'new' : 'old';
2017-12-15 10:21:49 +00:00
Notes.instance.toggleDiffNote({
2017-12-15 09:31:58 +00:00
target: anchor,
lineType,
forceShow: true,
});
2017-12-15 09:31:58 +00:00
anchor[0].scrollIntoView();
handleLocationHash();
// We have multiple elements on the page with `#note_xxx`
// (discussion and diff tabs) and `:target` only applies to the first
anchor.addClass('target');
}
this.toggleLoading(false);
})
.catch(() => {
this.toggleLoading(false);
flash(__('An error occurred while fetching this tab.'));
});
2017-12-15 09:31:58 +00:00
}
2017-12-15 09:31:58 +00:00
// Show or hide the loading spinner
//
// status - Boolean, true to show, false to hide
toggleLoading(status) {
2018-06-13 14:39:03 +00:00
$('.mr-loading-status .loading').toggleClass('hide', !status);
2017-12-15 09:31:58 +00:00
}
2016-07-25 21:14:14 +00:00
2017-12-15 09:31:58 +00:00
diffViewType() {
return $('.js-diff-view-buttons button.active').data('viewType');
2017-12-15 09:31:58 +00:00
}
2016-07-24 20:45:11 +00:00
2017-12-15 09:31:58 +00:00
isDiffAction(action) {
return action === 'diffs' || action === 'new/diffs';
}
2016-07-24 20:45:11 +00:00
expandViewContainer(removeLimited = true) {
2017-12-15 09:31:58 +00:00
const $wrapper = $('.content-wrapper .container-fluid').not('.breadcrumbs');
if (this.fixedLayoutPref === null) {
this.fixedLayoutPref = $wrapper.hasClass('container-limited');
}
if (this.diffViewType() === 'parallel' || removeLimited) {
$wrapper.removeClass('container-limited');
} else {
$wrapper.toggleClass('container-limited', this.fixedLayoutPref);
}
2017-12-15 09:31:58 +00:00
}
2017-12-15 09:31:58 +00:00
resetViewContainer() {
if (this.fixedLayoutPref !== null) {
$('.content-wrapper .container-fluid').toggleClass('container-limited', this.fixedLayoutPref);
}
2017-12-15 09:31:58 +00:00
}
2017-12-15 09:31:58 +00:00
shrinkView() {
const $gutterBtn = $('.js-sidebar-toggle:visible');
const $expandSvg = $gutterBtn.find('.js-sidebar-expand');
2016-07-24 20:45:11 +00:00
2017-12-15 09:31:58 +00:00
// Wait until listeners are set
setTimeout(() => {
// Only when sidebar is expanded
if ($expandSvg.length && $expandSvg.hasClass('hidden')) {
$gutterBtn.trigger('click', [true]);
2017-12-15 09:31:58 +00:00
}
}, 0);
}
2017-12-15 09:31:58 +00:00
// Expand the issuable sidebar unless the user explicitly collapsed it
expandView() {
if (parseBoolean(Cookies.get('collapsed_gutter'))) {
2017-12-15 09:31:58 +00:00
return;
}
const $gutterBtn = $('.js-sidebar-toggle');
const $collapseSvg = $gutterBtn.find('.js-sidebar-collapse');
2016-07-24 20:45:11 +00:00
2017-12-15 09:31:58 +00:00
// Wait until listeners are set
setTimeout(() => {
// Only when sidebar is collapsed
if ($collapseSvg.length && !$collapseSvg.hasClass('hidden')) {
$gutterBtn.trigger('click', [true]);
2016-07-24 20:45:11 +00:00
}
2017-12-15 09:31:58 +00:00
}, 0);
}
2017-12-15 09:31:58 +00:00
initAffix() {
const $tabs = $('.js-tabs-affix');
// Screen space on small screens is usually very sparse
// So we dont affix the tabs on these
if (bp.getBreakpointSize() === 'xs' || !$tabs.length) return;
/**
If the browser does not support position sticky, it returns the position as static.
If the browser does support sticky, then we allow the browser to handle it, if not
then we default back to Bootstraps affix
2018-05-28 09:53:00 +00:00
*/
2017-12-15 09:31:58 +00:00
if ($tabs.css('position') !== 'static') return;
polyfillSticky($tabs);
}
2017-12-15 09:31:58 +00:00
}