[JS Compse] 4. A collection of Either examples compared to imperative code

Posted Answer1215

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了[JS Compse] 4. A collection of Either examples compared to imperative code相关的知识,希望对你有一定的参考价值。

For if..else:

const showPage() {
  if(current_user) {
    return renderPage(current_user);
  } else {
    return showLogin();
  }
}

const showPage() {
  fromNullable(current_user)
    .fold(showLogin, renderPage)
}

 

const getPrefs = user => {
  if(user.premium) {
    return loadPrefs(user.preferences)
  } else {
    return defaultPrefs;
  }
}

const getPrefs = user => 
  (user.premium ? Right(user): Left(not premium))
  .map(p => user.preferences)
  .fold(
    x => defaultPrefs,
    x => loadPrefs(x)
  )

 

const streetName = user => {
  const address = user.address;
  
  if(address) {
    const street = address.street;
    
    if(street) {
      return street.name;
    }
  }
  return no street;
}

cosnt streetName = user => 
  fromNullable(user.address)
    .flatMap(address => fromNullable(address.street))
    .map(street => street.name)
    .fold(e => no street, n => n)
    

 

const concatUniq = (x, ys) => {
  const found = ys.filter(y => y === x)[0]
  return found ? ys : ys.concat(x);
}

const concatUniq = (x, ys) => 
  fromNullable(ys.filter(y => y === x)[0]) // fromNullable needs value
  .fold(() => ys.concat(x), y => ys)

 

const wrapExamples = example => {
  if(example.previewPath){
    try {
      example.preview = fs.readFileSync(example.previewPath)
    } catch(e) {
      
    }
    
    return example;
  }
}

const readFile = x => tryCatch(() => readFileSync(x));
const wrapExample = example => 
  fromNullabel(exampe.previewPath)
  .flatMap(readFile)
  .fold(() => example,
         ex => Object.assign({preview: p}, ex);
       )

 

const parseDbUrl = cfg => {
  try {
    const c = JSON.parse(cfg);
    if(c.url) {
      return c.url.match(/..../)
    } catch(e) {
      return null
    }
  }
}

const parseDbUrl = cfg => 
  tryCatch(() => JSON.parse(cfg))
  .flatMap(c => fromNullable(c.url))
  .fold(
    e => null,
    u => u.match(/..../)
  )

 

以上是关于[JS Compse] 4. A collection of Either examples compared to imperative code的主要内容,如果未能解决你的问题,请参考以下文章

json 尝试使用针对端点的此命令更新具有HL7数据的资源图层:http://resourcemap.instedd.org/api/collecti

Android Material官方取色地址

java容器学习

1. 方法重载

集合和数组的排序

js一维数组转多维数组?