• [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(/..../)
      )
  • 相关阅读:
    SharedPreferences
    Handler
    Gallery 和ImageSwitcher
    poj 1077 Eight (BFS)
    HDU 1208 Pascal's Travels( 记忆化搜索)
    HDU 1619 Unidirectional TSP (dp,dfs)
    HDU 3683 Gomoku (枚举+BFS)
    HDU 3647 Tetris (暴力DFS)
    poj 1020 Anniversary Cake (DFS)
    poj 1375 Intervals(解析几何 过圆外一点求与圆的切线)
  • 原文地址:https://www.cnblogs.com/Answer1215/p/6175759.html
Copyright © 2020-2023  润新知