Created
August 24, 2019 06:28
-
-
Save feynon/8f661921bcd3ce662a553329e9aae696 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
import Events from 'eventemitter3'; | |
const modelMixin = Object.assign({ | |
attrs: {}, | |
set (name, value) { | |
this.attrs[name] = value; | |
this.emit('change', { | |
prop: name, | |
value: value | |
}); | |
}, | |
get (name) { | |
return this.attrs[name]; | |
} | |
}, Events.prototype); | |
const george = { name: 'george' }; | |
const model = Object.assign(george, modelMixin); | |
model.on('change', data => console.log(data)); | |
model.set('name', 'Sam'); | |
/* | |
{ | |
prop: 'name', | |
value: 'Sam' | |
} | |
*/ |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment