N
N
NoMoney2016-10-05 18:07:24
JavaScript
NoMoney, 2016-10-05 18:07:24

One line constructor initialization?

ES2015. Is it possible to do all assignments inside a constructor in one line?

class MyClass {
    constructor({title = 'wololo', status = 1}) {
        this.title = title;
        this.status = status;
        // ... больше однотипных строчек
    }
}

Answer the question

In order to leave comments, you need to log in

1 answer(s)
D
Dmitry Belyaev, 2016-10-05
@bingo347

const defaults = {
  title: 'wololo',
  status: 1
};
const keys = Object.getOwnPropertyNames(defaults);

const validators = {
  status(value) {
    return !isNaN(value) && isFinite(value);
  }
};

const transforms = {
  status(value) {
    return parseInt(value);
  }
};

class MyClass {
    constructor(props) {
        for(let key of keys) {
            if(!Object.prototype.hasOwnProperty.call(props, key)) {
              this[key] = defaults[key];
              continue;
            }
            if(typeof validators[key] === 'function' && !validators[key](props[key])) {
              this[key] = defaults[key];
              continue;
            }
            this[key] = typeof transforms[key] === 'function' ? transforms[key](props[key]) : props[key];
        }
    }
}

Didn't find what you were looking for?

Ask your question

Ask a Question

731 491 924 answers to any question