gitlab-org--gitlab-foss/app/assets/javascripts/blob_edit/blob_bundle.js

39 lines
1.1 KiB
JavaScript
Raw Normal View History

2018-06-16 09:20:30 -04:00
/* eslint-disable no-new */
import $ from 'jquery';
2017-11-20 15:28:29 -05:00
import NewCommitForm from '../new_commit_form';
import EditBlob from './edit_blob';
import BlobFileDropzone from '../blob/blob_file_dropzone';
2018-02-21 15:22:56 -05:00
export default () => {
const editBlobForm = $('.js-edit-blob-form');
const uploadBlobForm = $('.js-upload-blob-form');
2017-08-01 04:50:59 -04:00
const deleteBlobForm = $('.js-delete-blob-form');
if (editBlobForm.length) {
2018-02-20 17:20:48 -05:00
const urlRoot = editBlobForm.data('relativeUrlRoot');
const assetsPath = editBlobForm.data('assetsPrefix');
const blobLanguage = editBlobForm.data('blobLanguage');
const currentAction = $('.js-file-title').data('currentAction');
new EditBlob(`${urlRoot}${assetsPath}`, blobLanguage, currentAction);
new NewCommitForm(editBlobForm);
}
if (uploadBlobForm.length) {
const method = uploadBlobForm.data('method');
new BlobFileDropzone(uploadBlobForm, method);
new NewCommitForm(uploadBlobForm);
window.gl.utils.disableButtonIfEmptyField(
uploadBlobForm.find('.js-commit-message'),
'.btn-upload-file',
);
}
2017-08-01 04:50:59 -04:00
if (deleteBlobForm.length) {
new NewCommitForm(deleteBlobForm);
}
2018-02-21 15:22:56 -05:00
};