2017-02-18 01:42:41 -06:00
|
|
|
const riot = require('riot');
|
|
|
|
|
|
|
|
module.exports = me => {
|
|
|
|
riot.mixin('i', {
|
2017-02-18 16:14:07 -06:00
|
|
|
init: function() {
|
2017-02-18 01:42:41 -06:00
|
|
|
this.I = me;
|
|
|
|
this.SIGNIN = me != null;
|
|
|
|
|
|
|
|
if (this.SIGNIN) {
|
|
|
|
this.on('mount', () => {
|
|
|
|
me.on('updated', this.update);
|
|
|
|
});
|
|
|
|
this.on('unmount', () => {
|
|
|
|
me.off('updated', this.update);
|
|
|
|
});
|
|
|
|
}
|
|
|
|
},
|
|
|
|
me: me
|
|
|
|
});
|
|
|
|
};
|