09a97779b2
refs https://github.com/TryGhost/Team/issues/1320 - fixed event handling in `gh-file-input` for test-initiated uploads - added `POST /members/upload/` API mock that emulates uploading a single member - it's enough for this particular test and can be expanded as needed - added acceptance test that does a simple 1-member, no Stripe, CSV upload with no mapping changes
80 lines
1.9 KiB
JavaScript
80 lines
1.9 KiB
JavaScript
import Component from '@glimmer/component';
|
|
import {UnsupportedMediaTypeError} from 'ghost-admin/services/ajax';
|
|
import {action} from '@ember/object';
|
|
import {tracked} from '@glimmer/tracking';
|
|
|
|
export default class CsvFileSelect extends Component {
|
|
labelText = 'Select or drop a CSV file';
|
|
|
|
@tracked error = null;
|
|
@tracked dragClass = null;
|
|
|
|
/*
|
|
constructor(...args) {
|
|
super(...args);
|
|
assert(this.args.setFile);
|
|
}
|
|
*/
|
|
|
|
@action
|
|
fileSelected(fileList) {
|
|
let [file] = Array.from(fileList);
|
|
|
|
try {
|
|
this._validateFileType(file);
|
|
this.error = null;
|
|
} catch (err) {
|
|
this.error = err;
|
|
return;
|
|
}
|
|
|
|
this.args.setFile(file);
|
|
}
|
|
|
|
@action
|
|
dragOver(event) {
|
|
if (!event.dataTransfer) {
|
|
return;
|
|
}
|
|
|
|
// this is needed to work around inconsistencies with dropping files
|
|
// from Chrome's downloads bar
|
|
if (navigator.userAgent.indexOf('Chrome') > -1) {
|
|
let eA = event.dataTransfer.effectAllowed;
|
|
event.dataTransfer.dropEffect = (eA === 'move' || eA === 'linkMove') ? 'move' : 'copy';
|
|
}
|
|
|
|
event.stopPropagation();
|
|
event.preventDefault();
|
|
|
|
this.dragClass = '-drag-over';
|
|
}
|
|
|
|
@action
|
|
dragLeave(event) {
|
|
event.preventDefault();
|
|
this.dragClass = null;
|
|
}
|
|
|
|
@action
|
|
drop(event) {
|
|
event.preventDefault();
|
|
this.dragClass = null;
|
|
if (event.dataTransfer.files) {
|
|
this.fileSelected(event.dataTransfer.files);
|
|
}
|
|
}
|
|
|
|
_validateFileType(file) {
|
|
let [, extension] = (/(?:\.([^.]+))?$/).exec(file.name);
|
|
|
|
if (extension.toLowerCase() !== 'csv') {
|
|
throw new UnsupportedMediaTypeError({
|
|
message: 'The file type you uploaded is not supported'
|
|
});
|
|
}
|
|
|
|
return true;
|
|
}
|
|
}
|