CyclicMaterials/atom-autogrow-textarea

View on GitHub
src/AutogrowTextarea/index.js

Summary

Maintainability
A
0 mins
Test Coverage
import cuid from 'cuid';
import intent from './intent';
import model from './model';
import props from './props';
import view from './view';
import {clone} from 'ramda';
import {predicateObjectOfObservable} from '@cyclic/util-predicate';

const COMPONENT_NAME = `atom-AutogrowTextarea`;

function AutogrowTextarea(sources) {
  const {DOM} = sources;
  const props$ = predicateObjectOfObservable(props)(sources.props$);
  const {id = cuid()} = sources;
  const actions = intent({componentName: COMPONENT_NAME, DOM, id});
  const state$ = model({actions, componentName: COMPONENT_NAME, props$});

  return {
    DOM: view({state$, id}),
    id,
    state$: state$.map((state) => clone(state)),
  };
}

export {COMPONENT_NAME};

export default AutogrowTextarea;