使用ramda.js将嵌套的三元表达式交换为cond

时间:2017-09-18 00:35:04

标签: javascript ramda.js

我使用嵌套的三元表达式编写代码。有没有办法使用ramda.js或其他功能助手使其更清洁? cond会是个不错的选择吗?

我是ramda的新手,我不确切知道如何将这段代码转换为ramda方式。

sw

转换那个疯狂的长队:

  const enhance: React$HOC<*, InitialProps> = compose(
      withProps(props => ({
        iconColor: props.isPriority ? (props.isCompleted ? variables.color.lightpurple : variables.color.purple ) : variables.color.gray3,
        iconName: props.isPriority ? 'star-full' : 'star-empty',
      }))
    )

不仅仅是恩赐。

1 个答案:

答案 0 :(得分:0)

R.cond绝对是删除嵌套的一个选项。这也可以与R.applySpec结合使用,以生成一个对象,其值全部来自同一个参数(在您的实例中为props)。

const enhance: React$HOC<*, InitialProps> = compose(withProps(R.applySpec({
    iconColor: R.cond([
        [({ isPriority }) => !isPriority, () => variables.color.gray3],
        [({ isCompleted }) => isCompleted, () => variables.color.lightpurple],
        [() => true, () => variables.color.purple]
    ]),
    iconName: ({ isPriority }) => isPriority ? 'star-full' : 'star-empty'
})))