mirror of
https://github.com/TryGhost/Ghost.git
synced 2024-11-28 14:03:48 +03:00
7d0298c7a8
refs https://github.com/TryGhost/Team/issues/1320 - added a tracked `labels` property in `<ModalImportMembers::CsvFileMapping>` and passed it through to `<GhMembersLabelInput>` so that it has a list of labels that can be added to - fixed error from sorting labels if one doesn't have a name - added acceptance test for selecting labels in the members import flow
70 lines
1.9 KiB
JavaScript
70 lines
1.9 KiB
JavaScript
import Component from '@glimmer/component';
|
|
import MemberImportError from 'ghost-admin/errors/member-import-error';
|
|
import papaparse from 'papaparse';
|
|
import {action} from '@ember/object';
|
|
import {isNone} from '@ember/utils';
|
|
import {tracked} from '@glimmer/tracking';
|
|
|
|
export default class CsvFileMapping extends Component {
|
|
@tracked error = null;
|
|
@tracked fileData = null;
|
|
@tracked labels = null;
|
|
|
|
constructor(...args) {
|
|
super(...args);
|
|
this.parseFileAndGenerateMapping(this.args.file);
|
|
}
|
|
|
|
parseFileAndGenerateMapping(file) {
|
|
papaparse.parse(file, {
|
|
header: true,
|
|
skipEmptyLines: true,
|
|
complete: (result) => {
|
|
if (result.data && result.data.length) {
|
|
this.fileData = result.data;
|
|
} else {
|
|
this.fileData = [];
|
|
}
|
|
this.args.setFileData(this.fileData);
|
|
}
|
|
});
|
|
}
|
|
|
|
get hasFileData() {
|
|
return !isNone(this.fileData);
|
|
}
|
|
|
|
@action
|
|
setMapping(mapping) {
|
|
if (this.fileData.length === 0) {
|
|
this.error = new MemberImportError({
|
|
message: 'File is empty, nothing to import. Please select a different file.'
|
|
});
|
|
} else if (!mapping.getKeyByValue('email')) {
|
|
this.error = new MemberImportError({
|
|
message: 'Please map "Email" to one of the fields in the CSV.'
|
|
});
|
|
} else {
|
|
this.error = null;
|
|
}
|
|
|
|
this.mapping = mapping;
|
|
this.setMappingResult();
|
|
}
|
|
|
|
@action
|
|
updateLabels(labels) {
|
|
this.labels = labels;
|
|
this.setMappingResult();
|
|
}
|
|
|
|
setMappingResult() {
|
|
this.args.setMappingResult({
|
|
mapping: this.mapping,
|
|
labels: this.labels,
|
|
membersCount: this.fileData?.length,
|
|
error: this.error
|
|
});
|
|
}
|
|
}
|