debian-mirror-gitlab/app/assets/javascripts/blob_edit/blob_bundle.js

100 lines
2.9 KiB
JavaScript
Raw Normal View History

2018-11-08 19:23:39 +05:30
/* eslint-disable no-new */
2018-05-09 12:01:36 +05:30
import $ from 'jquery';
2018-03-17 18:26:18 +05:30
import NewCommitForm from '../new_commit_form';
2021-01-03 14:25:43 +05:30
import { deprecatedCreateFlash as createFlash } from '~/flash';
2017-08-17 22:00:37 +05:30
import BlobFileDropzone from '../blob/blob_file_dropzone';
2020-04-08 14:13:33 +05:30
import initPopover from '~/blob/suggest_gitlab_ci_yml';
2020-07-28 23:09:34 +05:30
import { disableButtonIfEmptyField, setCookie } from '~/lib/utils/common_utils';
2020-04-22 19:07:51 +05:30
import Tracking from '~/tracking';
2017-08-17 22:00:37 +05:30
2021-01-29 00:20:46 +05:30
const initPopovers = () => {
const suggestEl = document.querySelector('.js-suggest-gitlab-ci-yml');
if (suggestEl) {
const commitButton = document.querySelector('#commit-changes');
initPopover(suggestEl);
if (commitButton) {
const { dismissKey, humanAccess } = suggestEl.dataset;
const urlParams = new URLSearchParams(window.location.search);
const mergeRequestPath = urlParams.get('mr_path') || true;
const commitCookieName = `suggest_gitlab_ci_yml_commit_${dismissKey}`;
const commitTrackLabel = 'suggest_gitlab_ci_yml_commit_changes';
const commitTrackValue = '20';
commitButton.addEventListener('click', () => {
setCookie(commitCookieName, mergeRequestPath);
Tracking.event(undefined, 'click_button', {
label: commitTrackLabel,
property: humanAccess,
value: commitTrackValue,
});
});
}
}
};
2021-02-22 17:27:13 +05:30
export const initUploadForm = () => {
const uploadBlobForm = $('.js-upload-blob-form');
if (uploadBlobForm.length) {
const method = uploadBlobForm.data('method');
new BlobFileDropzone(uploadBlobForm, method);
new NewCommitForm(uploadBlobForm);
disableButtonIfEmptyField(uploadBlobForm.find('.js-commit-message'), '.btn-upload-file');
}
};
2018-03-27 19:54:05 +05:30
export default () => {
2017-08-17 22:00:37 +05:30
const editBlobForm = $('.js-edit-blob-form');
2017-09-10 17:25:29 +05:30
const deleteBlobForm = $('.js-delete-blob-form');
2017-08-17 22:00:37 +05:30
if (editBlobForm.length) {
2018-03-27 19:54:05 +05:30
const urlRoot = editBlobForm.data('relativeUrlRoot');
const assetsPath = editBlobForm.data('assetsPrefix');
2019-07-07 11:18:12 +05:30
const filePath = `${editBlobForm.data('blobFilename')}`;
2018-03-27 19:54:05 +05:30
const currentAction = $('.js-file-title').data('currentAction');
2018-12-05 23:21:45 +05:30
const projectId = editBlobForm.data('project-id');
2019-02-15 15:39:39 +05:30
const isMarkdown = editBlobForm.data('is-markdown');
const commitButton = $('.js-commit-button');
const cancelLink = $('.btn.btn-cancel');
2021-01-03 14:25:43 +05:30
import('./edit_blob')
.then(({ default: EditBlob } = {}) => {
new EditBlob({
assetsPath: `${urlRoot}${assetsPath}`,
filePath,
currentAction,
projectId,
isMarkdown,
});
2021-01-29 00:20:46 +05:30
initPopovers();
2021-01-03 14:25:43 +05:30
})
.catch(e => createFlash(e));
2019-02-15 15:39:39 +05:30
cancelLink.on('click', () => {
window.onbeforeunload = null;
});
commitButton.on('click', () => {
window.onbeforeunload = null;
});
2017-08-17 22:00:37 +05:30
new NewCommitForm(editBlobForm);
2019-02-15 15:39:39 +05:30
// returning here blocks page navigation
window.onbeforeunload = () => '';
2017-08-17 22:00:37 +05:30
}
2021-02-22 17:27:13 +05:30
initUploadForm();
2017-09-10 17:25:29 +05:30
if (deleteBlobForm.length) {
new NewCommitForm(deleteBlobForm);
}
2018-03-27 19:54:05 +05:30
};