mirror of
https://github.com/TryGhost/Ghost.git
synced 2024-11-28 14:03:48 +03:00
1b98800bfb
no refs. - made mapping fields ("Import as") human readable in members import
30 lines
859 B
JavaScript
30 lines
859 B
JavaScript
import Component from '@glimmer/component';
|
|
import {action} from '@ember/object';
|
|
import {tracked} from '@glimmer/tracking';
|
|
|
|
const FIELD_MAPPINGS = [
|
|
{label: 'Email', value: 'email'},
|
|
{label: 'Name', value: 'name'},
|
|
{label: 'Note', value: 'note'},
|
|
{label: 'Subscribed to emails', value: 'subscribed_to_emails'},
|
|
{label: 'Stripe Customer ID', value: 'stripe_customer_id'},
|
|
{label: 'Complimentary plan', value: 'complimentary_plan'},
|
|
{label: 'Labels', value: 'labels'},
|
|
{label: 'Created at', value: 'created_at'}
|
|
];
|
|
|
|
export default class extends Component {
|
|
@tracked availableFields = FIELD_MAPPINGS;
|
|
|
|
get mapTo() {
|
|
return this.args.mapTo;
|
|
}
|
|
|
|
@action
|
|
updateMapping(newMapTo) {
|
|
if (this.args.updateMapping) {
|
|
this.args.updateMapping(this.args.mapFrom, newMapTo);
|
|
}
|
|
}
|
|
}
|