Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGitLab Bot <gitlab-bot@gitlab.com>2022-11-09 12:07:42 +0300
committerGitLab Bot <gitlab-bot@gitlab.com>2022-11-09 12:07:42 +0300
commit44d4b37b52c678a0b6a3c18c8c87319553ce84a3 (patch)
treed09bcd1aad83fe5a4d596b32356bb260eb54aca2 /app/assets/javascripts/blob
parent7b29a4f84e25ab3eb610c1595bad38478784f5ff (diff)
Add latest changes from gitlab-org/gitlab@master
Diffstat (limited to 'app/assets/javascripts/blob')
-rw-r--r--app/assets/javascripts/blob/blob_file_dropzone.js96
1 files changed, 0 insertions, 96 deletions
diff --git a/app/assets/javascripts/blob/blob_file_dropzone.js b/app/assets/javascripts/blob/blob_file_dropzone.js
deleted file mode 100644
index 387d6043315..00000000000
--- a/app/assets/javascripts/blob/blob_file_dropzone.js
+++ /dev/null
@@ -1,96 +0,0 @@
-/* eslint-disable func-names */
-
-import Dropzone from 'dropzone';
-import $ from 'jquery';
-import { sprintf, __ } from '~/locale';
-import { HIDDEN_CLASS } from '../lib/utils/constants';
-import csrf from '../lib/utils/csrf';
-import { visitUrl } from '../lib/utils/url_utility';
-
-Dropzone.autoDiscover = false;
-
-function toggleLoading($el, $icon, loading) {
- if (loading) {
- $el.disable();
- $icon.removeClass(HIDDEN_CLASS);
- } else {
- $el.enable();
- $icon.addClass(HIDDEN_CLASS);
- }
-}
-export default class BlobFileDropzone {
- constructor(form, method) {
- const formDropzone = form.find('.dropzone');
- const submitButton = form.find('#submit-all');
- const submitButtonLoadingIcon = submitButton.find('.js-loading-icon');
- const dropzoneMessage = form.find('.dz-message');
- Dropzone.autoDiscover = false;
-
- const dropzone = formDropzone.dropzone({
- autoDiscover: false,
- autoProcessQueue: false,
- url: form.attr('action'),
- // Rails uses a hidden input field for PUT
- method,
- clickable: true,
- uploadMultiple: false,
- paramName: 'file',
- maxFilesize: gon.max_file_size || 10,
- parallelUploads: 1,
- maxFiles: 1,
- addRemoveLinks: true,
- previewsContainer: '.dropzone-previews',
- headers: csrf.headers,
- init() {
- this.on('processing', function () {
- this.options.url = form.attr('action');
- });
-
- this.on('addedfile', () => {
- toggleLoading(submitButton, submitButtonLoadingIcon, false);
- dropzoneMessage.addClass(HIDDEN_CLASS);
- $('.dropzone-alerts').html('').hide();
- });
- this.on('removedfile', () => {
- toggleLoading(submitButton, submitButtonLoadingIcon, false);
- dropzoneMessage.removeClass(HIDDEN_CLASS);
- });
- this.on('success', (header, response) => {
- $('#modal-upload-blob').modal('hide');
- visitUrl(response.filePath);
- });
- this.on('maxfilesexceeded', function (file) {
- dropzoneMessage.addClass(HIDDEN_CLASS);
- this.removeFile(file);
- });
- this.on('sending', (file, xhr, formData) => {
- formData.append('branch_name', form.find('.js-branch-name').val());
- formData.append('create_merge_request', form.find('.js-create-merge-request').val());
- formData.append('commit_message', form.find('.js-commit-message').val());
- });
- },
- // Override behavior of adding error underneath preview
- error(file, errorMessage) {
- const stripped = $('<div/>').html(errorMessage).text();
- $('.dropzone-alerts')
- .html(sprintf(__('Error uploading file: %{stripped}'), { stripped }))
- .show();
- this.removeFile(file);
- },
- });
-
- submitButton.on('click', (e) => {
- e.preventDefault();
- e.stopPropagation();
-
- if (dropzone[0].dropzone.getQueuedFiles().length === 0) {
- // eslint-disable-next-line no-alert
- alert(__('Please select a file'));
- return false;
- }
- toggleLoading(submitButton, submitButtonLoadingIcon, true);
- dropzone[0].dropzone.processQueue();
- return false;
- });
- }
-}