45e8331e26
Closes #12, #227 and #58
20 lines
338 B
JavaScript
20 lines
338 B
JavaScript
import * as riot from 'riot';
|
|
|
|
export default me => {
|
|
riot.mixin('i', {
|
|
init: function() {
|
|
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
|
|
});
|
|
};
|