/*!
 * Matomo - free/libre analytics platform
 *
 * @link    https://matomo.org
 * @license https://www.gnu.org/licenses/gpl-3.0.html GPL v3 or later
 */

import { Matomo, translate } from 'CoreHome';
import ClickEvent = JQuery.ClickEvent;
import SubmitEvent = JQuery.SubmitEvent;

const { $ } = window;

function onUploadPlugin(event: ClickEvent) {
  event.preventDefault();
  Matomo.helper.modalConfirm('#installPluginByUpload', {});
}

function onSubmitPlugin(event: SubmitEvent) {
  const $zipFile = $('[name=pluginZip]') as JQuery<HTMLInputElement>;
  const fileName = $zipFile.val() as string;

  if (!fileName || fileName.slice(-4) !== '.zip') {
    event.preventDefault();
    // eslint-disable-next-line no-alert
    alert(translate('CorePluginsAdmin_NoZipFileSelected'));
  } else if ($zipFile.data('maxSize') > 0
    && $zipFile[0].files![0].size > $zipFile.data('maxSize') * 1048576
  ) {
    event.preventDefault();
    // eslint-disable-next-line no-alert
    alert(translate('CorePluginsAdmin_FileExceedsUploadLimit'));
  }
}

export default {
  mounted(): void {
    setTimeout(() => {
      $('.uploadPlugin').click(onUploadPlugin);
      $('#uploadPluginForm').submit(onSubmitPlugin);
    });
  },
};
