// Получаем элемент и устанавливаем значение
React.findDOMNode(this.refs.input).value = 'some_value';
// Получаем всю разметку компонента
React.findDOMNode()';
// 1 вариант
this.refs.addTitle.value = '',
this.refs.addYear.value = '',
this.refs.addFormat.value = '',
this.refs.addActors.value = '';
// 2 вариант
Object.keys(this.refs).forEach(ref => {
ref.value = '';
})
const isDevelopment = !process.env.NODE_ENV || process.env.NODE_ENV == 'development';
// process.env.NODE_ENV = 'development';
const combiner = require('stream-combiner2').obj;
gulp.task('jade', () => {
return gulp.src(config.src.jade)
.pipe(plumber())
.pipe(jade({
pretty: true // Комментарии и отформатированный код.
}))
.pipe(gulp.dest(config.dev.html))
.pipe(gulpIf(!isDevelopment, combiner(
htmlmin({
collapseWhitespace: true,
removeComments: true
}),
gulp.dest(config.prod.html)
)));
});