N
N
Nastya090922019-06-12 16:46:45
React
Nastya09092, 2019-06-12 16:46:45

How to make a property in an object dynamic?

export default {
    mainKey: '_id',
    fields: {
        _id: {
            title: 'ID',
            type: 'string',
        },
        pricingType: {
            title: 'Pricing Type',
            type: 'array',
            editing: {
                default: ['CPM'],
                options: [{ value: 'CPM', label: 'CPM' }, { value: 'Rev Share', label: 'Rev Share' }],
            },
        },
        pricingValue: {
            title: 'Pricing Value',
            type: 'float',
            editing: {
                max: 20,
            },
        },
    },
};

the 'max' value in pricingValue depends on what value will be selected in the pricingType dropdown.
i.e. if pricingType = CPM -> max = 20,
if pricingType = Rev Share -> max = 1;
How can this be implemented?

Answer the question

In order to leave comments, you need to log in

Didn't find what you were looking for?

Ask your question

Ask a Question

731 491 924 answers to any question