2019-02-13 14:16:22 +01:00
|
|
|
import ProgressBar from './progress-bar';
|
|
|
|
|
|
|
|
const INITIALIZE_EVENT = 'direct-upload:initialize';
|
|
|
|
const START_EVENT = 'direct-upload:start';
|
|
|
|
const PROGRESS_EVENT = 'direct-upload:progress';
|
|
|
|
const ERROR_EVENT = 'direct-upload:error';
|
|
|
|
const END_EVENT = 'direct-upload:end';
|
|
|
|
|
2019-06-05 17:29:06 +02:00
|
|
|
function addUploadEventListener(type, handler) {
|
|
|
|
addEventListener(type, event => {
|
|
|
|
// Internet Explorer and Edge will sometime replay Javascript events
|
|
|
|
// that were dispatched just before a page navigation (!), but without
|
|
|
|
// the event payload.
|
|
|
|
//
|
|
|
|
// Ignore these replayed events.
|
|
|
|
const isEventValid = event && event.detail && event.detail.id != undefined;
|
|
|
|
if (!isEventValid) return;
|
|
|
|
|
|
|
|
handler(event);
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
|
|
|
addUploadEventListener(INITIALIZE_EVENT, ({ target, detail: { id, file } }) => {
|
2019-02-13 14:16:22 +01:00
|
|
|
ProgressBar.init(target, id, file);
|
|
|
|
});
|
|
|
|
|
2019-06-05 17:29:06 +02:00
|
|
|
addUploadEventListener(START_EVENT, ({ target, detail: { id } }) => {
|
2019-02-13 14:16:22 +01:00
|
|
|
ProgressBar.start(id);
|
2019-03-06 11:40:09 +01:00
|
|
|
const button = target.form.querySelector('button.primary');
|
|
|
|
if (button) {
|
2019-05-14 17:12:27 +02:00
|
|
|
button.removeAttribute('data-confirm');
|
2019-03-06 11:40:09 +01:00
|
|
|
}
|
2019-02-13 14:16:22 +01:00
|
|
|
});
|
|
|
|
|
2019-06-05 17:29:06 +02:00
|
|
|
addUploadEventListener(PROGRESS_EVENT, ({ detail: { id, progress } }) => {
|
2019-02-13 14:16:22 +01:00
|
|
|
ProgressBar.progress(id, progress);
|
|
|
|
});
|
|
|
|
|
2019-06-05 17:29:06 +02:00
|
|
|
addUploadEventListener(ERROR_EVENT, ({ detail: { id, error } }) => {
|
2019-02-13 14:16:22 +01:00
|
|
|
ProgressBar.error(id, error);
|
|
|
|
});
|
|
|
|
|
2019-06-05 17:29:06 +02:00
|
|
|
addUploadEventListener(END_EVENT, ({ detail: { id } }) => {
|
2019-02-13 14:16:22 +01:00
|
|
|
ProgressBar.end(id);
|
|
|
|
});
|