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

file_upload.js « utils « lib « javascripts « assets « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: b8b63bf58d40b1678897b65f235b00b0ca4d004b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
export default (buttonSelector, fileSelector) => {
  const btn = document.querySelector(buttonSelector);
  const fileInput = document.querySelector(fileSelector);

  if (!btn || !fileInput) return;

  const form = btn.closest('form');

  btn.addEventListener('click', () => {
    fileInput.click();
  });

  fileInput.addEventListener('change', () => {
    form.querySelector('.js-filename').textContent = fileInput.value.replace(/^.*[\\\/]/, ''); // eslint-disable-line no-useless-escape
  });
};

export const getFilename = ({ clipboardData }) => {
  let value;
  if (window.clipboardData && window.clipboardData.getData) {
    value = window.clipboardData.getData('Text');
  } else if (clipboardData && clipboardData.getData) {
    value = clipboardData.getData('text/plain');
  }
  value = value.split('\r');
  return value[0];
};