Last active
          June 5, 2020 02:31 
        
      - 
      
- 
        Save jpitchardu/76e3bb814b86d5a8860f9a2956e827ad to your computer and use it in GitHub Desktop. 
    Optional API javascript
  
        
  
    
      This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
      Learn more about bidirectional Unicode characters
    
  
  
    
  | function optionalAccess(obj, path, def) { | |
| const propNames = path.replace(/\]|\)/, "").split(/\.|\[|\(/); | |
| return propNames.reduce((acc, prop) => acc[prop] || def, obj); | |
| } | |
| function proxyOptional(obj, evalFunc, def) { | |
| const handler = { | |
| get: function(target, prop, receiver) { | |
| const res = Reflect.get(...arguments); | |
| return typeof res === "object" ? proxify(res) : res != null ? res : def; | |
| } | |
| }; | |
| const proxify = target => { | |
| return new Proxy(target, handler); | |
| }; | |
| return evalFunc(proxify(obj, handler)); | |
| } | |
| const obj = { | |
| items: [{ hello: "Hello" }] | |
| }; | |
| console.log(optionalAccess(obj, "items[0].hello", "def")); // Prints Hello | |
| console.log(optionalAccess(obj, "items[0].he", "def")); // Prints def | |
| console.log(proxyOptional(obj, target => target.items[0].hello, "def")); // Prints Hello | |
| console.log(proxyOptional(obj, target => target.items[0].hell, { a: 1 })); // Prinst { a: 1 } | |
| console.log((obj && obj.items && obj.items[0] && obj.items[0].hello) || "def"); // Prints Hello | |
| console.log((obj && obj.items && obj.items[0] && obj.items[0].hel) || "def"); // Prints def | 
  
    Sign up for free
    to join this conversation on GitHub.
    Already have an account?
    Sign in to comment
  
            
Nice. The proxyOptional function can also work well as
Object.prototype: