-
-
Save allanphilipbarku/9e1aadf51645ea48a97bd5e1437c28de to your computer and use it in GitHub Desktop.
This file contains 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
const actions = ()=>{ | |
const functionA = ()=>{/*do sth*/} | |
const functionB = ()=>{/*do sth*/} | |
return new Map([ | |
[{identity:'guest',status:1},functionA], | |
[{identity:'guest',status:2},functionA], | |
[{identity:'guest',status:3},functionA], | |
[{identity:'guest',status:4},functionA], | |
[{identity:'guest',status:5},functionB], | |
//... | |
]) | |
} | |
const onButtonClick = (identity,status)=>{ | |
let action = [...actions()].filter(([key,value])=>(key.identity == identity && key.status == status)) | |
action.forEach(([key,value])=>value.call(this)) | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment